/* =============================================================================
 * Yaprakzade EEAT — Phase B (2026-06-06)
 * Production / Garden / Certifications / Lab / About sayfaları için premium UI.
 * Brand green (#2d5e3e / #52b788) + gold accent (#c9a24a) + glass cards.
 * ========================================================================== */

:root {
  --eeat-green-deep: #1f4a30;
  --eeat-green: #2d5e3e;
  --eeat-green-soft: #52b788;
  --eeat-gold: #c9a24a;
  --eeat-gold-soft: #e8c97a;
  --eeat-cream: #fbf9f3;
  --eeat-ink: #1a2118;
  --eeat-mute: #5b6c5e;
  --eeat-glass: rgba(255, 255, 255, 0.62);
  --eeat-glass-dark: rgba(45, 94, 62, 0.06);
  --eeat-radius-lg: 24px;
  --eeat-radius-md: 16px;
  --eeat-shadow: 0 18px 44px -24px rgba(18, 80, 44, 0.32);
  --eeat-shadow-lg: 0 28px 60px -28px rgba(18, 80, 44, 0.45);
}

/* --- Full-bleed hero --- */
.eeat-hero {
  position: relative;
  margin: 0 0 60px;
  padding: 90px 0 100px;
  background: linear-gradient(135deg, var(--eeat-green-deep) 0%, var(--eeat-green) 65%, var(--eeat-green-soft) 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.eeat-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 20% 0%, rgba(255,255,255,0.18), transparent 60%),
              radial-gradient(50% 60% at 90% 100%, rgba(201,162,74,0.22), transparent 60%);
  z-index: -1;
}
.eeat-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><path d='M40 12c-7 0-13 5-13 12 0 8 6 14 13 22 7-8 13-14 13-22 0-7-6-12-13-12z' fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1'/></svg>");
  z-index: -1;
}
.eeat-hero .container { position: relative; z-index: 1; }
.eeat-hero .breadcrumb2 { color: rgba(255,255,255,0.78); margin-bottom: 18px; }
.eeat-hero .breadcrumb2 a { color: rgba(255,255,255,0.9); }
.eeat-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.eeat-hero .lead {
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 720px;
  opacity: 0.92;
  line-height: 1.6;
}
.eeat-hero .hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px;
}
.eeat-hero .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  backdrop-filter: blur(6px);
}

/* --- Section frame --- */
.eeat-section { padding: 60px 0; }
.eeat-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 36px);
  color: var(--eeat-green-deep);
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.eeat-section .section-intro {
  color: var(--eeat-mute);
  max-width: 740px;
  margin: 0 0 36px;
  line-height: 1.7;
}

/* --- Production timeline (scroll-snap) --- */
.eeat-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.eeat-step {
  position: relative;
  background: #fff;
  border-radius: var(--eeat-radius-lg);
  overflow: hidden;
  box-shadow: var(--eeat-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.eeat-step:hover { transform: translateY(-6px); box-shadow: var(--eeat-shadow-lg); }
.eeat-step .step-num {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--eeat-gold), var(--eeat-gold-soft));
  color: #fff; font-weight: 800; font-size: 18px;
  border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 8px 18px -8px rgba(201,162,74,0.6);
}
.eeat-step .step-img {
  aspect-ratio: 16/10; background-size: cover; background-position: center;
  background-color: #f0eee6;
}
.eeat-step .step-body { padding: 22px 22px 26px; }
.eeat-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--eeat-green-deep);
  margin: 0 0 8px;
}
.eeat-step p { color: var(--eeat-mute); line-height: 1.65; font-size: 14.5px; margin: 0; }

/* --- Garden / gallery grid --- */
.eeat-grid-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.eeat-grid-photos a {
  display: block; aspect-ratio: 1/1; border-radius: var(--eeat-radius-md);
  overflow: hidden; background: #eee; position: relative;
  box-shadow: 0 8px 22px -16px rgba(18,80,44,0.4);
  transition: transform 0.3s ease;
}
.eeat-grid-photos a:hover { transform: scale(1.02); }
.eeat-grid-photos img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.eeat-grid-photos a:hover img { transform: scale(1.06); }

/* --- Map embed --- */
.eeat-map {
  margin-top: 36px; border-radius: var(--eeat-radius-lg);
  overflow: hidden; box-shadow: var(--eeat-shadow);
  background: #f4f1e8;
}
.eeat-map iframe { display: block; width: 100%; height: 380px; border: 0; }

/* --- Certificate cards --- */
.eeat-cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.eeat-cert-card {
  background: #fff; border-radius: var(--eeat-radius-lg);
  padding: 26px 24px; box-shadow: var(--eeat-shadow);
  position: relative; overflow: hidden;
  border: 1px solid rgba(45,94,62,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.eeat-cert-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--eeat-green), var(--eeat-gold));
}
.eeat-cert-card:hover { transform: translateY(-4px); box-shadow: var(--eeat-shadow-lg); }
.eeat-cert-card .cert-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--eeat-green-soft), var(--eeat-green));
  color: #fff; display: grid; place-items: center;
  font-size: 26px; margin-bottom: 16px;
  box-shadow: 0 10px 20px -10px rgba(45,94,62,0.5);
}
.eeat-cert-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px; color: var(--eeat-green-deep);
  margin: 0 0 12px;
}
.eeat-cert-card .cert-meta {
  font-size: 13px; color: var(--eeat-mute); line-height: 1.7;
}
.eeat-cert-card .cert-meta strong { color: var(--eeat-ink); }
.eeat-cert-card .cert-pdf {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; padding: 8px 14px;
  background: var(--eeat-green); color: #fff;
  border-radius: 999px; font-size: 13px; font-weight: 600;
  text-decoration: none;
}
.eeat-cert-card .cert-pdf:hover { background: var(--eeat-green-deep); }

/* --- Lab analysis cards --- */
.eeat-lab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.eeat-lab-card {
  background: #fff; border-radius: var(--eeat-radius-lg);
  padding: 26px; box-shadow: var(--eeat-shadow);
  border-left: 5px solid var(--eeat-green-soft);
}
.eeat-lab-card .lab-cat {
  display: inline-block; padding: 4px 10px;
  background: var(--eeat-glass-dark); color: var(--eeat-green-deep);
  border-radius: 999px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 12px;
}
.eeat-lab-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--eeat-green-deep);
  margin: 0 0 10px;
}
.eeat-lab-card p { color: var(--eeat-ink); line-height: 1.65; font-size: 14.5px; margin: 0 0 14px; }
.eeat-lab-card .lab-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px dashed rgba(45,94,62,0.18);
  font-size: 12.5px; color: var(--eeat-mute);
}

/* --- Trust badges row --- */
.eeat-trust-badges {
  display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 0;
}
.eeat-trust-badges .badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--eeat-cream), #fff);
  border: 1px solid rgba(201,162,74,0.3);
  border-radius: 999px;
  font-weight: 700; color: var(--eeat-green-deep);
  box-shadow: 0 8px 22px -16px rgba(201,162,74,0.5);
}
.eeat-trust-badges .badge .icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--eeat-gold); color: #fff;
  display: grid; place-items: center; font-size: 14px;
}

/* --- Team cards --- */
.eeat-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.eeat-team-card {
  text-align: center; background: #fff;
  border-radius: var(--eeat-radius-lg);
  padding: 30px 22px; box-shadow: var(--eeat-shadow);
  transition: transform 0.3s ease;
}
.eeat-team-card:hover { transform: translateY(-4px); }
.eeat-team-card .photo {
  width: 120px; height: 120px; border-radius: 50%;
  margin: 0 auto 18px; background-size: cover; background-position: center;
  background-color: #f0eee6;
  box-shadow: 0 12px 30px -12px rgba(18,80,44,0.45);
  border: 4px solid #fff; outline: 2px solid var(--eeat-gold-soft);
}
.eeat-team-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--eeat-green-deep); margin: 0 0 4px;
}
.eeat-team-card .role {
  font-size: 13px; color: var(--eeat-gold);
  font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 14px;
}
.eeat-team-card .bio { color: var(--eeat-mute); font-size: 14px; line-height: 1.65; }
.eeat-team-card .links {
  display: flex; gap: 10px; justify-content: center; margin-top: 14px;
}
.eeat-team-card .links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--eeat-glass-dark); color: var(--eeat-green-deep);
  display: grid; place-items: center;
  text-decoration: none; transition: background 0.2s ease;
}
.eeat-team-card .links a:hover { background: var(--eeat-green); color: #fff; }

/* --- Values list ("Neden Yaprakzade") --- */
.eeat-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; margin-top: 30px;
}
.eeat-value {
  background: var(--eeat-glass-dark);
  border-radius: var(--eeat-radius-md);
  padding: 22px; border-left: 4px solid var(--eeat-gold);
}
.eeat-value .icon {
  font-size: 28px; margin-bottom: 10px;
  filter: drop-shadow(0 4px 8px rgba(201,162,74,0.4));
}
.eeat-value h4 {
  font-family: 'Playfair Display', serif;
  color: var(--eeat-green-deep);
  font-size: 17px; margin: 0 0 6px;
}
.eeat-value p { color: var(--eeat-mute); font-size: 14px; line-height: 1.6; margin: 0; }

/* --- Inline FAQ --- */
.eeat-faq {
  margin-top: 50px;
  background: var(--eeat-cream);
  padding: 36px;
  border-radius: var(--eeat-radius-lg);
}
.eeat-faq details {
  background: #fff; border-radius: 12px;
  margin-bottom: 10px; padding: 14px 18px;
  box-shadow: 0 4px 12px -8px rgba(18,80,44,0.2);
}
.eeat-faq summary {
  cursor: pointer; font-weight: 700;
  color: var(--eeat-green-deep);
  list-style: none; position: relative; padding-right: 24px;
}
.eeat-faq summary::after {
  content: "+"; position: absolute; right: 0; top: 0;
  font-size: 22px; color: var(--eeat-gold);
  transition: transform 0.2s ease;
}
.eeat-faq details[open] summary::after { transform: rotate(45deg); }
.eeat-faq p { margin: 12px 0 0; color: var(--eeat-mute); line-height: 1.65; }

/* --- CTA banner --- */
.eeat-cta {
  margin: 60px 0; padding: 50px 40px;
  background: linear-gradient(135deg, var(--eeat-green-deep), var(--eeat-green));
  border-radius: var(--eeat-radius-lg);
  color: #fff; text-align: center;
  box-shadow: var(--eeat-shadow-lg);
}
.eeat-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 12px;
}
.eeat-cta p { opacity: 0.9; max-width: 580px; margin: 0 auto 22px; }
.eeat-cta .btn-gold {
  display: inline-block; padding: 14px 32px;
  background: linear-gradient(135deg, var(--eeat-gold), var(--eeat-gold-soft));
  color: var(--eeat-green-deep); font-weight: 700;
  text-decoration: none; border-radius: 999px;
  box-shadow: 0 14px 30px -14px rgba(201,162,74,0.7);
  transition: transform 0.2s ease;
}
.eeat-cta .btn-gold:hover { transform: translateY(-2px); }

/* --- Lightbox shared --- */
.eeat-lightbox {
  position: fixed; inset: 0; background: rgba(10, 18, 14, 0.94);
  display: none; align-items: center; justify-content: center;
  z-index: 10000; padding: 30px;
}
.eeat-lightbox.open { display: flex; }
.eeat-lightbox img {
  max-width: 92vw; max-height: 88vh; border-radius: 12px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.eeat-lightbox button {
  position: absolute; top: 24px; right: 28px;
  background: rgba(255,255,255,0.1); color: #fff;
  border: 0; width: 44px; height: 44px; border-radius: 50%;
  font-size: 24px; cursor: pointer;
}
.eeat-lightbox .nav { top: 50%; transform: translateY(-50%); }
.eeat-lightbox .nav.prev { left: 24px; right: auto; }
.eeat-lightbox .nav.next { right: 24px; }

/* --- Responsive tweaks --- */
@media (max-width: 720px) {
  .eeat-hero { padding: 60px 0 70px; }
  .eeat-section { padding: 40px 0; }
  .eeat-cta { padding: 36px 22px; }
}
