/* ==========================================================================
   NYALKARAN RICE MILL — PREMIER B2B LIGHT MODE LUXURY DESIGN SYSTEM
   Modern Agribusiness, Gujarat Milling Heritage & Domestic Interstate Supply
   Palette: Warm Rice Cream (#fbfaf7), Deep Forest Emerald (#0d4a2d),
            Harvest Gold (#b8860b / #d4af37), Crisp Card White (#ffffff)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Canvas & Surface Tokens (Warm Luxury Light Mode) */
  --bg-main: #fbfaf7;
  --bg-alt: #f3efe6;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.92);
  --bg-input: #ffffff;

  /* Brand Colors */
  --emerald-primary: #0d4a2d;
  --emerald-accent: #15803d;
  --emerald-light: #22c55e;
  --emerald-soft: rgba(21, 128, 61, 0.08);
  --emerald-glow: rgba(21, 128, 61, 0.15);
  --emerald-border: rgba(13, 74, 45, 0.16);

  --gold-primary: #b8860b;
  --gold-accent: #d4af37;
  --gold-light: #e6ca65;
  --gold-dark: #916806;
  --gold-gradient: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #996c05 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(184, 134, 11, 0.05) 100%);
  --gold-soft: rgba(212, 175, 55, 0.12);

  /* High-Contrast Typography */
  --text-primary: #112219;
  --text-secondary: #3b5044;
  --text-muted: #62776b;
  --text-gold: #9e7308;
  --text-light: #ffffff;

  /* Borders & Shadows */
  --border-subtle: rgba(13, 74, 45, 0.10);
  --border-medium: rgba(13, 74, 45, 0.18);
  --border-gold: rgba(184, 134, 11, 0.28);
  --border-hover: rgba(184, 134, 11, 0.65);

  --shadow-xs: 0 2px 8px rgba(13, 45, 30, 0.04);
  --shadow-subtle: 0 4px 20px rgba(13, 45, 30, 0.06);
  --shadow-card: 0 8px 30px rgba(13, 45, 30, 0.07);
  --shadow-hover: 0 16px 40px rgba(13, 45, 30, 0.12), 0 0 1px rgba(184, 134, 11, 0.4);
  --shadow-modal: 0 24px 60px rgba(13, 35, 24, 0.25);

  /* Typography Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Radii */
  --container-max: 1240px;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   SCROLL REVEAL & MULTI-ANGLE ENTRANCE ANIMATIONS
   GPU-accelerated smooth transitions from various directions & depths
   ========================================================================== */
.reveal-init {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up { transform: translateY(45px); }
.reveal-down { transform: translateY(-45px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-zoom { transform: scale(0.92); }

.reveal-init.is-revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Stagger Delays for Grid Elements */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.25;
}

.gold-text { color: var(--text-gold); }
.emerald-text { color: var(--emerald-accent); }

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--emerald-primary);
  background: var(--emerald-soft);
  border: 1px solid var(--emerald-border);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.25rem;
}

.section-title {
  font-size: 2.35rem;
  margin-bottom: 0.85rem;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.925rem;
  padding: 0.7rem 1.45rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald-primary) 0%, #17603c 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(13, 74, 45, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #093721 0%, var(--emerald-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(13, 74, 45, 0.3);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--emerald-primary);
  border: 1px solid var(--emerald-border);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--emerald-soft);
  border-color: var(--emerald-accent);
  transform: translateY(-2px);
  color: var(--emerald-primary);
}

.btn-outline-gold {
  background: #ffffff;
  color: var(--gold-dark);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-xs);
}

.btn-outline-gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  color: var(--gold-dark);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.825rem;
}

/* ==========================================================================
   1. NAVIGATION HEADER (Clean Frosted Glass)
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13, 74, 45, 0.08);
  transition: var(--transition);
  padding: 0.85rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 25px rgba(13, 45, 30, 0.08);
  padding: 0.65rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-accent) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(13, 74, 45, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--emerald-primary);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding: 0.45rem 0;
  letter-spacing: -0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--emerald-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sample-kit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.sample-kit-btn:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.sample-badge {
  background: var(--gold-dark);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 1.25rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
}

/* ==========================================================================
   2. FULL-SCREEN CREATIVE & CENTERED HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5.5rem 0 3.5rem;
  background: radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.15) 0%, transparent 65%),
              radial-gradient(circle at 10% 85%, rgba(21, 128, 61, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.10) 0%, transparent 50%),
              var(--bg-main);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.hero-fullscreen {
  min-height: calc(100vh - 68px);
}

#grain-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-aurora-glow-1 {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.20) 0%, rgba(245, 218, 136, 0.10) 45%, transparent 75%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  animation: auroraBreathe1 9s ease-in-out infinite alternate;
}

.hero-aurora-glow-2 {
  position: absolute;
  bottom: 15%;
  right: 20%;
  width: 500px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(21, 128, 61, 0.12) 0%, transparent 70%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 1;
  animation: auroraBreathe2 11s ease-in-out infinite alternate;
}

@keyframes auroraBreathe1 {
  0% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.9) rotate(0deg); }
  100% { opacity: 0.95; transform: translate(-50%, -50%) scale(1.18) rotate(5deg); }
}

@keyframes auroraBreathe2 {
  0% { opacity: 0.4; transform: scale(0.85) translate(0, 0); }
  100% { opacity: 0.8; transform: scale(1.15) translate(-30px, -20px); }
}

.hero-geometric-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  border: 1px dashed rgba(184, 134, 11, 0.18);
}

.hero-geometric-ring.ring-1 {
  width: 680px;
  height: 680px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringRotate 60s linear infinite;
}

.hero-geometric-ring.ring-2 {
  width: 950px;
  height: 950px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(21, 128, 61, 0.08);
  animation: ringRotateReverse 80s linear infinite;
}

@keyframes ringRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ringRotateReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.25) 0%, transparent 85%);
  pointer-events: none;
  z-index: 2;
}

.hero-center-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem;
}

.hero-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.live-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  color: var(--emerald-primary);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-ring 1.8s infinite;
}

.port-dispatch-tag {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
}

.hero-headline-centered {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.35rem;
  letter-spacing: -0.025em;
  max-width: 950px;
}

.hero-tagline-centered {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 2.35rem;
}

.hero-ctas-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-hero-primary {
  padding: 0.85rem 1.85rem;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(13, 74, 45, 0.28);
}

.btn-hero-secondary {
  padding: 0.85rem 1.65rem;
  font-size: 1rem;
}

.btn-hero-outline {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.hero-cards-centered-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 2rem;
}

.hero-glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 134, 11, 0.22);
  border-radius: var(--radius-md);
  padding: 1.65rem 1.25rem;
  box-shadow: 0 8px 24px rgba(13, 45, 30, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(13, 45, 30, 0.12), 0 0 15px rgba(212, 175, 55, 0.25);
  border-color: var(--gold-primary);
  background: #ffffff;
}

.hero-glass-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.hero-glass-card:hover .hero-glass-icon {
  background: var(--emerald-primary);
  color: #ffffff;
}

.hero-glass-num {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--emerald-primary);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.hero-glass-lbl {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-port-corridor-strip {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(13, 74, 45, 0.14);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  flex-wrap: wrap;
  justify-content: center;
}

.corridor-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--emerald-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.corridor-items {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.corridor-badge {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-alt);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(13, 74, 45, 0.08);
}

/* ==========================================================================
   3. TRUSTED MANDIS & APMC PARTNERS BAR
   ========================================================================== */
.trusted-bar-section {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.75rem 0;
  box-shadow: var(--shadow-xs);
}

.trust-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-label {
  display: flex;
  flex-direction: column;
}

.trust-pill {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.trust-label h4 {
  font-size: 1.05rem;
  color: var(--emerald-primary);
}

.trust-badges-grid {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.trust-badge-card {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #fdfbf7;
  color: var(--emerald-primary);
  border: 1px solid rgba(13, 74, 45, 0.15);
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.trust-badge-card i {
  color: var(--gold-dark);
}

.trust-badge-card:hover {
  background: #ffffff;
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xs);
}

/* ==========================================================================
   4. PRECISION MILLING TOUR SECTION
   ========================================================================== */
.milling-tour-section {
  padding: 6rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
}

.tour-timeline-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.tour-step-btn {
  background: #ffffff;
  border: 1px solid rgba(13, 74, 45, 0.12);
  border-radius: var(--radius-sm);
  padding: 1.15rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  text-align: center;
}

.tour-step-btn .step-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.tour-step-btn .step-name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

.tour-step-btn:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.tour-step-btn.active {
  background: linear-gradient(135deg, var(--emerald-primary) 0%, #17603c 100%);
  border-color: var(--emerald-primary);
  box-shadow: 0 8px 24px rgba(13, 74, 45, 0.28);
}

.tour-step-btn.active .step-num {
  color: #f7d56e;
}

.tour-step-btn.active .step-name {
  color: #ffffff;
}

.tour-stage-card {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
}

.stage-visual {
  position: relative;
  min-height: 380px;
  background: #000;
}

.stage-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stage-metric-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.stage-metric-overlay .metric-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--emerald-primary);
}

.stage-metric-overlay .metric-lbl {
  font-size: 0.725rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stage-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stage-badge-wrap {
  margin-bottom: 0.85rem;
}

.stage-tag {
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

.stage-title {
  font-size: 1.85rem;
  color: var(--emerald-primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.stage-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.stage-key-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.stage-point {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.stage-point i {
  color: var(--emerald-accent);
}

.stage-nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ==========================================================================
   5. PACKAGING STUDIO & LUXURY FORMAT CARDS
   ========================================================================== */
.packaging-section {
  padding: 6.5rem 0;
  background: var(--bg-main);
  position: relative;
}

.pack-luxury-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-card);
}

.pack-headline-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pack-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.pack-headline-left h3 {
  font-size: 2.1rem;
  color: var(--emerald-primary);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.pack-headline-left p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pack-kpis-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.pack-kpi-item {
  background: #fdfbf7;
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
}

.pack-kpi-num {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--emerald-primary);
  display: block;
}

.pack-kpi-label {
  font-size: 0.775rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.pack-grid-deluxe {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.pack-card-deluxe {
  background: #faf8f2;
  border: 1px solid rgba(13, 74, 45, 0.14);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pack-card-deluxe:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(13, 45, 30, 0.12);
  border-color: var(--gold-accent);
}

.pack-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.pack-card-deluxe:hover .pack-icon-badge {
  background: var(--emerald-primary);
  color: #ffffff;
  transform: scale(1.1);
}

.pack-card-title {
  font-size: 1.2rem;
  color: var(--emerald-primary);
  margin-bottom: 0.45rem;
}

.pack-card-range {
  display: inline-block;
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(184, 134, 11, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.pack-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.35rem;
  flex-grow: 1;
}

.pack-features-mini {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-top: 1px solid rgba(13, 74, 45, 0.08);
  padding-top: 1rem;
}

.pack-features-mini li {
  font-size: 0.8rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.pack-features-mini i {
  color: var(--emerald-accent);
  font-size: 0.75rem;
}

/* ==========================================================================
   6. NATIONWIDE DISTRIBUTION & INDIA MAP WITH RED DOTS
   ========================================================================== */
.global-export-section {
  padding: 6.5rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
}

.export-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.india-map-container-deluxe {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.hub-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.hub-origin-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.origin-pulse {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.origin-details h4 {
  font-size: 1.1rem;
  color: var(--emerald-primary);
}

.origin-details p {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.hub-stats-badge {
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-gold);
}

.india-svg-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.5rem 0 0;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.india-svg-wrap img,
.india-svg-wrap object,
.india-svg-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

.india-vector-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logistics-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.logistics-card {
  background: #ffffff;
  border: 1px solid rgba(13, 74, 45, 0.12);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  box-shadow: var(--shadow-card);
}

.logistics-card-title {
  font-size: 1.15rem;
  color: var(--emerald-primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.domestic-routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.route-box {
  background: #fdfbf7;
  border: 1px solid rgba(13, 74, 45, 0.1);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.route-box:hover {
  background: #ffffff;
  border-color: var(--border-gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-xs);
}

.route-box.active-route {
  border-color: var(--emerald-accent);
  background: rgba(21, 128, 61, 0.06);
  box-shadow: 0 4px 15px rgba(21, 128, 61, 0.1);
}

.route-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: var(--emerald-soft);
  color: var(--emerald-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-right: 0.85rem;
}

.route-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.route-dest h5 {
  font-size: 0.95rem;
  color: var(--emerald-primary);
}

.route-dest p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.route-transit {
  text-align: right;
}

.route-transit .transit-time {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: block;
}

.route-transit .transit-type {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.incoterms-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.incoterm-tag {
  background: var(--emerald-soft);
  color: var(--emerald-primary);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--emerald-border);
}

/* ==========================================================================
   7. REGULATORY LICENSES & ACCREDITATIONS (NO PDF TEXT)
   ========================================================================== */
.licenses-section {
  padding: 6rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
}

.licenses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.license-card-deluxe {
  background: #ffffff;
  border: 1px solid rgba(13, 74, 45, 0.12);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.license-card-deluxe:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-hover);
}

.license-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.license-emblem {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xs);
  background: var(--emerald-soft);
  color: var(--emerald-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.license-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.725rem;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.license-title {
  font-size: 1.2rem;
  color: var(--emerald-primary);
  margin-bottom: 0.35rem;
}

.license-reg-no {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
  background: #fef9e7;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-xs);
  display: inline-block;
}

.license-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.license-footer-auth {
  border-top: 1px solid rgba(13, 74, 45, 0.08);
  padding-top: 0.85rem;
  font-size: 0.775rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   8. FACILITY GALLERY & LIGHTBOX (PHOTOS & 4K PLANT VIDEOS)
   ========================================================================== */
.gallery-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background: #ffffff;
  border: 1px solid rgba(13, 74, 45, 0.15);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-xs);
}

.gallery-filter-btn:hover {
  border-color: var(--gold-accent);
  color: var(--emerald-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--emerald-primary) 0%, #15803d 100%);
  border-color: var(--gold-accent);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(13, 74, 45, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.gallery-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(13, 74, 45, 0.12);
  position: relative;
  cursor: pointer;
  height: 250px;
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item.is-hidden {
  display: none !important;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Media Type Badges */
.gallery-badge-media {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.gallery-badge-media.video {
  background: rgba(184, 134, 11, 0.9);
  color: #ffffff;
  border: 1px solid rgba(245, 218, 136, 0.5);
}

.gallery-badge-media.photo {
  background: rgba(13, 74, 45, 0.85);
  color: #ffffff;
  border: 1px solid rgba(52, 211, 153, 0.4);
}

/* Animated Play Button Overlay for Videos */
.gallery-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--emerald-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding-left: 3px; /* visual center for play icon */
  animation: play-btn-pulse 2.2s infinite;
}

@keyframes play-btn-pulse {
  0% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 14px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(212, 175, 55, 0); }
}

.gallery-item:hover .gallery-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--gold-accent);
  color: #ffffff;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 74, 45, 0.95) 0%, rgba(13, 74, 45, 0.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.gallery-overlay p {
  font-size: 0.775rem;
  color: #f5da88;
  font-weight: 600;
}

/* ==========================================================================
   9. WHY CHOOSE US
   ========================================================================== */
.why-us-section {
  padding: 6rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.why-card {
  background: #ffffff;
  border: 1px solid rgba(13, 74, 45, 0.12);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.why-title {
  font-size: 1.2rem;
  color: var(--emerald-primary);
  margin-bottom: 0.55rem;
}

.why-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   10. TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(13, 74, 45, 0.12);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-quote {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-accent));
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
}

.client-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.client-country {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* ==========================================================================
   11. FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
}

.faq-accordion-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  background: #ffffff;
  border: 1px solid rgba(13, 74, 45, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: var(--transition);
}

.faq-card.active {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
}

.faq-header {
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--emerald-primary);
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--emerald-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-card.active .faq-chevron {
  transform: rotate(180deg);
  background: var(--emerald-primary);
  color: #ffffff;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-card.active .faq-body {
  max-height: 250px;
  padding: 0 1.5rem 1.35rem;
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   12. ABOUT US PAGE STYLES (about.html)
   ========================================================================== */
.about-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-gold);
  overflow: visible;
}

.about-main-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--emerald-primary), #17603c);
  color: #ffffff;
  border: 2px solid var(--gold-accent);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-experience-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #f7d56e;
  line-height: 1;
}

.about-experience-badge .badge-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-top: 0.25rem;
}

.about-content-col {
  display: flex;
  flex-direction: column;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--emerald-primary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about-stat-item {
  background: #fdfbf7;
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
}

.about-stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--emerald-primary);
  display: block;
}

.about-stat-label {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pillar-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--emerald-primary);
}

.pillar-pill i {
  color: var(--emerald-accent);
}

/* Founders Section (about.html) */
.founders-section {
  padding: 5.5rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}

.founder-card {
  background: #ffffff;
  border: 1px solid rgba(13, 74, 45, 0.12);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold);
}

.founder-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.founder-avatar-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-accent));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 15px rgba(13, 74, 45, 0.2);
}

.founder-name {
  font-size: 1.35rem;
  color: var(--emerald-primary);
  margin-bottom: 0.2rem;
}

.founder-title {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.founder-creds {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--emerald-primary);
  flex-wrap: wrap;
}

.founder-creds span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-alt);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xs);
}

.founder-creds i {
  color: var(--gold-dark);
}

/* Infrastructure & Turnover (about.html) */
.infra-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.turnover-banner {
  background: linear-gradient(135deg, #0d4a2d 0%, #082d1c 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-card);
  color: #ffffff;
}

.turnover-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.turnover-item {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.turnover-item:last-child {
  border-right: none;
}

.turnover-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #f7d56e;
  margin-bottom: 0.35rem;
}

.turnover-lbl {
  font-size: 0.8rem;
  color: #d1dfd6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.infra-card {
  background: #ffffff;
  border: 1px solid rgba(13, 74, 45, 0.12);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.infra-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold);
}

.infra-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.infra-card:hover .infra-icon-wrap {
  background: var(--emerald-primary);
  color: #ffffff;
}

.infra-title {
  font-size: 1.2rem;
  color: var(--emerald-primary);
  margin-bottom: 0.65rem;
}

.infra-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.infra-metric-pill {
  display: inline-flex;
  align-items: center;
  background: var(--bg-alt);
  color: var(--emerald-primary);
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(13, 74, 45, 0.1);
  width: fit-content;
}

/* ==========================================================================
   13. MULTI-PAGE PAGE HERO & BREADCRUMB SYSTEM
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #0d4a2d 0%, #082d1c 100%);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold-accent);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.825rem;
  color: #c4d7cb;
  margin-bottom: 1.15rem;
}

.breadcrumb-nav a {
  color: #f7d56e;
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.page-hero-title {
  font-size: 2.85rem;
  color: #ffffff;
  margin-bottom: 0.85rem;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: #d1e2d8;
  line-height: 1.65;
}

/* ==========================================================================
   14. PRODUCTS CATALOG STYLES (products.html)
   ========================================================================== */
.products-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.products-filter-bar {
  display: flex;
  justify-content: center;
}

.filter-buttons-scroll {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid rgba(13, 74, 45, 0.15);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn:hover {
  border-color: var(--gold-primary);
  color: var(--emerald-primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--emerald-primary) 0%, #17603c 100%);
  color: #ffffff;
  border-color: var(--emerald-primary);
  box-shadow: 0 4px 14px rgba(13, 74, 45, 0.22);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: #ffffff;
  border: 1px solid rgba(13, 74, 45, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold);
}

.product-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #fdfbf7;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-type-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(13, 74, 45, 0.9);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
  backdrop-filter: blur(6px);
}

.product-aging-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(212, 175, 55, 0.95);
  color: #112219;
  font-family: var(--font-heading);
  font-size: 0.725rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
  backdrop-filter: blur(6px);
}

.product-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.25rem;
  color: var(--emerald-primary);
  margin-bottom: 0.45rem;
}

.product-short-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.grain-matrix-box {
  background: #fdfbf7;
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: var(--radius-xs);
  padding: 0.85rem;
  margin-bottom: 1.25rem;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.matrix-item {
  display: flex;
  flex-direction: column;
}

.matrix-label {
  font-size: 0.675rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}

.matrix-val {
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--emerald-primary);
}

.product-card-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-quote-mini {
  background: var(--emerald-soft);
  color: var(--emerald-primary);
  border: 1px solid var(--emerald-border);
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: var(--transition);
}

.btn-quote-mini:hover {
  background: var(--emerald-primary);
  color: #ffffff;
}

.btn-sample {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  color: var(--gold-dark);
  border: 1px solid var(--border-gold);
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: var(--transition);
}

.btn-sample:hover,
.btn-sample.in-kit {
  background: var(--gold-soft);
  border-color: var(--gold-primary);
}

.btn-sample.in-kit {
  background: #dcfce7;
  color: #15803d;
  border-color: #22c55e;
}

/* ==========================================================================
   15. PRODUCT DETAIL PAGE (product-detail.html)
   ========================================================================== */
.product-detail-section {
  padding: 4.5rem 0 6rem;
  background: var(--bg-main);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.product-gallery-deluxe {
  position: sticky;
  top: 100px;
}

.product-gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
  margin-bottom: 1.25rem;
  height: 420px;
  background: #ffffff;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.thumb-item {
  height: 80px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  border: 2px solid rgba(13, 74, 45, 0.12);
  cursor: pointer;
  transition: var(--transition);
}

.thumb-item.active,
.thumb-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-deluxe {
  display: flex;
  flex-direction: column;
}

.product-info-deluxe .product-badge-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.product-info-deluxe .prod-title {
  font-size: 2.35rem;
  color: var(--emerald-primary);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.product-info-deluxe .prod-summary {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.specs-table-box {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  margin-bottom: 2rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid rgba(13, 74, 45, 0.08);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.875rem;
}

.specs-table td.spec-name {
  color: var(--text-muted);
  font-weight: 600;
  width: 40%;
  background: #faf8f2;
}

.specs-table td.spec-val {
  color: var(--emerald-primary);
  font-weight: 700;
}

.product-cta-actions-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* ==========================================================================
   16. ENHANCED CONTACT PAGE (contact.html)
   ========================================================================== */
.contact-page-section {
  padding: 4.5rem 0 6rem;
  background: var(--bg-main);
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-deluxe-card {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.form-section-title {
  font-size: 1.15rem;
  color: var(--emerald-primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.form-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group-deluxe {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}

.form-group-deluxe label {
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-input-deluxe,
.form-select-deluxe,
.form-textarea-deluxe {
  background: #ffffff;
  border: 1px solid rgba(13, 74, 45, 0.2);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-xs);
  transition: var(--transition);
  width: 100%;
}

.form-input-deluxe:focus,
.form-select-deluxe:focus,
.form-textarea-deluxe:focus {
  outline: none;
  border-color: var(--emerald-primary);
  box-shadow: 0 0 0 3px rgba(13, 74, 45, 0.12);
}

.contact-info-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card-deluxe {
  background: #ffffff;
  border: 1px solid rgba(13, 74, 45, 0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.contact-info-card-deluxe:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.contact-info-card-deluxe h4 {
  font-size: 1.15rem;
  color: var(--emerald-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.contact-detail-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.contact-detail-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-detail-items i {
  color: var(--gold-dark);
  margin-top: 0.25rem;
  font-size: 1rem;
}

/* ==========================================================================
   17. FOOTER & SITEMAP
   ========================================================================== */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col-brand p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.05rem;
  color: var(--emerald-primary);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--emerald-primary);
  transform: translateX(3px);
  display: inline-block;
}

.footer-contact-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-contact-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-items i {
  color: var(--gold-dark);
  margin-top: 0.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   18. MODALS, DRAWERS & LIGHTBOX
   ========================================================================== */
.modal-overlay,
.sample-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 35, 24, 0.45);
  backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active,
.sample-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2001;
  box-shadow: var(--shadow-modal);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-box {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-alt);
  border: none;
  color: var(--text-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: #fee2e2;
  color: #dc2626;
}

/* Sample Drawer */
.sample-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #ffffff;
  z-index: 2002;
  box-shadow: -8px 0 30px rgba(13, 35, 24, 0.15);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
}

.sample-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-title {
  font-size: 1.2rem;
  color: var(--emerald-primary);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.drawer-close {
  background: var(--bg-alt);
  border: none;
  color: var(--text-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

.sample-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.sample-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fdfbf7;
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: var(--radius-xs);
  padding: 0.75rem 1rem;
}

.sample-item-info h4 {
  font-size: 0.875rem;
  color: var(--emerald-primary);
}

.sample-item-info p {
  font-size: 0.725rem;
  color: var(--text-muted);
}

.sample-remove-btn {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 0.35rem;
}

/* Gallery Lightbox Modal (Photos & 4K Videos) */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 28, 19, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-wrap {
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: lightbox-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightbox-pop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.lightbox-media-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.lightbox-media-box img {
  width: auto;
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--border-gold);
}

.lightbox-media-box video {
  width: 100%;
  max-height: 75vh;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--border-gold);
  background: #000000;
}

.lightbox-caption {
  color: #ffffff;
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  background: rgba(13, 74, 45, 0.6);
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.3);
  max-width: 90%;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #ffffff;
  color: var(--emerald-primary);
  border: 1px solid var(--border-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2600;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
  background: #dc2626;
  color: #ffffff;
  border-color: #dc2626;
  transform: rotate(90deg) scale(1.1);
}

/* ==========================================================================
   19. RESPONSIVE MEDIA QUERIES (Mobile-First overrides)
   ========================================================================== */
@media (max-width: 1024px) {
  :root {
    --container-max: 960px;
  }
  .hero-headline-centered { font-size: 2.85rem; }
  .hero-cards-centered-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid,
  .export-layout-grid,
  .pack-headline-row,
  .product-detail-layout,
  .contact-split-grid,
  .tour-stage-card,
  .milling-tour-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .turnover-banner-grid,
  .infra-grid,
  .pack-grid-deluxe,
  .products-grid,
  .founders-grid,
  .why-us-grid,
  .testimonials-grid,
  .licenses-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-timeline-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --container-max: 100%;
  }

  html { font-size: 14px; }

  body {
    padding-bottom: 70px; /* Space for Bottom Nav Bar */
  }

  .nav-links, .nav-actions, .mobile-menu-toggle { display: none !important; }

  .hero-headline-centered { font-size: 2.2rem; }
  .hero-tagline-centered { font-size: 0.975rem; }
  .hero-cards-centered-grid { grid-template-columns: 1fr; gap: 1rem; }

  .hero-port-corridor-strip {
    flex-direction: column;
    padding: 0.85rem;
    border-radius: var(--radius-md);
  }
  .corridor-items { justify-content: center; }

  .hero-ctas-centered { flex-direction: column; width: 100%; }
  .hero-ctas-centered .btn { width: 100%; }

  .pack-luxury-wrapper,
  .contact-form-deluxe-card {
    padding: 2rem 1.25rem;
  }

  .pack-kpis-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title { font-size: 1.85rem; }

  .turnover-banner-grid,
  .products-grid,
  .founders-grid,
  .why-us-grid,
  .testimonials-grid,
  .gallery-grid,
  .infra-grid,
  .pack-grid-deluxe,
  .licenses-grid,
  .form-grid-2col,
  .form-grid-3col {
    grid-template-columns: 1fr;
  }

  .turnover-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 0;
  }
  .turnover-item:last-child {
    border-bottom: none;
  }

  .tour-timeline-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-experience-badge {
    position: static;
    margin-top: 1rem;
    width: 100%;
  }

  .product-gallery-deluxe {
    position: static;
  }

  /* Map Stacking fixes */
  .map-wrapper {
    min-height: 400px;
    height: auto;
  }
  .map-stats-panel {
    position: static;
    transform: none;
    margin: 2rem auto 0;
    max-width: 100%;
  }
  .dist-map {
    height: auto;
  }
  
  /* Bottom Navigation Bar Styles */
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-subtle);
    box-shadow: 0 -4px 15px rgba(13, 74, 45, 0.05);
    z-index: 9999;
    height: 70px;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    width: 100%;
    height: 100%;
    transition: var(--transition);
  }

  .bottom-nav-item i {
    font-size: 1.25rem;
    transition: var(--transition);
  }

  .bottom-nav-item.active,
  .bottom-nav-item:hover {
    color: var(--emerald-primary);
  }

  .bottom-nav-item.active i {
    transform: translateY(-2px);
    color: var(--gold-primary);
  }
}

@media (max-width: 640px) {
  .hero-headline-centered { font-size: 2.1rem; }
  .process-stage-card {
    flex-direction: column;
    text-align: center;
  }
  .stage-number {
    margin: 0 auto 1rem;
  }
  .hero-section {
    padding-top: 4.5rem;
  }
  .section-padding {
    padding: 3.5rem 0;
  }
  .tour-timeline-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-headline-centered { font-size: 1.8rem; }
  .section-title { font-size: 1.7rem; }
  .trust-flex {
    align-items: center;
    text-align: center;
  }
  .trust-badges-grid {
    justify-content: center;
  }
  .pack-kpis-box {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}
