/* AT Agri Export - Modern Premium Design System */

:root {
  /* Modern Agriculture Color Palette (Fresh, Earthy, Reliable) */
  --primary-dark: #1E3F20;       /* Deep Soil Green */
  --primary-medium: #2D6A4F;     /* Rich Harvest Green */
  --primary-light: #40916C;      /* Fresh Crop Green */
  --accent-gold: #C9A84C;        /* Earthy Terracotta / Onion Skin */
  --accent-gold-light: #C9A84C;  /* Vibrant Harvest Orange */
  --bg-cream: #F9F8F3;           /* Natural Off-white */
  --bg-white: #FFFFFF;           /* Card Background */
  --text-dark: #1C241E;          /* Soft Charcoal */
  --text-muted: #56695C;         /* Muted Field Gray */
  --border-light: rgba(45, 106, 79, 0.15); /* Green-tinted borders */
  --border-medium: rgba(212, 106, 37, 0.25); /* Orange-tinted borders */
  --glass-bg: rgba(30, 63, 32, 0.85); /* Glass effect matching primary-dark */
  --transition-smooth: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-sm: 0 4px 20px rgba(30, 63, 32, 0.02);
  --shadow-md: 0 16px 40px rgba(30, 63, 32, 0.05);
}

/* Back to Top Button */
.btt-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}
.btt-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.btt-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

section[id] {
  scroll-margin-top: 100px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 5px;
  border: 2px solid var(--primary-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold-light);
}

/* Typography Hierarchy */
h1, h2, h3, h4, .font-serif {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

.serif-italic {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-weight: 700;
}

/* -----------------------------------------
   NAVIGATION BAR & BRANDING
   ----------------------------------------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  height: 80px;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

nav.shrunk {
  height: 65px;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--border-medium);
  box-shadow: var(--shadow-md);
}

.nlogo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nlogo img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--accent-gold);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
}

.nlogo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
}



.nlinks {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nlinks a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  padding: 8px 0;
  position: relative;
}

.nlinks a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nlinks a:hover,
.nlinks a.active {
  color: var(--accent-gold);
}

.nlinks a:hover::after,
.nlinks a.active::after {
  width: 20px;
}

.nlinks .ncta {
  background: var(--accent-gold);
  color: var(--primary-dark) !important;
  padding: 11px 24px;
  border-radius: 6px;
  font-weight: 700 !important;
  box-shadow: 0 4px 18px rgba(197, 168, 128, 0.25);
  border: 1px solid transparent;
}

.nlinks .ncta::after {
  display: none;
}

.nlinks .ncta:hover {
  background: #fff;
  color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* -----------------------------------------
   RESPONSIVE HAMBURGER & MOBILE DRAWER
   ----------------------------------------- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 210;
}

.menu-toggle .bar {
  width: 26px;
  height: 2px;
  background-color: #fff;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

/* Mobile Nav Drawer Styles */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 300;
  transform: translateX(100%);
  transition: var(--transition-smooth);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.4);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}

.menu-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.menu-close:hover {
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.mobile-nlinks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nlinks a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition-smooth);
  display: block;
}

.mobile-nlinks a:hover,
.mobile-nlinks a.active {
  color: var(--accent-gold);
  transform: translateX(8px);
}

.mobile-nlinks .ncta {
  background: var(--accent-gold);
  color: var(--primary-dark) !important;
  text-align: center;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
  box-shadow: 0 4px 18px rgba(197, 168, 128, 0.25);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 290;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: blur(5px);
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px) {
  .nlinks {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

/* -----------------------------------------
   HERO / BANNER SECTION (EDITORIAL STYLING)
   ----------------------------------------- */
.hero {
  position: relative;
  margin-top: 80px;
  height: clamp(450px, 78vh, 660px);
  overflow: hidden;
  background-color: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero img.banner {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.9;
  animation: kenburns 32s ease infinite alternate;
}

@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.12) translate(-1%, -0.5%);
  }
}

.hover-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 50, 25, 0.85) 0%, rgba(25, 50, 25, 0.35) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 8%;
  z-index: 2;
}

.ht {
  max-width: 680px;
  border-left: 2px solid var(--accent-gold);
  padding-left: 32px;
}

.ht .st, .ht .sl {
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95), 0 0 30px rgba(0, 0, 0, 0.8);
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.ht h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.ht h1 em {
  font-style: normal;
  color: #FFD700; /* Bright popping yellow */
  background: none;
  -webkit-text-fill-color: initial;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95), 0 0 30px rgba(0, 0, 0, 0.8);
}

.ht p {
  font-size: clamp(0.92rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 540px;
}

.hbtns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.bg {
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(197, 168, 128, 0.3);
}

.bg:hover {
  background: #fff;
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
}

.bo {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bo:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .hero {
    height: clamp(580px, 85vh, 800px);
  }
  .hero img.banner {
    height: 100%;
  }
  .hover-ov {
    background: linear-gradient(180deg, rgba(25, 50, 25, 0.4) 0%, rgba(25, 50, 25, 0.9) 60%);
    padding: 20px 24px;
    align-items: center;
  }
  .ht {
    border-left: none;
    padding-left: 0;
    margin-bottom: 12px;
  }
}

/* -----------------------------------------
   TRUST BAR (TBAR)
   ----------------------------------------- */
.tbar {
  background: var(--primary-dark);
  padding: 30px 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tbi {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.tbi .ico {
  color: var(--accent-gold-light);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

@media (max-width: 1000px) {
  .tbar {
    justify-content: center;
    gap: 20px 32px;
  }
}

/* -----------------------------------------
   SECTION LAYOUTS & CONTAINERS
   ----------------------------------------- */
section {
  padding: 110px 8%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.ey {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 14px;
  display: block;
}

.st {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.sl {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  font-weight: 400;
  line-height: 1.85;
}

.ctr {
  text-align: center;
}

.ctr .sl {
  margin: 0 auto;
}

/* -----------------------------------------
   ABOUT US SECTION
   ----------------------------------------- */
.about {
  background: var(--bg-white);
}

.ag {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.aimg {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  background-color: var(--bg-cream);
  padding: 12px;
}

.aimg img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.aimg:hover img {
  transform: scale(1.025);
}

.about-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 34px;
}

.afacts {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.af {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.afi {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.af h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.af p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .ag {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .aimg img {
    height: 340px;
  }
}

/* -----------------------------------------
   STATS ROW (EDITORIAL DESIGN)
   ----------------------------------------- */
.stats-row {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #05130D 100%);
  padding: 66px 8%;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.si {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: -20px;
  width: 1px;
  height: 70%;
  background: rgba(255, 255, 255, 0.08);
}

.sn {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--accent-gold-light);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.sl2 {
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 850px) {
  .si {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
  .stat-item::after {
    display: none !important;
  }
}

@media (max-width: 550px) {
  .si {
    grid-template-columns: 1fr 1fr;
  }
  .si .stat-item:last-child {
    grid-column: span 2;
  }
}

/* -----------------------------------------
   PRODUCTS SECTION (CARDS UPGRADE)
   ----------------------------------------- */
.products {
  background-color: var(--bg-cream);
}

.pg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}

.pc {
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.pc:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 168, 128, 0.45);
}

.pim {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.pim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pc:hover .pim img {
  transform: scale(1.05);
}

.plbl {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.pb {
  padding: 32px;
}

.pt {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-medium);
  background: rgba(19, 51, 37, 0.06);
  padding: 5px 14px;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 14px;
}

.pb h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  color: var(--primary-dark);
  margin-bottom: 2px;
  font-weight: 700;
  line-height: 1.2;
}

.pb .vn {
  font-size: 0.86rem;
  color: var(--primary-medium);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 12px;
}

.pb p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  min-height: auto;
}

.fl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.fl li {
  font-size: 0.85rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
}

.fl li::before {
  content: '✓';
  color: var(--primary-light);
  font-weight: 700;
  flex-shrink: 0;
}

.sb {
  background: #F4FAF7;
  border-left: 3px solid var(--accent-gold);
  border-radius: 4px 10px 10px 4px;
  padding: 16px 20px;
}

.sbt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(45, 90, 67, 0.08);
  padding-bottom: 6px;
}

.sr {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(45, 90, 67, 0.05);
}

.sr:last-child {
  border: none;
  padding-bottom: 0;
}

.sr .sk {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sr .sv {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-dark);
}

@media (max-width: 950px) {
  .pg {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 650px) {
  .pg {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------
   GALLERY SECTION (PREMIUM INTERACTIVE MASONRY)
   ----------------------------------------- */
.gallery {
  background-color: var(--primary-dark);
}

.gallery .ey {
  color: var(--accent-gold-light);
}

.gallery .st {
  color: #fff;
}

.gallery .sl {
  color: rgba(255, 255, 255, 0.65);
}

.gg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 250px 250px;
  gap: 20px;
  margin-top: 56px;
}

.gi {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gi:hover img {
  transform: scale(1.06);
}

.gi.tall {
  grid-row: span 2;
}

.gi.wide {
  grid-column: span 2;
}

.gcap {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 28, 20, 0.95));
  padding: 30px 20px 18px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gi:hover .gcap {
  bottom: 0;
  opacity: 1;
}

@media (max-width: 900px) {
  .gg {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 14px;
  }
  .gi.tall, .gi.wide {
    grid-row: auto;
    grid-column: auto;
  }
  .gi {
    height: 220px;
  }
  .gcap {
    bottom: 0;
    opacity: 1;
    background: linear-gradient(transparent, rgba(10, 28, 20, 0.85));
  }
}

@media (max-width: 500px) {
  .gg {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------
   EXPORT / INFRASTRUCTURE SECTION
   ----------------------------------------- */
.export {
  background: var(--bg-white);
}

.exg {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.eximg {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  background-color: var(--bg-cream);
  padding: 12px;
}

.eximg img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.eximg:hover img {
  transform: scale(1.025);
}

.export-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 34px;
}

.eps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ep {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--bg-cream);
  border-radius: 14px;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.ep:hover {
  border-color: rgba(197, 168, 128, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ep .ei {
  font-size: 1.8rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}

.ep h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.ep p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .exg {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .eximg img {
    height: 340px;
  }
}

/* -----------------------------------------
   GARLIC DETAIL SECTION
   ----------------------------------------- */
.garlic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

@media (max-width: 750px) {
  .garlic-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* -----------------------------------------
   WHY CHOOSE US / ADVANTAGES SECTION
   ----------------------------------------- */
.why {
  background-color: var(--bg-white);
}

.wg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(197, 168, 128, 0.2);
  margin-top: 52px;
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.wi {
  background: var(--bg-white);
  padding: 44px 34px;
  transition: var(--transition-smooth);
}

.wi:hover {
  background: #FCFAF7;
  transform: scale(1.01);
  z-index: 2;
  box-shadow: 0 12px 36px rgba(10, 28, 20, 0.05);
}

.wi .wico {
  font-size: 2.3rem;
  margin-bottom: 18px;
}

.wi h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.wi p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 950px) {
  .wg {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .wg {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------
   ACTIVE MARKETS SECTION (EDITORIAL LAYOUT)
   ----------------------------------------- */
.markets {
  background-color: var(--primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.markets .ey {
  color: var(--accent-gold-light);
}

.markets .st {
  color: #fff;
}

.markets .sl {
  color: rgba(255, 255, 255, 0.65);
}

.mps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.mp {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.mp:hover {
  background: rgba(197, 168, 128, 0.15);
  border-color: var(--accent-gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(197, 168, 128, 0.15);
}

/* -----------------------------------------
   PACKAGING SECTION
   ----------------------------------------- */
.pksec {
  background-color: var(--bg-cream);
}

.pklist {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.pi {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.pi:hover {
  border-color: var(--primary-medium);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* -----------------------------------------
   PROCESS STEPS SECTION
   ----------------------------------------- */
.process {
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-light);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 54px;
}

.step {
  flex: 1;
  min-width: 200px;
  padding: 34px 24px;
  background: var(--bg-white);
  border-radius: 14px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 44px;
  color: var(--accent-gold);
  font-size: 1.8rem;
  font-weight: 700;
  z-index: 10;
}

.stn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--accent-gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 12px rgba(10, 28, 20, 0.15);
}

.step h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .step::after {
    display: none !important;
  }
  .steps {
    gap: 20px;
  }
}

/* -----------------------------------------
   CONTACT / PARTNERSHIP SECTION (GLASS DESIGN)
   ----------------------------------------- */
.contact {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #04100A 100%);
  padding: 120px 8%;
  text-align: center;
}

.contact .ey {
  color: var(--accent-gold-light);
}

.contact .st {
  color: #fff;
  margin: 0 auto 18px;
  max-width: 720px;
}

.contact .sl {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto 56px;
}

.ccs {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 54px;
}

.cc {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 45px 35px;
  text-align: center;
  min-width: 280px;
  flex: 1;
  max-width: 360px;
  transition: var(--transition-smooth);
}

.cc:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cc .cci {
  color: var(--accent-gold-light);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cc .ccl {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.cc .ccv {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}

.cc a {
  color: var(--accent-gold-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.cc a:hover {
  color: #fff;
  text-decoration: underline;
}

.main-cta-btn {
  font-size: 1.05rem !important;
  padding: 20px 56px !important;
  border-radius: 8px !important;
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.35) !important;
}

.main-cta-btn:hover {
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25) !important;
}

.cnote {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  margin-top: 20px;
}

/* -----------------------------------------
   FOOTER SECTION
   ----------------------------------------- */
footer {
  background: #040A07;
  padding: 36px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.fb {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fb img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--accent-gold);
}

.fb span {
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent-gold-light);
  font-size: 1.1rem;
  font-weight: 600;
}

.fc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.fl2 {
  display: flex;
  gap: 24px;
}

.fl2 a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fl2 a.sc-fb { color: #1877F2; }
.fl2 a.sc-wa { color: #25D366; }
.fl2 a.sc-em { color: #EA4335; }

.fl2 a:hover {
  color: #fff;
  transform: translateY(-3px);
}

.fl2 a.sc-fb:hover { background: #1877F2; border-color: #1877F2; box-shadow: 0 8px 20px rgba(24, 119, 242, 0.35); }
.fl2 a.sc-wa:hover { background: #25D366; border-color: #25D366; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35); }
.fl2 a.sc-em:hover { background: #EA4335; border-color: #EA4335; box-shadow: 0 8px 20px rgba(234, 67, 53, 0.35); }

@media (max-width: 750px) {
  footer {
    flex-direction: column;
    text-align: center;
    padding: 36px 20px;
    gap: 20px;
  }
}

/* -----------------------------------------
   FADE-IN ANIMATIONS ON SCROLL (REVEAL)
   ----------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* -----------------------------------------
   FAQ ACCORDION
   ----------------------------------------- */
.faq {
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-light);
}

.faq-accordion {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: left;
  color: var(--primary-dark);
  cursor: pointer;
  gap: 20px;
  transition: var(--transition-smooth);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-gold);
  transition: transform 0.4s ease;
  line-height: 1;
}

.faq-item.active {
  border-color: var(--primary-medium);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-content-inner {
  padding: 0 30px 24px;
  border-top: 1px dashed rgba(10, 28, 20, 0.06);
  padding-top: 20px;
}

.faq-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.faq-list {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-list li {
  font-size: 0.9rem;
  color: var(--text-dark);
  display: flex;
  gap: 10px;
  line-height: 1.5;
}

.faq-list li::before {
  content: '▪';
  color: var(--accent-gold);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .faq-trigger {
    padding: 20px 24px;
    font-size: 1rem;
  }
  .faq-content-inner {
    padding: 0 24px 20px;
  }
}

/* -----------------------------------------
   FLOATING CONTACT WIDGET
   ----------------------------------------- */
.floating-cta {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.floating-cta-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-dark);
  border: 1px solid var(--accent-gold);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(10, 28, 20, 0.35);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s;
  outline: none;
}

.floating-cta-btn:hover {
  transform: scale(1.06);
  background: var(--primary-medium);
}

.cta-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  opacity: 0.8;
  animation: ctapulse 2s infinite;
  pointer-events: none;
}

@keyframes ctapulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.cta-close-icon {
  display: none;
  font-size: 2rem;
  line-height: 1;
}

.cta-main-icon {
  display: inline-block;
  animation: ringPhone 2.5s infinite ease-in-out;
  transform-origin: center;
}

@keyframes ringPhone {
  0%, 15%, 100% { transform: rotate(0); }
  3% { transform: rotate(-25deg) scale(1.15); }
  6% { transform: rotate(25deg) scale(1.15); }
  9% { transform: rotate(-25deg) scale(1.15); }
  12% { transform: rotate(25deg) scale(1.15); }
}

.floating-cta.active .cta-main-icon {
  display: none;
}

.floating-cta.active .cta-close-icon {
  display: block;
}

.floating-cta-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.floating-cta.active .floating-cta-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cta-menu-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 40px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.cta-menu-item:hover {
  transform: translateX(-5px);
  box-shadow: 0 8px 20px rgba(10, 28, 20, 0.15);
  border-color: var(--accent-gold);
}

.cta-menu-item .cta-icon {
  font-size: 1.25rem;
}

.cta-menu-item .cta-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.cta-menu-item.whatsapp {
  border-left: 3px solid #25D366;
}

.cta-menu-item.zalo {
  border-left: 3px solid #0068FF;
}

.cta-menu-item.email {
  border-left: 3px solid var(--accent-gold);
}

@media (max-width: 600px) {
  .floating-cta {
    bottom: 20px;
    left: 20px;
  }
  .floating-cta-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}