/* PT. Nusantara Primer Niaga - Nusaga Official Brand Identity CSS */
:root {
  /* Brand Primary: Obsidian Slate and Architectural Charcoal */
  --espresso-950: #0B0D12;
  --espresso-900: #11141C;
  --espresso-800: #1A1E29;
  --espresso-700: #262C3A;
  --espresso-600: #3A4254;
  
  --brown-900: #0B0D12;
  --brown-800: #11141C;
  --brown-700: #1A1E29;
  --brown-600: #262C3A;
  --brown-500: #3A4254;
  --brown-400: #525E75;

  /* Brand Secondary: Disciplined Gold Accent */
  --gold-700: #8E6E32;
  --gold-600: #B08C45;
  --gold-500: #C5A059; /* Official Logo Gold */
  --gold-400: #D1B06B;
  --gold-300: #DEC58E;
  --gold-200: #ECDDBA;
  --gold-100: #F7F0DF;
  --gold-50:  #FCF9F2;

  /* Backgrounds: Clean Architectural Surfaces */
  --cream-50:  #FFFFFF;
  --cream-100: #F8F9FB;
  --cream-200: #F1F3F6;
  --cream-300: #E2E6EC;
  
  /* Renewable Biomass & Sustainable Agriculture */
  --green-700: #183423;
  --green-600: #224730;
  --green-500: #2D5A3D;
  --green-400: #407A54;
  
  --white: #FFFFFF;
  --text-primary: #11141A;
  --text-secondary: #3A4254;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Systemic Layer Shadows */
  --shadow-sm: 0 1px 3px rgba(17, 20, 26, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(17, 20, 26, 0.08);
  --shadow-lg: 0 12px 28px -4px rgba(17, 20, 26, 0.1);
  --shadow-xl: 0 20px 40px -6px rgba(17, 20, 26, 0.14);
  --shadow-gold: 0 8px 24px -4px rgba(197, 160, 89, 0.25);
  --shadow-gold-lg: 0 16px 36px -6px rgba(197, 160, 89, 0.32);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  
  --container-max: 1280px;
  --container-padding: 2rem;
  --section-padding: 5rem 0;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--cream-100);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background-color: var(--gold-500);
  color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-600);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--gold-500);
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brown-800);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--gold-600); }
.text-green { color: var(--green-600); }
.text-white { color: var(--white); }
.lead { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 2rem; font-weight: 300;}
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Layout & Grid Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-sm {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section { padding: var(--section-padding); }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 8rem 0; }

.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 2rem; }
.gap-6 { gap: 3rem; }

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

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Margin and Padding Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 4rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.relative { position: relative; }
.absolute { position: absolute; }
.rounded { border-radius: var(--radius-md); }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-gold { background: var(--gold-100); color: var(--gold-600); }
.badge-green { background: #e8f5e9; color: var(--green-600); }
.badge-brown { background: var(--brown-100); color: var(--brown-800); }
.gold-line {
  width: 60px;
  height: 2px;
  background-color: var(--gold-500);
  margin: 1rem auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  font-family: var(--font-body);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #E6CE9B 0%, #C5A059 45%, #9A7A30 100%);
  color: #1A0E08;
  font-weight: 600;
  box-shadow: 0 6px 20px -2px rgba(197, 160, 89, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F0DBB0 0%, #D4AF37 45%, #A8833B 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(197, 160, 89, 0.6);
  color: #160E0B;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold-500);
  color: var(--gold-600);
  font-weight: 600;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #E6CE9B 0%, #C5A059 100%);
  border-color: transparent;
  color: #1A0E08;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline.btn-light {
  border-color: rgba(197, 160, 89, 0.6);
  color: #FAF4E5;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.btn-outline.btn-light:hover {
  background: #C5A059;
  border-color: #C5A059;
  color: #1A0E08;
}

.btn-dark {
  background: var(--espresso-900);
  color: var(--white);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.btn-dark:hover {
  background: var(--espresso-950);
  border-color: var(--gold-500);
  color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso-800);
}

.btn-ghost:hover {
  color: var(--gold-600);
  background: rgba(197, 160, 89, 0.08);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* Luxury Text Gradient Utility */
.text-gold-gradient {
  background: linear-gradient(135deg, #F5E5B8 0%, #C5A059 50%, #9A7A30 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
  background: linear-gradient(180deg, rgba(22, 14, 11, 0.85) 0%, rgba(22, 14, 11, 0) 100%);
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(35, 23, 20, 0.96);
  padding: 0.85rem 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
  margin-right: clamp(0.75rem, 1.5vw, 1.5rem);
}

.navbar-logo .logo-img {
  height: 48px;
  max-height: 48px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: max-height 0.2s ease, max-width 0.2s ease;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
}

.nav-link {
  color: #FAF4E5;
  font-weight: 500;
  font-size: 0.925rem;
  position: relative;
  letter-spacing: 0.02em;
  padding: 0.4rem 0;
  transition: color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-400);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

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

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(35, 23, 20, 0.98);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  padding: 0.6rem 0;
  min-width: 220px;
  display: none;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.2s ease;
}

.dropdown-link {
  display: block;
  padding: 0.6rem 1.25rem;
  color: #FAF4E5;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-300);
  padding-left: 1.5rem;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(22, 14, 11, 0.75);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: 9999px;
  padding: 3px 5px;
  gap: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid transparent;
  color: #D6C8BA;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 9999px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
}

.lang-btn:hover {
  color: #FFFFFF;
  background: rgba(197, 160, 89, 0.2);
  border-color: rgba(197, 160, 89, 0.3);
}

.lang-btn.active {
  background: linear-gradient(135deg, #E6CE9B 0%, #C5A059 50%, #9A7A30 100%);
  color: #160E0B;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(197, 160, 89, 0.45);
  border-color: rgba(255, 255, 255, 0.35);
}

.flag-circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.flag-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lang-text {
  display: inline-block;
  font-family: var(--font-body);
}

.lang-divider {
  display: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #FAF4E5;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background-color: var(--gold-400); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background-color: var(--gold-400); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--espresso-950);
  border-left: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: var(--shadow-xl);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  color: #FAF4E5;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-link:hover {
  color: var(--gold-400);
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .navbar-inner {
    gap: 0.85rem;
  }
  .navbar-logo {
    margin-right: 0.85rem;
  }
  .navbar-logo .logo-img {
    max-width: 150px;
    height: 42px;
  }
  .navbar-nav {
    gap: 0.85rem;
  }
  .nav-link {
    font-size: 0.86rem;
    padding: 0.35rem 0;
  }
  .nav-cta {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.825rem !important;
    white-space: nowrap;
  }
}

@media (max-width: 1024px) {
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .navbar-actions { gap: 0.75rem; }
  .navbar-logo .logo-img {
    height: 42px;
    max-height: 42px;
    max-width: 160px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 0;
  }
  .navbar.scrolled {
    padding: 0.6rem 0;
  }
  .navbar-inner {
    gap: 0.5rem;
  }
  .navbar-logo .logo-img {
    height: 38px;
    max-height: 38px;
    max-width: 145px;
  }
  .navbar-actions {
    gap: 0.5rem;
  }
  .nav-cta {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.825rem !important;
    white-space: nowrap;
  }
  .hero-actions {
    gap: 0.75rem;
  }
  .hero-actions .btn-lg {
    padding: 0.75rem 1.35rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .navbar-logo .logo-img {
    height: 32px;
    max-height: 32px;
    max-width: 130px;
  }
  .navbar-inner {
    gap: 0.35rem;
  }
  .navbar-actions {
    gap: 0.35rem;
  }
  .nav-cta {
    display: none; /* In compact view, CTA is available inside the open mobile drawer */
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .hero-actions .btn-lg {
    width: 100%;
    max-width: 290px;
    justify-content: center;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.925rem !important;
  }
}

@media (max-width: 360px) {
  .navbar-logo .logo-img {
    height: 28px;
    max-height: 28px;
    max-width: 110px;
  }
  .lang-btn {
    padding: 3px 6px;
    font-size: 0.68rem;
  }
}

/* Dynamic Hero Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.2s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-slide-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6) contrast(1.08);
  transform: scale(1.02);
  transition: transform 9s ease-out;
}

.hero-slide.active .hero-slide-media {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none !important;
  }
  .hero-slide-media,
  .hero-slide.active .hero-slide-media {
    transform: none !important;
    transition: none !important;
  }
  .hero-bg {
    transition: none !important;
    transform: none !important;
  }
}

/* Product Detail Mixed Media Gallery */
.thumb-video-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 13, 18, 0.45);
  color: #FAF4E5;
  border-radius: inherit;
  transition: background 0.2s ease;
}

.thumb:hover .thumb-video-icon {
  background: rgba(197, 160, 89, 0.6);
}

/* Subtle Contextual Size Badge */
.admin-size-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.85;
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--espresso-950);
  padding: 6.5rem 0 3.5rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.36;
  transform: scale(1.03);
  transition: transform 12s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(11, 13, 18, 0.88) 0%, rgba(11, 13, 18, 0.78) 45%, rgba(11, 13, 18, 0.94) 100%),
              radial-gradient(circle at 50% 35%, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 980px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  border: 1px solid rgba(197, 160, 89, 0.5);
  background: rgba(17, 20, 28, 0.75);
  backdrop-filter: blur(8px);
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hero-title {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 4px 28px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  color: #F1E9DE;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 800px;
  margin-inline: auto;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 2px 14px rgba(0, 0, 0, 0.6);
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Stats & Trust Cards */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

@media (min-width: 768px) {
  .hero-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.hero-stat-card:hover {
  background: rgba(197, 160, 89, 0.09);
  border-color: #C5A059;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(197, 160, 89, 0.25);
}

.hero-stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #F8E8C0 0%, #C5A059 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.hero-stat-label {
  color: #D6C8BA;
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==================== PRODUCT CARDS ==================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-product {
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 30px -4px rgba(35, 23, 20, 0.06);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-product:hover {
  transform: translateY(-8px);
  border-color: #C5A059;
  box-shadow: 0 20px 45px -8px rgba(197, 160, 89, 0.3), 0 0 0 1px rgba(197, 160, 89, 0.4);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
  position: relative;
  background: var(--espresso-950);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-img img,
.group:hover .card-img img {
  transform: scale(1.08);
}

.product-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(35, 23, 20, 0.88);
  backdrop-filter: blur(8px);
  color: #F8E8C0;
  border: 1px solid rgba(197, 160, 89, 0.45);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.product-category-badge.badge--green {
  background: rgba(30, 61, 41, 0.9);
  border-color: rgba(74, 170, 100, 0.45);
  color: #D1FAE5;
}

.product-origin-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  color: var(--espresso-900);
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

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

.card-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--espresso-900);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.card-specs-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.spec-pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  background: var(--cream-100);
  color: var(--espresso-700);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 6px;
}

.card-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--cream-200);
  background: var(--cream-50);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

/* Sections */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  color: var(--gold-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* About Section */
.about-section {
  background: var(--white);
}

.mission-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.mission-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  margin-top: 8px;
}

.vision-card {
  background: var(--brown-800);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.vision-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-200);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--cream-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
}

/* Stats */
.stats-bar {
  background: var(--brown-900);
  color: var(--white);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item h3 {
  color: var(--gold-500);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--cream-200);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(44, 24, 16, 0.9), rgba(44, 24, 16, 0.9)), url('../images/cta-bg.jpg') center/cover;
  text-align: center;
  padding: 6rem 0;
  color: var(--white);
}

.cta-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-subtitle {
  color: var(--cream-200);
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
  max-width: 600px;
  margin-inline: auto;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: dashed 2px var(--gold-300);
    z-index: 1;
  }
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--gold-500);
  color: var(--gold-600);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
}

.step:hover .step-number {
  background: var(--gold-500);
  color: var(--white);
}

/* Market Grid */
.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.market-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--gold-500);
}

/* Quality & Certifications */
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.cert-badge {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  filter: grayscale(100%);
  transition: var(--transition);
}

.cert-badge:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown-800);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold-500);
  transition: var(--transition);
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px; /* arbitrary large value */
}

/* Product Detail */
.product-hero {
  background: var(--cream-200);
  padding: 10rem 0 4rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .product-detail-grid { grid-template-columns: 1fr 1fr; }
}

.product-gallery-main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.product-gallery-thumbs {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}

.gallery-thumb.active {
  border-color: var(--gold-500);
}

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

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.product-specs-table th, .product-specs-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--cream-200);
  text-align: left;
}

.product-specs-table th {
  color: var(--brown-800);
  font-weight: 600;
  width: 40%;
}

.product-specs-table td {
  color: var(--text-muted);
}

.product-applications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.app-chip {
  background: var(--cream-200);
  color: var(--brown-800);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.product-export-info {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-200);
  margin-top: 2rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--brown-800);
}

.form-control, .form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--white);
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-error {
  color: #e53e3e;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.has-error .form-control {
  border-color: #e53e3e;
}

.form-group.has-error .form-error {
  display: block;
}

.contact-form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  max-width: 800px;
  margin: -5rem auto 5rem;
  position: relative;
  z-index: 10;
}

/* Footer */
.footer {
  background: var(--brown-900);
  color: var(--cream-200);
  padding-top: 5rem;
}

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

@media (min-width: 768px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-brand h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--cream-200);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--gold-500);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: var(--gold-500);
  margin-top: 4px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold-500);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
  100% { transform: translateX(-50%) translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Admin Styles (Scoped) */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: #f4f6f8;
}

.admin-sidebar {
  width: 260px;
  background: var(--brown-900);
  color: var(--white);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.admin-sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-sidebar-header h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0;
}

.admin-nav {
  padding: 1rem 0;
  flex: 1;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--cream-200);
  transition: var(--transition);
}

.admin-nav-item:hover, .admin-nav-item.active {
  background: rgba(255,255,255,0.05);
  color: var(--gold-400);
  border-left: 4px solid var(--gold-500);
}

.admin-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.admin-header {
  background: var(--white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.admin-content {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.admin-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.admin-table-wrapper {
  overflow-x: auto;
}

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

.admin-table th, .admin-table td {
  padding: 1rem;
  border-bottom: 1px solid #eaeaea;
  text-align: left;
}

.admin-table th {
  font-weight: 600;
  color: var(--brown-800);
  background: #fafafa;
}

.admin-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}
.admin-badge.new { background: #e3f2fd; color: #1976d2; }
.admin-badge.contacted { background: #fff3e0; color: #f57c00; }
.admin-badge.closed { background: #e8f5e9; color: #388e3c; }

.admin-upload-area {
  border: 2px dashed #ccc;
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.admin-upload-area:hover {
  border-color: var(--gold-500);
  background: #fafafa;
}

.admin-image-preview {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.admin-image-preview img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

/* =============================================
   PAGE HEADER (all interior pages)
   ============================================= */
.page-header {
  position: relative;
  padding: 8rem 0 4.5rem;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  background-color: var(--espresso-950);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background: url('../images/page-header-bg.jpg') center/cover no-repeat;
  opacity: 0.25;
  transform: scale(1.05);
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-header:hover .page-header-bg {
  transform: scale(1.0);
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(197, 160, 89, 0.12), transparent 70%),
              linear-gradient(180deg, rgba(22, 14, 11, 0.8) 0%, rgba(35, 23, 20, 0.95) 100%);
}
.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-header-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--white);
  margin: 0.5rem 0;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.page-header-sub {
  color: var(--gold-300);
  font-size: 1.15rem;
  margin: 0 auto;
  max-width: 650px;
  font-weight: 400;
}
.page-header--product .page-header-bg {
  filter: brightness(0.4);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.breadcrumb-link {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-link:hover { color: var(--gold-300); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); font-size: 0.875rem; }
.breadcrumb span:last-child { color: rgba(255,255,255,0.85); font-size: 0.875rem; }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header.animate-on-scroll { }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.75rem;
}
.section-label--gold { color: var(--gold-400); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--brown-800);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0.75rem auto 0;
}
.section--cream { background-color: var(--cream-200); }
.section--dark {
  background: linear-gradient(135deg, var(--brown-900), var(--brown-800));
}
.section-header--light .section-title { color: var(--white); }
.text-cream { color: var(--cream-100); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-detail-grid { grid-template-columns: 1fr 1fr; }
}
.about-detail-visual { }
.about-img-stack { position: relative; }
.about-img-card--main {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-300);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-card--main img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder-content {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--text-muted);
}
.img-placeholder-mode .img-placeholder-content { display: flex; }
.about-img-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--gold-500);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

/* Vision Mission */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .vm-grid { grid-template-columns: 1fr 1fr; }
}
.vm-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.vm-card--vision { border-top: 4px solid var(--gold-500); }
.vm-card--mission { border-top: 4px solid var(--green-500); }
.vm-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--cream-200);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-600);
}
.vm-card--mission .vm-icon { color: var(--green-600); }
.vm-text { font-size: 1.05rem; line-height: 1.7; color: var(--text-secondary); font-style: italic; border-left: 3px solid var(--gold-300); padding-left: 1rem; margin: 0; }
.mission-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.mission-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--text-secondary); }
.mission-check { color: var(--green-500); flex-shrink: 0; margin-top: 3px; width: 18px; height: 18px; }

/* Features Grid (Why Nusaga) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--cream-200);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-600);
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; font-family: var(--font-body); }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.filter-label { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); }
.filter-btn {
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1.5px solid var(--cream-300);
  background: var(--white);
  text-decoration: none;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--brown-800);
  color: var(--gold-300);
  border-color: var(--brown-800);
}
.products-grid--large {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card-forms {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}
.badge--green { background: rgba(74,124,89,0.12); color: var(--green-600); }
.badge--light { background: rgba(255,255,255,0.2); color: var(--white); border: 1px solid rgba(255,255,255,0.4); }

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .product-detail-grid { grid-template-columns: 1fr 1.2fr; }
}
.product-gallery-col { position: sticky; top: 100px; }
.product-main-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-200);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.thumb {
  width: 64px; height: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--cream-300);
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.2s;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active, .thumb:hover { border-color: var(--gold-500); }

.product-export-card {
  background: var(--brown-900);
  border-radius: 14px;
  padding: 1.5rem;
  color: var(--white);
}
.product-export-card h3 {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.95rem; font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.export-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 1rem;
}
.export-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.export-value { font-size: 0.85rem; color: var(--white); text-align: right; line-height: 1.4; }
.w-full { width: 100%; }
.mt-4 { margin-top: 1.5rem; }

.product-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--brown-800);
  margin-bottom: 0.5rem;
}
.product-forms-row {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--text-muted);
  margin-bottom: 1rem;
}
.forms-label { font-weight: 600; }
.product-description { margin-bottom: 1.5rem; color: var(--text-secondary); line-height: 1.75; }
.product-section { margin-bottom: 1.75rem; }
.product-section-title {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1rem; font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream-300);
}
.product-section-title svg { width: 18px; height: 18px; color: var(--gold-500); }
.app-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.app-tag {
  display: inline-flex; align-items: center;
  padding: 0.35rem 0.9rem;
  background: var(--cream-200);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--brown-700);
  font-weight: 500;
}
.specs-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.specs-table tr:nth-child(even) { background: var(--cream-100); }
.spec-key {
  padding: 0.6rem 1rem 0.6rem 0;
  font-weight: 600;
  color: var(--text-muted);
  width: 40%;
  vertical-align: top;
}
.spec-value { padding: 0.6rem 0; color: var(--text-primary); }
.packaging-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.packaging-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-secondary); }
.packaging-list svg { width: 14px; height: 14px; color: var(--gold-500); flex-shrink: 0; }
.product-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.info-notice { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; background: var(--cream-200); border-radius: 8px; font-size: 0.875rem; color: var(--text-muted); }
.product-extra-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media(min-width:768px){ .product-extra-grid { grid-template-columns: 1fr 1fr; } }
.sub-section-title {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.1rem; color: var(--brown-800); margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700;
}
.sub-section-title svg { width: 20px; height: 20px; color: var(--gold-500); }
.cert-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  background: var(--gold-100);
  color: var(--gold-700, var(--gold-600));
  font-size: 0.8rem; font-weight: 600;
}
.cert-badge svg { width: 13px; height: 13px; }
.doc-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.doc-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-secondary); }

/* =============================================
   EXPORT PROCESS PAGE
   ============================================= */
.process-steps-vertical { max-width: 800px; margin: 0 auto; }
.process-step-v {
  display: flex;
  gap: 2rem;
  margin-bottom: 0;
}
.step-v-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-v-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--brown-800);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--gold-100);
}
.step-v-circle svg { width: 22px; height: 22px; }
.step-v-line {
  width: 2px;
  flex: 1;
  min-height: 2rem;
  background: linear-gradient(to bottom, var(--gold-300), var(--cream-300));
  margin: 6px 0;
}
.step-v-content {
  padding-bottom: 2.5rem;
  flex: 1;
}
.step-v-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; color: var(--gold-500); text-transform: uppercase; }
.step-v-title { font-size: 1.2rem; font-weight: 700; color: var(--brown-800); font-family: var(--font-body); margin: 0.25rem 0 0.5rem; }
.step-v-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }

.shipping-info-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media(min-width:768px){ .shipping-info-grid { grid-template-columns: 1fr 1fr; } }
.shipping-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-200);
}
.shipping-icon {
  width: 48px; height: 48px;
  background: var(--gold-100);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-600);
  margin-bottom: 1rem;
}
.shipping-icon svg { width: 22px; height: 22px; }
.shipping-card h3 { font-size: 1rem; font-weight: 700; color: var(--brown-800); margin-bottom: 1.25rem; font-family: var(--font-body); }
.shipping-terms { display: flex; flex-direction: column; gap: 1rem; }
.term-item { padding: 1rem; background: var(--cream-100); border-radius: 10px; border-left: 3px solid var(--gold-400); }
.term-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--brown-800); }
.term-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.ports-list { display: flex; flex-direction: column; gap: 0.75rem; }
.port-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; background: var(--cream-100); border-radius: 10px; }
.port-item svg { width: 18px; height: 18px; color: var(--gold-500); }
.port-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--brown-800); margin: 0; }
.port-item p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.doc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--cream-200);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.doc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.doc-icon { width: 32px; height: 32px; color: var(--gold-500); }
.doc-name { font-size: 0.8rem; font-weight: 600; color: var(--brown-700); line-height: 1.4; }

/* =============================================
   QUALITY PAGE
   ============================================= */
.quality-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media(min-width:1024px){ .quality-intro-grid { grid-template-columns: 1.2fr 1fr; } }
.quality-visual { display: flex; justify-content: center; }
.quality-badge-large {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown-800), var(--brown-900));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 1rem; padding: 2rem;
  box-shadow: var(--shadow-xl);
}
.quality-badge-large svg { width: 56px; height: 56px; color: var(--gold-400); }
.quality-badge-large span { color: var(--gold-300); font-size: 0.9rem; font-weight: 600; line-height: 1.4; }

.qc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.qc-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-200);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.qc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.qc-step-num {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 3rem;
  font-weight: 800;
  color: var(--cream-300);
  font-family: var(--font-heading);
  line-height: 1;
}
.qc-icon {
  width: 48px; height: 48px;
  background: var(--gold-100);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-600);
  margin-bottom: 1rem;
}
.qc-icon svg { width: 22px; height: 22px; }
.qc-card h3 { font-size: 1rem; font-weight: 700; color: var(--brown-800); margin-bottom: 0.5rem; font-family: var(--font-body); }
.qc-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.cert-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-200);
  transition: transform 0.2s;
}
.cert-card:hover { transform: translateY(-3px); }
.cert-icon {
  width: 56px; height: 56px;
  background: var(--gold-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-600);
  margin: 0 auto 1rem;
}
.cert-icon svg { width: 26px; height: 26px; }
.cert-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; font-family: var(--font-body); color: var(--brown-800); }
.cert-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.cert-notice {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--cream-200);
  border-radius: 10px;
  border: 1px solid var(--cream-300);
}
.cert-notice svg { color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.cert-notice p { font-size: 0.875rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }

/* =============================================
   GLOBAL MARKET PAGE
   ============================================= */
.global-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media(min-width:1024px){ .global-intro-grid { grid-template-columns: 1.2fr 1fr; } }
.global-readiness { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.readiness-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--text-secondary); }
.readiness-check { color: var(--green-500); width: 18px; height: 18px; flex-shrink: 0; }
.global-map-large {
  background: linear-gradient(135deg, var(--brown-800), var(--brown-900));
  border-radius: 20px;
  padding: 3rem 2rem;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.world-map-visual { position: relative; width: 100%; }
.world-map-icon { width: 100px; height: 100px; color: rgba(201,168,76,0.2); display: block; margin: 0 auto 1.5rem; }
.world-map-dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem; }
.wm-dot {
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}
.wm-dot--origin {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold-500);
  color: var(--gold-300);
  font-weight: 600;
}

.market-regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.market-region-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-200);
  transition: transform 0.2s, box-shadow 0.2s;
}
.market-region-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.market-region-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.market-emoji { font-size: 1.75rem; }
.market-region-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--brown-800); margin: 0; font-family: var(--font-body); }
.market-region-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.country-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.country-tag {
  padding: 0.2rem 0.6rem;
  background: var(--cream-200);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.country-tag--more { background: var(--gold-100); color: var(--gold-600); }
.market-disclaimer {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--cream-200);
  border-radius: 10px;
  border: 1px solid var(--cream-300);
}
.market-disclaimer svg { color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.market-disclaimer p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

.export-products-showcase {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.export-product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.2s;
  width: 140px;
}
.export-product-item:hover { transform: translateY(-4px); }
.epi-img {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-200);
  border: 3px solid var(--cream-300);
  transition: border-color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.export-product-item:hover .epi-img { border-color: var(--gold-500); }
.epi-img img { width: 100%; height: 100%; object-fit: cover; }
.epi-name { font-size: 0.85rem; font-weight: 600; color: var(--brown-800); text-align: center; }

/* =============================================
   FAQ PAGE
   ============================================= */
.faq-accordion { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.faq-item {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--cream-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--brown-800);
  font-family: var(--font-body);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--cream-100); }
.faq-question[aria-expanded="true"] { background: var(--cream-100); color: var(--gold-600); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gold-500);
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; }
.faq-answer:not([hidden]) { display: block; }
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-contact-nudge { margin-top: 3rem; }
.faq-contact-card {
  background: var(--cream-200);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.faq-contact-icon { width: 48px; height: 48px; color: var(--gold-500); flex-shrink: 0; }
.faq-contact-card h3 { font-size: 1rem; font-weight: 700; color: var(--brown-800); margin-bottom: 0.25rem; font-family: var(--font-body); }
.faq-contact-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.faq-contact-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-left: auto; }
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-icon { width: 56px; height: 56px; display: block; margin: 0 auto 1rem; color: var(--cream-300); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media(min-width:1024px){ .contact-grid { grid-template-columns: 1fr 2fr; } }
.contact-info h2, .contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--brown-800);
  margin-bottom: 0.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--cream-200);
}
.contact-detail-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-600);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail h3 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 0.25rem; font-family: var(--font-body); }
.contact-detail address { font-style: normal; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }
.contact-link { color: var(--text-secondary); font-size: 0.9rem; }
.contact-link:hover { color: var(--gold-600); }
.contact-docs { margin: 1.25rem 0; }
.contact-docs h3 { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; font-family: var(--font-body); }
.doc-dl-link {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--gold-600);
  text-decoration: none;
  border-bottom: 1px solid var(--cream-200);
}
.doc-dl-link svg { width: 16px; height: 16px; }
.contact-whatsapp-cta { margin-top: 1.5rem; }

/* Inquiry Form */
.inquiry-form { margin-top: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media(min-width:640px){ .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 0; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brown-700);
  margin-bottom: 0.4rem;
}
.required { color: #dc2626; }
.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--cream-300);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235C3317' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.form-textarea { min-height: 130px; resize: vertical; }
.has-error .form-control, .has-error .form-select { border-color: #dc2626; }
.form-error { display: block; font-size: 0.78rem; color: #dc2626; margin-top: 0.3rem; }
.form-required-note { font-size: 0.8rem; color: var(--text-muted); margin: 0.5rem 0 1rem; }
.form-error-summary {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  font-size: 0.875rem;
  color: #991b1b;
  margin-bottom: 1.5rem;
}
.form-error-summary svg { width: 18px; height: 18px; flex-shrink: 0; }
.contact-form-wrap { background: var(--white); border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--cream-200); }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, var(--brown-900) 0%, var(--brown-800) 100%); }
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title { font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--white); margin-bottom: 1rem; }
.cta-subtitle { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-light { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-light:hover { background: rgba(255,255,255,0.2); color: var(--white); }

/* Animation */
.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE TWEAKS
   ============================================= */
@media (max-width: 768px) {
  .product-cta-group { flex-direction: column; }
  .faq-contact-card { flex-direction: column; }
  .faq-contact-actions { margin-left: 0; }
  .contact-form-wrap { padding: 1.5rem; }
  .page-header { padding: 8rem 0 3rem; }
  .process-step-v { gap: 1rem; }
}

/* =============================================
   ACCESSIBILITY & SKIP NAV
   ============================================= */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold-500);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-nav:focus {
  top: 1rem;
}

/* =============================================
   FLASH MESSAGES
   ============================================= */
.flash-container {
  position: fixed;
  top: 5.5rem;
  right: 1.5rem;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 420px;
  width: calc(100% - 3rem);
}
.flash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 500;
  animation: slideInRight 0.3s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.flash-success {
  background: #ecfdf5;
  color: #065f46;
  border-left: 4px solid #059669;
}
.flash-error {
  background: #fef2f2;
  color: #991b1b;
  border-left: 4px solid #dc2626;
}
.flash-warning {
  background: #fffbeb;
  color: #92400e;
  border-left: 4px solid #d97706;
}
.flash-info {
  background: #eff6ff;
  color: #1e40af;
  border-left: 4px solid #2563eb;
}
.flash-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: inherit;
  opacity: 0.6;
  padding: 0;
  line-height: 1;
}
.flash-close:hover {
  opacity: 1;
}

/* =============================================
   NAVBAR DROPDOWN (DESKTOP)
   ============================================= */
.nav-dropdown {
  position: relative;
}
.nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  margin-left: 0.15rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  vertical-align: middle;
}
.nav-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}
.nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.15);
  border: 1px solid var(--cream-300);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brown-800);
  transition: all 0.15s ease;
}
.dropdown-link:hover {
  background: var(--cream-100);
  color: var(--gold-600);
  padding-left: 1.5rem;
}

/* =============================================
   MOBILE MENU POLISH
   ============================================= */
.mobile-menu {
  overflow-y: auto;
}
.mobile-sub {
  font-size: 0.95rem;
  padding-left: 1rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.mobile-cta {
  color: var(--gold-600) !important;
  font-weight: 700;
}
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-200);
}

/* =============================================
   FOOTER GRID & DETAILS
   ============================================= */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 3rem;
  }
}
.footer-logo-brand {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 2px;
}
.footer-company-name {
  font-weight: 600;
  color: var(--white);
  margin: 0.75rem 0 0.25rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.footer-address {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold-300);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-heading-sm {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-400);
  margin: 1.25rem 0 0.5rem;
  font-weight: 700;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-contact-link:hover {
  color: var(--gold-400);
}
.footer-docs {
  margin-top: 1rem;
}
.footer-doc-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.85rem;
  color: var(--gold-300);
  transition: color 0.2s;
}
.footer-doc-link:hover {
  color: var(--gold-200);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-400);
  border: 1px solid rgba(197, 160, 89, 0.25);
  transition: all 0.25s ease;
  text-decoration: none;
}
.social-link:hover {
  background: var(--gold-500);
  color: #0B0D12;
  border-color: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.35);
}
.footer-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-right {
  margin: 0;
}

/* =============================================
   BACK TO TOP & FLOATING WHATSAPP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brown-800);
  color: var(--gold-400);
  border: 1px solid var(--gold-500);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top svg {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}
.back-to-top:hover {
  background: var(--gold-500);
  border-color: var(--gold-400);
  color: #0B0D12;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.45);
}
.back-to-top:hover svg {
  color: #0B0D12;
  transform: translateY(-2px);
}

.whatsapp-float-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #25D366 0%, #1ea952 100%);
  color: #ffffff !important;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.925rem;
  border: 1.5px solid rgba(197, 160, 89, 0.65);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(197, 160, 89, 0.5);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: wa-pulse 3s infinite;
}
.whatsapp-float-btn:hover {
  background: linear-gradient(135deg, #2ae06c 0%, #20bd5a 100%);
  color: #ffffff !important;
  transform: translateY(-4px) scale(1.05);
  border-color: #C5A059;
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.55), 0 0 20px rgba(197, 160, 89, 0.6);
}
.whatsapp-float-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

@keyframes wa-pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(197, 160, 89, 0.7);
  }
  50% {
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(197, 160, 89, 0);
  }
}

@media (max-width: 640px) {
  .whatsapp-float-btn span {
    display: none;
  }
  .whatsapp-float-btn {
    padding: 0.85rem;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }
}

/* ==================== WAVE & MOTIF DIVIDERS ==================== */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: translateZ(0);
}
.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
@media (min-width: 768px) {
  .wave-divider svg {
    height: 90px;
  }
}

/* Subtle glow effects */
.glow-gold {
  position: relative;
}
.glow-gold::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(197,160,89,0.5), transparent, rgba(197,160,89,0.3));
  border-radius: inherit;
  z-index: -1;
  opacity: 0.8;
}

