/* ===================================================
   style.css — Yumurta N1
   Premium egg-brand: warm yellows, earthy reds, clean white
   =================================================== */

/* ── Lucide icon system ── */
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
/* Context-specific sizing */
.why-icon     [data-lucide] { width: 28px; height: 28px; }
.cert-icon    [data-lucide] { width: 30px; height: 30px; }
.ci-icon      [data-lucide] { width: 20px; height: 20px; }
.icon         [data-lucide] { width: 20px; height: 20px; }
.footer-contact-item .icon [data-lucide] { width: 18px; height: 18px; }
.cta-contact-item    .icon [data-lucide] { width: 22px; height: 22px; }
.social-link  [data-lucide] { width: 18px; height: 18px; }
.tag          [data-lucide] { width: 14px; height: 14px; vertical-align: -2px; }
.coming-soon-badge [data-lucide] { width: 16px; height: 16px; vertical-align: -2px; }

/* ── Google Fonts import ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --gold:      #F5C518;
  --gold-dark: #D4A017;
  --gold-light:#FFF3C4;
  --red:       #8B1A1A;
  --red-dark:  #6B0F0F;
  --red-light: #C0392B;
  --white:     #FFFFFF;
  --cream:     #FFFDF5;
  --cream-2:   #FFF8E7;
  --charcoal:  #1A1A1A;
  --gray-dark: #2D2D2D;
  --gray:      #555555;
  --gray-light:#888888;
  --gray-bg:   #F7F4EF;
  --border:    #E8E0D0;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-height: 72px;
  --section-pad: 96px;
  --container-max: 1200px;
  --radius:   12px;
  --radius-lg:20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow:    0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--gray); }
strong { color: var(--charcoal); }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad) 0; }
.section--cream { background: var(--cream-2); }
.section--dark  { background: var(--charcoal); color: var(--white); }
.section--dark p { color: rgba(255,255,255,.75); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(139,26,26,.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,.4); }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--charcoal); transform: translateY(-2px); }
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,26,26,.35); }
.btn-ghost {
  color: var(--red);
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}
.btn-ghost:hover { border-color: var(--red); }

/* ───────────────────────────────────────────
   NAVBAR
─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  backdrop-filter: blur(12px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  transition: color var(--transition);
}
#navbar.scrolled .nav-logo { color: var(--charcoal); }
#navbar.scrolled .nav-logo-img { filter: brightness(0); }
.nav-logo .logo-egg { width: 38px; height: auto; }
.nav-logo span strong { color: var(--gold); }
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
  display: block;
  line-height: 1;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

#navbar.scrolled .nav-links a { color: var(--gray); }
#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.active { color: var(--charcoal); }

/* ── Dropdown "Daha Çox" ── */
.nav-dropdown {
  position: relative;
  list-style: none;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.active .nav-dropdown-toggle { color: var(--white); }
.nav-dropdown-toggle .dd-chevron {
  width: 14px; height: 14px;
  transition: transform .2s;
  flex-shrink: 0;
}
.nav-dropdown:hover .dd-chevron { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  min-width: 200px;
  padding: 14px 8px 8px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--charcoal);
  font-size: .88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.dropdown-menu li a::after { display: none; }
.dropdown-menu li a:hover { background: var(--cream); color: var(--red); }
.dropdown-menu li a.active { color: var(--red); font-weight: 700; }
#navbar.scrolled .nav-dropdown-toggle { color: var(--gray); }
#navbar.scrolled .nav-dropdown-toggle:hover,
#navbar.scrolled .nav-dropdown.active .nav-dropdown-toggle { color: var(--charcoal); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.88);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: color .18s;
}
.nav-phone svg { width: 15px; height: 15px; flex-shrink: 0; }
.nav-phone:hover { color: var(--gold); }
#navbar.scrolled .nav-phone { color: var(--charcoal); }
#navbar.scrolled .nav-phone:hover { color: var(--red); }
.lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,.15);
  padding: 4px;
  border-radius: 20px;
}
#navbar.scrolled .lang-switcher { background: rgba(0,0,0,.06); }
.lang-btn {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  padding: 5px 11px;
  border-radius: 16px;
  transition: var(--transition);
}
#navbar.scrolled .lang-btn { color: var(--gray); }
.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  color: var(--charcoal) !important;
}

/* Hamburger — hidden on desktop, shown via responsive.css on mobile */
.hamburger { display: none; color: #fff; }
#navbar.scrolled .hamburger { color: var(--charcoal); }

/* ── Mobile drawer ── */
.mob-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mob-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mob-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(300px, 82vw);
  height: 100dvh;
  background: #111;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 20px 24px 28px;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
}
.mob-drawer.open { transform: translateX(0); }
.mob-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px;
  line-height: 0;
  transition: color 0.2s;
}
.mob-close:hover { color: #fff; }
.mob-close svg { width: 22px; height: 22px; display: block; }
.mob-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 8px;
}
.mob-nav a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s, padding-left 0.2s;
}
.mob-nav a:first-child { border-top: 1px solid rgba(255, 255, 255, 0.07); }
.mob-nav a:hover,
.mob-nav a.active { color: #F5C518; padding-left: 6px; }
.mob-lang {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.mob-lang button {
  flex: 1;
  padding: 9px 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.2s;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}
.mob-lang button:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.9);
}
.mob-lang button.active {
  background: #F5C518;
  border-color: #F5C518;
  color: #111;
}

/* ───────────────────────────────────────────
   HERO — index.html
─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 35%, #B8520A 70%, #C8860A 100%);
  padding-top: var(--nav-height);
}
/* Subtle background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(245,197,24,.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 40%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
}
.hero-text { color: var(--white); }
.hero-text .tag { color: var(--gold); background: rgba(245,197,24,.2); margin-bottom: 20px; }
.hero-text h1 { color: var(--white); margin-bottom: 22px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero-text p   { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 500px; margin-bottom: 36px; }
.hero-tagline  { font-family: var(--font-heading); font-style: italic; font-size: 1.05rem; color: var(--gold); margin-top: 28px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Egg illustration */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-egg-group {
  position: relative;
  width: 380px;
  height: 420px;
}
.hero-egg-main {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: float 5s ease-in-out infinite;
}
.hero-eggs-photo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: auto;
  object-fit: contain;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,.25));
}
.hero-egg-sm {
  position: absolute;
  animation: float 5s ease-in-out infinite reverse;
}
.hero-egg-sm:nth-child(2) { top: 5%; right: 5%; animation-delay: -1.5s; }
.hero-egg-sm:nth-child(3) { bottom: 8%; left: 5%; animation-delay: -3s; }
.hero-badge {
  position: absolute;
  bottom: 10%; right: 0;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  line-height: 1.1;
}
.hero-badge span { font-size: .6rem; font-family: var(--font-body); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%        { transform: translate(-50%, -50%) translateY(-18px); }
}

/* ───────────────────────────────────────────
   STATS BAR
─────────────────────────────────────────── */
.stats-bar {
  background: var(--charcoal);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 16px 8px; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,.12);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ───────────────────────────────────────────
   ABOUT SNIPPET
─────────────────────────────────────────── */
.about-snippet .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 60%, #3D1A00 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--radius-lg);
}
.about-img-placeholder .big-year {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--gold);
  opacity: .9;
  line-height: 1;
}
.about-img-placeholder p {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.about-content h2 { margin-bottom: 16px; }
.about-content p  { margin-bottom: 24px; font-size: 1.05rem; }
.about-slogan {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--red);
  letter-spacing: .04em;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

/* ───────────────────────────────────────────
   PRODUCTS CARDS
─────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow .2s, transform .2s;
  width: 160px;
  height: 100px;
}
.partner-logo img {
  max-width: 130px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.7);
  transition: filter .2s;
}
.partner-logo:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.partner-logo:hover img { filter: grayscale(0) opacity(1); }
.partner-logo--lg img { max-width: 150px; max-height: 88px; }
.partner-logo--xl img { max-width: 150px; max-height: 88px; }
.partner-logo--text {
  font-size: .88rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: .02em;
  font-family: var(--font-body);
}
.partners-group { margin-bottom: 40px; }
.partners-group:last-child { margin-bottom: 0; }
.partners-group-label {
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
  position: relative;
}
.partners-group-label::before,
.partners-group-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: var(--border);
}
.partners-group-label::before { left: 0; }
.partners-group-label::after { right: 0; }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.product-card:hover::before { transform: scaleX(1); }
.product-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card h3 { margin-bottom: 12px; color: var(--charcoal); }
.product-card p  { font-size: .92rem; }

/* ───────────────────────────────────────────
   WHY CHOOSE US
─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon {
  width: 60px; height: 60px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p  { font-size: .88rem; }

/* ───────────────────────────────────────────
   EXPORT COUNTRIES SECTION
─────────────────────────────────────────── */
.export-section { position: relative; overflow: hidden; }
/* Decorative egg blobs on left/right edges */
.export-deco-egg {
  position: absolute;
  width: 260px;
  height: auto;
  opacity: .13;
  pointer-events: none;
  user-select: none;
}
.export-deco-egg--left {
  left: -110px;
  top: 50%;
  transform: translateY(-50%);
}
.export-deco-egg--right {
  right: -110px;
  top: 50%;
  transform: translateY(-50%);
}
/* World map */
.world-map-wrap { max-width: 1100px; margin: 0 auto 40px; position: relative; }
.world-map-img { width: 100%; display: block; }
.map-pin-group { cursor: pointer; }
.map-tooltip {
  position: absolute; pointer-events: none; z-index: 20;
  background: rgba(5,20,45,.9); border: 1px solid rgba(245,197,24,.7);
  border-radius: 8px; padding: 5px 12px;
  font-family: var(--font-body); font-size: .8rem; font-weight: 600;
  color: #F5C518; white-space: nowrap; display: none;
  transform: translate(-50%, -130%);
  box-shadow: 0 4px 16px rgba(0,0,0,.5);
}
@keyframes mapPulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(3.8); opacity: 0; } }
.map-pin-pulse { animation: mapPulse 2.4s ease-out infinite; transform-origin: center; transform-box: fill-box; pointer-events: none; }

/* Hen peeking from bottom-right, right side clipped */
.export-deco-hen {
  position: absolute;
  bottom: -20px;
  right: -60px;
  height: 300px;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(-6px 0 20px rgba(0,0,0,.4));
}
.about-shape-deco {
  position: absolute;
  opacity: .15;
  pointer-events: none;
  user-select: none;
  height: auto;
}
.about-shape-deco--left {
  left: -50px;
  bottom: 15%;
  width: 130px;
  transform: rotate(25deg);
}
.about-shape-deco--right {
  right: -35px;
  top: 10%;
  width: 100px;
  transform: rotate(-10deg);
}
/* shape4 edge decorations in partners section */
.partners-deco-shape {
  position: absolute;
  height: 260px;
  width: auto;
  opacity: .12;
  pointer-events: none;
  user-select: none;
}
.partners-deco-shape--left {
  left: -70px;
  top: 20%;
  height: 200px;
  transform: rotate(-15deg);
}
.partners-deco-shape--right {
  right: -45px;
  bottom: 10%;
  height: 160px;
  transform: rotate(20deg);
}
.countries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}
.country-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 12px 22px;
  border-radius: 40px;
  color: var(--white);
  font-size: .92rem;
  font-weight: 500;
  transition: var(--transition);
}
.country-pill:hover { background: rgba(245,197,24,.2); border-color: var(--gold); color: var(--gold); }
.country-pill .flag { font-size: 1.3rem; }
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,.15);
  border: 1px dashed var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
}

/* ───────────────────────────────────────────
   NEWS CARDS
─────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--red-dark), var(--red) 60%, #8B4513);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.news-card-img .news-date-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
}
.news-card-body { padding: 24px; }
.news-card h3   { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.35; }
.news-card h3 a { transition: color var(--transition); }
.news-card h3 a:hover { color: var(--red); }
.news-card p    { font-size: .88rem; margin-bottom: 18px; }

/* ───────────────────────────────────────────
   CTA BANNER
─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, #9A2E0A 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,197,24,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2    { color: var(--white); margin-bottom: 12px; position: relative; }
.cta-banner p     { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1.05rem; position: relative; }
.cta-contacts     { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 32px; position: relative; }
.cta-contact-item { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 1.15rem; font-weight: 600; }
.cta-contact-item .icon { font-size: 1.4rem; color: var(--gold); }

/* ───────────────────────────────────────────
   FOOTER
─────────────────────────────────────────── */
footer {
  background: var(--gray-dark);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .nav-logo { color: var(--white); display: inline-flex; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: 14px; }
.footer-slogan {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  font-size: .92rem;
}
.footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item .icon { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.5; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-2px); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .8rem; }
.footer-bottom .lang-switcher { background: rgba(255,255,255,.1); }
.footer-bottom .lang-btn { color: rgba(255,255,255,.55); }
footer .lang-btn.active,
footer .lang-btn:hover {
  background: rgba(255,255,255,.15);
  color: #F5C518 !important;
}

/* ───────────────────────────────────────────
   PAGE HERO (inner pages)
─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #8B4513 100%);
  padding: calc(var(--nav-height) + 60px) 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(245,197,24,.12) 0%, transparent 60%);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; position: relative; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1.05rem; position: relative; }
.page-hero .egg-deco {
  position: absolute;
  opacity: .06;
}
.page-hero .egg-deco-l { left: -60px; top: -40px; width: 260px; }
.page-hero .egg-deco-r { right: -60px; bottom: -80px; width: 300px; }

/* Background pattern SVGs — injected as first child of position:relative sections */
.bg-pat {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ───────────────────────────────────────────
   ABOUT PAGE
─────────────────────────────────────────── */
/* Timeline */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--red));
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}
.timeline-item:nth-child(even) .timeline-content { text-align: left; }
.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.timeline-content:hover { box-shadow: var(--shadow); transform: scale(1.01); }
.timeline-content h3 { margin-bottom: 8px; }
.timeline-content p  { font-size: .9rem; }
.timeline-dot {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.timeline-year {
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: .85rem;
  padding: 8px 4px;
  border-radius: 10px;
  text-align: center;
  min-width: 52px;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--gold);
  letter-spacing: .02em;
}

/* Mission grid */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mission-text p { font-size: 1.05rem; margin-bottom: 32px; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.value-card {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 22px;
  border-left: 3px solid var(--gold);
}
.value-card h4 { margin-bottom: 4px; }
.value-card p  { font-size: .88rem; }

/* Factory stats */
.factory-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.factory-stat {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
}
.factory-stat-val {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.factory-stat-lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Founder */
.founder-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
}
.founder-portrait {
  background: linear-gradient(160deg, var(--red-dark) 0%, var(--charcoal) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}
.founder-portrait .portrait-egg {
  position: absolute;
  top: -20px; right: -30px;
  width: 200px;
  opacity: .08;
}
.founder-portrait .founder-label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  position: relative;
  z-index: 1;
}
.founder-portrait .founder-year {
  color: var(--gold);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.founder-content blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--red);
}

/* Certifications */
.certs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.certs-grid .cert-card {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 14px);
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.cert-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.cert-icon { font-size: 2rem; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.cert-card h4 { font-size: .95rem; }
.cert-card.coming { border: 2px dashed var(--gold-dark); background: var(--gold-light); }
.cert-card.coming h4 { color: var(--red); }

/* ───────────────────────────────────────────
   PRODUCTS PAGE
─────────────────────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.product-detail:last-child { border-bottom: none; }
.product-detail.reverse { direction: rtl; }
.product-detail.reverse > * { direction: ltr; }
.product-detail-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.prod-bg-1 { background: linear-gradient(135deg, #FFF3C4, #F5C518 80%); }
.prod-bg-2 { background: linear-gradient(135deg, #FDEBD0, #CA6F1E 80%); }
.prod-bg-3 { background: linear-gradient(135deg, #D5E8D4, #27AE60 80%); }
.product-detail-visual .prod-icon-lg { font-size: 7rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,.15)); }
.product-detail-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-detail-content h2 { margin-bottom: 16px; }
.product-detail-content p  { margin-bottom: 28px; font-size: 1rem; }
.specs-list { margin-bottom: 32px; }
.specs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.specs-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ───────────────────────────────────────────
   EXPORT PAGE
─────────────────────────────────────────── */
.export-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.export-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.export-num-card {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border);
}
.export-num-card .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
}
.export-num-card .lbl { font-size: .8rem; color: var(--gray); margin-top: 4px; }

.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.market-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: var(--transition);
  position: relative;
}
.market-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.market-card.new::before {
  content: '★ NEW';
  position: absolute;
  top: -10px; right: 14px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: .65rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 10px;
  letter-spacing: .08em;
}
.market-flag   { font-size: 2.2rem; margin-bottom: 12px; }
.market-card h3 { font-size: 1rem; margin-bottom: 8px; }
.market-card p  { font-size: .83rem; }

.eu-card {
  background: linear-gradient(135deg, var(--gold-light), #FFF0B3);
  border: 2px dashed var(--gold-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.eu-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  padding: 5px 16px;
  border-radius: 14px;
  margin-bottom: 16px;
}
.eu-card h2 { color: var(--charcoal); margin-bottom: 12px; }
.eu-card p  { color: var(--gray); }

/* ───────────────────────────────────────────
   NEWS PAGE
─────────────────────────────────────────── */
.news-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.news-article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-article-img {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}
.news-img-1 { background: linear-gradient(135deg, #1a3a6b, #2980b9); }
.news-img-2 { background: linear-gradient(135deg, #4a1a00, #c0392b); }
.news-img-3 { background: linear-gradient(135deg, #002244, #003399); }
.news-img-4 { background: linear-gradient(135deg, #0d4a1a, #27ae60); }
.news-article-card .article-date {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,.55);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}
.news-article-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.news-article-body h3 { font-size: 1.15rem; margin-bottom: 12px; line-height: 1.35; }
.news-article-body p  { font-size: .9rem; flex: 1; margin-bottom: 20px; }
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 600;
  font-size: .88rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap var(--transition);
  font-family: var(--font-body);
}
.read-more-btn:hover { gap: 10px; }

/* Article Modal */
.article-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.article-modal.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition);
}
.article-modal.open .modal-box { transform: translateY(0); }
.modal-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  position: sticky; top: 0;
  background: var(--white);
  z-index: 1;
}
.modal-header h2 { font-size: 1.3rem; }
.modal-close {
  background: var(--gray-bg);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--border); }
.modal-body { padding: 24px 32px 32px; }
.modal-body .modal-date { color: var(--gray-light); font-size: .85rem; margin-bottom: 16px; }
.modal-body p { line-height: 1.8; }

/* ───────────────────────────────────────────
   CONTACT PAGE
─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap > p { margin-bottom: 36px; }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(212,160,23,.15); }
.form-control.error { border-color: var(--red); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit-btn { width: 100%; justify-content: center; font-size: 1rem; }
.form-feedback {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
}
.form-feedback--success { background: #D4EDDA; color: #155724; border: 1px solid #C3E6CB; }
.form-feedback--error   { background: #F8D7DA; color: #721C24; border: 1px solid #F5C6CB; }

.contact-info-card {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.contact-info-card h3 { margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-info-item .ci-icon {
  width: 40px; height: 40px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--red);
}
.contact-info-item .ci-text strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-light); margin-bottom: 2px; }
.contact-info-item .ci-text span   { font-size: .95rem; color: var(--gray-dark); }
.contact-info-item .ci-text a      { color: var(--red); font-weight: 600; }
.contact-info-item .ci-text a:hover { color: var(--red-dark); }

.map-placeholder {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-placeholder iframe {
  width: 100%;
  height: 260px;
  display: block;
  border: none;
}
.map-label {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  padding: 8px 16px;
  text-align: center;
}

.social-follow h4 { margin-bottom: 14px; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-light); }
.social-follow .social-links { flex-wrap: wrap; }
.social-follow .social-link {
  background: var(--border);
  color: var(--gray);
}
.social-follow .social-link:hover { background: var(--red); color: var(--white); }

/* ───────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ───────────────────────────────────────────
   MISC
─────────────────────────────────────────── */
.divider-egg {
  text-align: center;
  overflow: hidden;
  margin: 12px 0;
}
.divider-egg::before,
.divider-egg::after {
  content: '';
  display: inline-block;
  width: 40%;
  height: 1px;
  background: var(--border);
  vertical-align: middle;
  margin: 0 16px;
}

/* ═══════════════════════════════════════════
   NEW COMPONENTS — 2026 expansion
   ═══════════════════════════════════════════ */

/* ── WhatsApp floating button ── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 14px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  text-decoration: none;
  animation: waPulse 2.4s ease-in-out infinite;
  transform: translateX(0);
  transition: padding .25s, box-shadow .2s, transform .45s cubic-bezier(0.4, 0, 0.2, 1);
}
.whatsapp-fab svg { width: 26px; height: 26px; flex-shrink: 0; fill: white; stroke: none; }
.wa-label { font-size: .85rem; font-weight: 600; white-space: nowrap; max-width: 0; overflow: hidden; transition: max-width .3s ease, opacity .3s; opacity: 0; }
.whatsapp-fab.btt-visible { transform: translateX(-58px); }
.whatsapp-fab:hover { padding: 14px 20px; box-shadow: 0 6px 28px rgba(37,211,102,.6); animation-play-state: paused; }
.whatsapp-fab:hover .wa-label { max-width: 140px; opacity: 1; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.15); }
}

/* ── Impact / By the Numbers ── */
.impact-section { background: var(--charcoal) url('../images/iStock-1068858270.jpg') center/cover no-repeat fixed; padding: 80px 0; position: relative; }
.impact-section::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.6); pointer-events: none; }
.impact-section .section-header h2 { color: var(--white); }
.impact-section .section-header p { color: rgba(255,255,255,.6); }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.impact-cell {
  background: var(--charcoal);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.impact-cell:hover { background: #222222; border-color: rgba(245,197,24,.4); }
.impact-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.impact-lbl { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 8px; text-transform: uppercase; letter-spacing: .08em; }

/* ── News page grid ── */
.news-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.news-expand { margin-top: 14px; border-top: 1px solid var(--border); padding-top: 14px; }
.news-full-text { font-size: .88rem; color: var(--gray); line-height: 1.75; }
.news-media-section { background: var(--cream-2); border-radius: var(--radius-lg); padding: 40px; text-align: center; margin-top: 50px; border: 1px solid var(--border); }
.news-media-section h3 { font-size: 1.3rem; color: var(--charcoal); margin-bottom: 10px; }
.news-media-section p { color: var(--gray); margin-bottom: 24px; }

/* ── FAQ ── */
.faq-category { margin-bottom: 40px; }
.faq-cat-title { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--red); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gold-light); }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; background: var(--white); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 22px; background: none; border: none; text-align: left; cursor: pointer; font-family: var(--font-body); font-size: .95rem; font-weight: 600; color: var(--charcoal); transition: background .15s; }
.faq-question:hover { background: var(--cream-2); }
.faq-item.open .faq-question { background: var(--cream-2); color: var(--red); }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s; color: var(--gray-light); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--red); }
.faq-answer { padding: 0 22px 18px; }
.faq-answer p { font-size: .9rem; color: var(--gray); line-height: 1.75; margin: 0; }

/* ── Video gallery ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-thumb { position: relative; aspect-ratio: 16/9; background: var(--charcoal); cursor: pointer; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s; }
.video-card:hover .video-thumb img { opacity: .8; }
.video-thumb iframe { width: 100%; height: 100%; border: none; }
.video-play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.25); transition: background .2s; }
.video-card:hover .video-play-overlay { background: rgba(0,0,0,.4); }
.video-play-icon { width: 56px; height: 56px; color: white; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.video-info { padding: 18px; }
.video-info h3 { font-size: .95rem; color: var(--charcoal); margin-bottom: 6px; line-height: 1.4; }
.video-info p { font-size: .83rem; color: var(--gray); }

/* ── Careers ── */
.careers-hero-intro { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.careers-hero-intro p { font-size: 1.05rem; color: var(--gray); line-height: 1.75; }
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.job-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: transform .2s, box-shadow .2s; }
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.job-card-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 14px; }
.job-icon { width: 46px; height: 46px; background: var(--cream-2); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red); }
.job-icon [data-lucide] { width: 22px; height: 22px; }
.job-card-header h3 { font-size: 1rem; color: var(--charcoal); margin: 0 0 4px; }
.job-dept-tag { font-size: .73rem; font-weight: 600; background: var(--gold-light); color: var(--red); padding: 2px 9px; border-radius: 20px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; font-size: .82rem; color: var(--gray-light); }
.job-meta [data-lucide] { width: 13px; height: 13px; vertical-align: -1px; margin-right: 3px; }
.job-desc { font-size: .88rem; color: var(--gray); line-height: 1.65; margin-bottom: 20px; }
.careers-no-role { background: var(--cream-2); border-radius: var(--radius-lg); padding: 40px; text-align: center; margin-top: 50px; border: 1px solid var(--border); }
.careers-no-role h3 { font-size: 1.2rem; color: var(--charcoal); margin-bottom: 10px; }
.careers-no-role p { color: var(--gray); }

/* Career modal */
.career-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 9000; opacity: 0; pointer-events: none; transition: opacity .25s; }
.career-overlay.open { opacity: 1; pointer-events: all; }
.career-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%); z-index: 9100; background: var(--white); border-radius: var(--radius-lg); padding: 36px; width: min(520px, 92vw); max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,.25); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
.career-modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%); }
.career-modal h2 { font-size: 1.25rem; margin-bottom: 24px; color: var(--charcoal); }
.career-modal .form-group { margin-bottom: 16px; }
.career-modal label { display: block; font-size: .82rem; font-weight: 600; color: var(--gray-dark); margin-bottom: 5px; }
.career-modal input, .career-modal select { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: .9rem; color: var(--charcoal); outline: none; transition: border-color .15s; }
.career-modal input:focus, .career-modal select:focus { border-color: var(--gold); }
.career-modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; cursor: pointer; color: var(--gray-light); padding: 4px; }
.career-modal-close [data-lucide] { width: 22px; height: 22px; }
#careerFormSuccess { display: none; text-align: center; padding: 20px; color: #1E8449; font-weight: 600; }

/* ── Egg Guide ── */
.grade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.grade-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 24px 16px; text-align: center; transition: border-color .2s, transform .2s; }
.grade-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.grade-letter { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 900; color: var(--red); line-height: 1; }
.grade-name { font-weight: 700; font-size: .9rem; color: var(--charcoal); margin: 6px 0 4px; }
.grade-weight { font-size: .8rem; color: var(--gray-light); }
.grade-egg-vis { width: 44px; height: 70px; margin: 0 auto 10px; overflow: visible; }
.class-a-features { list-style: none; padding: 0; margin: 16px 0; }
.class-a-features li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem; color: var(--gray); display: flex; align-items: center; gap: 10px; }
.class-a-features li::before { content: "✓"; color: #1E8449; font-weight: 700; flex-shrink: 0; }
.fresh-tests { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.fresh-test { background: var(--cream-2); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); }
.fresh-test h4 { font-size: .95rem; color: var(--charcoal); margin-bottom: 8px; }
.fresh-test p { font-size: .86rem; color: var(--gray); line-height: 1.65; }
.brand-guarantee { background: var(--red); color: var(--white); border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.brand-guarantee h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 10px; }
.brand-guarantee p { color: rgba(255,255,255,.85); font-size: .9rem; }

/* Nutrition label */
.nutrition-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.nutrition-label {
  border: 2px solid #000;
  padding: 12px;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 14px;
  max-width: 340px;
}
.nutrition-label .nl-title { font-size: 2rem; font-weight: 900; border-bottom: 8px solid #000; padding-bottom: 4px; margin-bottom: 4px; }
.nutrition-label .nl-serving { font-size: .75rem; border-bottom: 4px solid #000; padding-bottom: 4px; margin-bottom: 4px; }
.nutrition-label .nl-calories-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 4px solid #000; padding: 6px 0; }
.nutrition-label .nl-cal-label { font-size: .75rem; }
.nutrition-label .nl-cal-num { font-size: 2.8rem; font-weight: 900; line-height: 1; }
.nl-row { display: flex; justify-content: space-between; padding: 3px 0; border-bottom: .5px solid #ccc; font-size: .78rem; }
.nl-row.bold { font-weight: 700; }
.nl-row.indent { padding-left: 14px; }
.nl-dv-note { font-size: .7rem; margin-top: 8px; border-top: .5px solid #ccc; padding-top: 6px; }
.superfood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.superfood-point { display: flex; align-items: flex-start; gap: 12px; background: var(--cream-2); border-radius: var(--radius); padding: 16px; border: 1px solid var(--border); }
.superfood-point .sf-icon { color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.superfood-point p { font-size: .88rem; color: var(--gray); line-height: 1.5; margin: 0; }

/* Recipes */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.recipe-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .2s; }
.recipe-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.recipe-card:hover { box-shadow: var(--shadow-lg); }
.recipe-card-header { background: var(--gold); padding: 20px; display: flex; justify-content: space-between; align-items: flex-start; }
.recipe-card-header h3 { font-size: 1rem; color: var(--charcoal); margin: 0; }
.recipe-diff { font-size: .72rem; background: rgba(0,0,0,.12); color: var(--charcoal); padding: 3px 8px; border-radius: 20px; font-weight: 600; white-space: nowrap; }
.recipe-meta { display: flex; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.recipe-meta span { font-size: .8rem; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.recipe-meta [data-lucide] { width: 13px; height: 13px; }
.recipe-body { padding: 16px 18px; }
.recipe-body > p { font-size: .88rem; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.recipe-toggle { background: none; border: 1px solid var(--red); color: var(--red); border-radius: var(--radius); padding: 7px 16px; font-size: .82rem; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: background .15s, color .15s; }
.recipe-toggle:hover { background: var(--red); color: var(--white); }
.recipe-full { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); font-size: .85rem; color: var(--gray); line-height: 1.75; white-space: pre-line; }

/* ── Quality Standards (about page) ── */
.qual-certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.qual-cert-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; display: flex; align-items: flex-start; gap: 18px; transition: box-shadow .2s; }
.qual-cert-card:hover { box-shadow: var(--shadow); }
.qual-cert-badge { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 900; font-size: .75rem; text-align: center; letter-spacing: .03em; }
.qual-cert-card h4 { font-size: .95rem; color: var(--charcoal); margin: 0 0 6px; }
.qual-cert-card p { font-size: .84rem; color: var(--gray); margin: 0; line-height: 1.55; }
.qual-cert-status { font-size: .75rem; color: var(--gray-light); margin-top: 4px; }
.qual-std-text { background: var(--cream-2); border-radius: var(--radius-lg); padding: 24px; margin-top: 24px; font-size: .9rem; color: var(--gray); line-height: 1.75; border-left: 4px solid var(--gold); }

/* ── Sustainability (about page) ── */
.sust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.sust-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.sust-icon { font-size: 2rem; margin-bottom: 12px; line-height: 1; display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; }
.sust-icon svg { width: 26px; height: 26px; stroke-width: 1.8; }
.sust-card h4 { font-size: 1rem; color: var(--charcoal); margin: 0 0 8px; }
.sust-card p { font-size: .88rem; color: var(--gray); line-height: 1.65; margin: 0; }

/* ── Responsive overrides for new components ── */
@media (max-width: 1024px) {
  .grade-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .nutrition-wrapper { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(3, 1fr); }
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grade-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .fresh-tests { grid-template-columns: 1fr; }
  .superfood-grid { grid-template-columns: 1fr; }
  .recipes-grid { grid-template-columns: 1fr; }
  .qual-certs-grid { grid-template-columns: 1fr; }
  .sust-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-fab { bottom: 20px; right: 20px; }
  .whatsapp-fab.btt-visible { transform: translateX(0); }
  #back-to-top { display: none !important; }
}
@media (max-width: 480px) {
  .grade-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Real logo image ── */
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  filter: none;
}
footer .nav-logo-img {
  height: 56px;
  filter: brightness(0) invert(1);  /* white version in dark footer */
}

/* ── Founder portrait photo ── */
.founder-photo-wrap {
  position: relative;
  text-align: center;
}
.founder-photo {
  width: 200px;
  height: 240px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50% 50% 46% 46% / 40% 40% 60% 60%;
  border: 6px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  display: block;
  margin: 0 auto 16px;
}

/* ── Factory image ── */
.factory-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
  height: auto;
  object-fit: contain;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
}

/* ── Presidential visit highlight ── */
.presvisit-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0;
}
.presvisit-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.presvisit-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: white;
  padding: 32px 28px 22px;
  font-size: .9rem;
  line-height: 1.5;
}
.presvisit-caption strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

/* ── Product visual with real photo ── */
.prod-photo-visual {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
}
.prod-photo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}
.product-detail.reverse .prod-photo-visual {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* ── News article photo headers ── */
.news-article-img.has-photo {
  background: none;
}
.news-article-img.has-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── Logo seal in footer ── */
.footer-logo-seal {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: .55;
  margin-top: 14px;
}

/* ── Leadership / owners section ── */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 680px;
  margin: 40px auto 0;
}
.leader-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(245,197,24,.18);
}
.leader-photo {
  width: 150px;
  height: 180px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50% 50% 46% 46% / 40% 40% 60% 60%;
  border: 5px solid var(--gold);
  box-shadow: 0 6px 24px rgba(0,0,0,.14);
  display: block;
  margin: 0 auto 18px;
}
.leader-photo-placeholder {
  width: 150px;
  height: 180px;
  border-radius: 50% 50% 46% 46% / 40% 40% 60% 60%;
  background: rgba(245,197,24,.12);
  border: 5px solid rgba(245,197,24,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.leader-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 0 0 6px;
}
.leader-title {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.leader-desc {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ── Back to top button ── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--red);
  color: #fff;
}
#back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 600px) {
  #back-to-top { width: 40px; height: 40px; }
}
