/* Genel ayarlar */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f8fafb;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #0f766e;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(15, 118, 110, 0.15);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 277px;
  
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}

.brand-subtitle {
  font-size: 0.875rem;
  color: #475569;
}

.header-contact {
  text-align: right;
  font-size: 0.875rem;
}

.order-line-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #0f766e;
}

.order-phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.order-info {
  font-size: 0.8rem;
  color: #64748b;
}

/* Mobil menü butonu */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: #0f172a;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Navigasyon */

.main-nav {
  background: linear-gradient(90deg, #0f766e, #15803d);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0.4rem 0;
  margin: 0;
  gap: 0.25rem;
}

.nav-list li a {
  display: block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #e0f2f1;
  font-weight: 500;
}

.nav-list li a:hover {
  background-color: rgba(15, 23, 42, 0.15);
  text-decoration: none;
}

.nav-list li a.active {
  background-color: #ecfdf5;
  color: #166534;
}

/* Hero alanı */
.hero {
  padding: 2.5rem 0 2rem;
  background: radial-gradient(circle at top left, #ecfdf5 0, #f8fafc 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  margin: 0 0 0.75rem;
  color: #0f172a;
  margin-bottom:20px;
}

.hero-text p {
  margin: 0 0 0.9rem;
  color: #475569;
  margin-bottom:25px;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
}

.hero-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  color: #1e293b;
}

.hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.9rem;
  color: #16a34a;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.primary-btn {
  background: linear-gradient(135deg, #16a34a, #0f766e);
  color: #ecfdf5;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.25);
}

.primary-btn:hover {
  background: linear-gradient(135deg, #15803d, #115e59);
  text-decoration: none;
}

.secondary-btn {
  background-color: #ecfdf5;
  color: #166534;
  border-color: rgba(22, 101, 52, 0.3);
}

.secondary-btn:hover {
  background-color: #d1fae5;
  text-decoration: none;
}

.tertiary-btn {
  background-color: #0f766e;
  color: #ecfeff;
  border-color: #0f766e;
}

.tertiary-btn:hover {
  background-color: #115e59;
  text-decoration: none;
}

.hero-media {
  display: flex;
  
}

.hero-img {
  border-radius: 0.6rem;
  
}

/* Güven ve avantajlar */

.trust-section {
  padding: 2.5rem 0 2.25rem;
  background: #f8fafc;
}

.trust-section h2,
.products-section h2,
.media-section h2 {
  font-size: 1.4rem;
  margin: 0 0 1.5rem;
  color: #0f172a;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.trust-item {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.trust-item img {
  border-radius: 0.8rem;
}

.trust-item h3 {
  margin: 0;
  font-size: 1rem;
  color: #0f172a;
}

.trust-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Ürün içerikleri */

.products-section {
  padding: 2.25rem 0;
  background-color: #f8fafc;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.product-item {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-item h3 {
  margin: 0;
  font-size: 1rem;
  color: #0f172a;
}

.product-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Medya bölümü */

.media-section {
  padding: 2.5rem 0 2.75rem;
  background-color: #ffffff;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2rem;
}

.media-video p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #4b5563;
}

.responsive-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
}

.responsive-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.media-sidebar h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: #0f172a;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.social-links li {
  margin-bottom: 0.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.social-links img {
  width: 22px;
  height: 22px;
}

.sidebar-box {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 0.9rem;
  background-color: #ecfdf5;
  border: 1px solid rgba(22, 163, 74, 0.3);
  font-size: 0.9rem;
  color: #14532d;
}

/* Footer */

.site-footer {
  background-color: #020617;
  color: #e5e7eb;
  padding-top: 2rem;
  margin-top: 1rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer-col h3 {
  margin-top: 0;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer-col p {
  margin: 0;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.footer-col li {
  margin-bottom: 0.4rem;
}

.footer-col a {
  color: #e5e7eb;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.9rem 0;
  font-size: 0.8rem;
  color: #9ca3af;
  text-align: center;
}

/* Responsive kırılımlar */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-content: center;
  }

  .hero-img {
    max-width: 360px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .header-contact {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-top {
    padding-inline: 0.75rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    padding: 0.5rem 0.75rem 0.75rem;
  }

  .nav-list li a {
    border-radius: 0.6rem;
  }

  .hero {
    padding-top: 1.75rem;
  }

  /* avantajlar bölümünde mobilde satır başına 2 kutu */
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-text h1 {
    font-size: 1.45rem;
  }

  .hero-list li {
    font-size: 0.88rem;
  }
}

/* Set içeriği grid’i */
.products-section .section-intro {
  
  margin: 0 0 25px 5px;
  text-align: left;
}

.products-grid.products-grid--set {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

/* Modallar */
.product-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
}

.product-modal.open {
  display: flex;
}

.product-modal__content {
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 2.25rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
  position: relative;
}

.product-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.product-modal__overlay {
  position: absolute;
  inset: 0;
}

.product-modal__content h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.product-modal__content p + p {
  margin-top: 0.75rem;
}

/* “Detaylı Bilgi” butonlarını biraz daha link görünümlü yapabilirsin istersen */
.product-more {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.trust-intro {
  text-align: left;
  max-width: 1140px;
  margin: 0 auto 2rem;
}

.trust-intro h1 {
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  margin: 0 0 0.75rem;
  color: #0f172a;
}

.trust-intro p {
  margin: 0 0 20px 0;
  color: #475569;
  max-width: 520px;
}

/* Section Title */
.features-section {
  padding: 50px 0;
  background-color: #ffffff;
}
.features-section .section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #0f172a;
}

/* Accordion */
.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.04);
}

.accordion-header {
  width: 100%;
  background: #f8fafc;
  padding: 16px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  text-align: left;
}

.accordion-header .acc-icon {
  font-size: 22px;
  transition: transform .3s;
}

.accordion-item.active .acc-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 15px 20px;
  display: none;
  animation: fadein .3s ease;
  text-align: left;
}

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

.accordion-content p {
  margin-bottom: 12px;
  color: #475569;
}

.benefits-modern {
  padding: 2.8rem 0;
  background: #f8fafc;
}

.benefits-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #0f172a;
  text-align: center;
  
}

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}

.benefits-list li {
  background: #ffffff;
  border: 1px solid rgba(148,163,184,0.25);
  padding: 1rem 1.3rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.45rem;
  box-shadow: 0 6px 16px rgba(15,23,42,0.05);
}

.benefit-icon {
  font-size: 1.4rem;
  margin-right: 0.7rem;
  width: 2rem;
  text-align: center;
  flex-shrink: 0;
}

.why-hayrat {
  padding: 2.25rem 0;
  background-color: #ffffff;
}

.why-hayrat h2 {
  font-size: 1.4rem;
  margin: 0 0 1.5rem;
  color: #0f172a;
}

.why-hayrat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.why-hayrat-list li {
  background-color: #f9fafb;
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.why-hayrat-list p {
  margin: 0;
  font-size: 0.9rem;
  color: #374151;
}

.reason-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  border-radius: 999px;
  background-color: #fee2e2;
  color: #b91c1c;
  font-weight: 600;
  margin-right: 0.5rem;
  font-size: 0.85rem;
}

/* WhatsApp sabit buton */
.whatsapp-float-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1400;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #22c55e;
  box-shadow: 0 12px 25px rgba(22, 163, 74, 0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float-btn img {
  width: 30px;
  height: 30px;
}

/* Küçük ekranlarda biraz yukarı alalım */
@media (max-width: 768px) {
  .whatsapp-float-btn {
    right: 16px;
    bottom: 16px;
  }
}

/* WhatsApp modal penceresi */
.wp-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.45);
  z-index: 1500;
}

.wp-modal.open {
  display: flex;
}

.wp-modal__overlay {
  position: absolute;
  inset: 0;
}

.wp-modal__content {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.6rem 1.8rem 1.5rem;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.35);
}

.wp-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.8rem;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.wp-modal__content h3 {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
  color: #0f172a;
}

.wp-modal-subtitle {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: #64748b;
}

.wp-modal-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.wp-modal-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: #22c55e;
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.28);
  color: #ecfdf5;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.wp-modal-item:hover {
  background: #16a34a;
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.35);
  transform: translateY(-1px);
  text-decoration: none;
}

.wp-modal-item-icon img {
  width: 30px;
  height: 30px;
}

.wp-modal-item-title {
  font-size: 0.96rem;
  font-weight: 600;
}

.wp-modal-item-phone {
  font-size: 0.86rem;
  opacity: 0.95;
}


/* --- Hakkımızda (kurumsal) sayfası stilleri --- */

.about-page {
  background-color: #f8fafb;
}

/* Hero + metin kartı */

.about-hero {
  padding: 2.5rem 0 1.5rem;
}

.about-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-hero-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.about-hero-text-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.8rem 2rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.about-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: #0f766e;
  margin: 0 0 0.3rem;
}

.about-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.1vw, 2.1rem);
  color: #0f172a;
}

.about-hero-text-card p {
  margin: 0 0 0.6rem;
  color: #475569;
  font-size: 0.95rem;
}

/* Farkımız Ne bölümü */

.about-difference {
  padding: 2rem 0 2.5rem;
}

.about-difference-card {
  background: linear-gradient(135deg, #1d4ed8, #0f766e);
  border-radius: 1.1rem;
  padding: 2.2rem 2.3rem;
  color: #ecfdf5;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.about-difference-card h2 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
}

.about-difference-card p {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Video alanı */

.about-videos {
  padding: 2.5rem 0 3rem;
  background-color: #ffffff;
}

.about-section-title {
  font-size: 1.4rem;
  margin: 0 0 1.7rem;
  color: #0f172a;
}

.about-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background-color: #f9fafb;
  border-radius: 1rem;
  padding: 1rem 1.1rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.video-card h3 {
  margin: 0.8rem 0 0.4rem;
  font-size: 1rem;
  color: #0f172a;
}

.video-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Daha küçük yüksekliğe sahip responsive video */
.responsive-video--card {
  padding-bottom: 56.25%;
}

/* Responsive */

@media (max-width: 768px) {
  .about-hero {
    padding-top: 1.8rem;
  }

  .about-hero-text-card {
    padding: 1.4rem 1.5rem;
  }

  .about-difference-card {
    padding: 1.6rem 1.7rem;
  }
}
