/* ==========================================================================
   Mallowal® Complete High-Conversion Enterprise B2B Design System
   Exact Design as requested in screenshot
   ========================================================================== */

:root {
  --color-primary: #0A2540;          /* Deep Navy */
  --color-primary-dark: #06182B;     /* Dark Navy */
  --color-bg: #FAFAF7;               /* Warm White */
  --color-bg-alt: #F8FAFC;           /* Light Gray Surface */
  --color-card: #FFFFFF;             /* Pure White Card */
  
  --color-heading: #111827;          /* Graphite */
  --color-body: #64748B;             /* Slate Gray */
  --color-border: #E2E8F0;           /* Muted Border */

  --color-cta: #2563EB;              /* Royal Blue */
  --color-cta-hover: #1D4ED8;        /* Royal Blue Hover */
  
  --color-accent-gold: #C8A96A;      /* Champagne Gold */
  --color-gold-bg: rgba(200, 169, 106, 0.1);
  --color-gold-border: rgba(200, 169, 106, 0.35);
  
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --space-8: 8px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;
  --space-96: 96px;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-xs: 0 1px 2px rgba(10, 37, 64, 0.04);
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-card: 0 24px 48px rgba(6, 24, 43, 0.35);
  --shadow-cta: 0 4px 16px rgba(37, 99, 235, 0.28);
  --shadow-drawer: -8px 0 32px rgba(6, 24, 43, 0.4);
  
  --header-height: 88px;

  --ease-psych: cubic-bezier(0.16, 1, 0.3, 1);
  --time-micro: 200ms;
  --time-hover: 250ms;
  --time-reveal: 600ms;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 38px);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:focus-visible {
  outline: 2px solid var(--color-cta) !important;
  outline-offset: 3px !important;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--color-cta);
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 700;
  transition: top var(--time-micro) var(--ease-psych);
}

.skip-link:focus { top: 1rem; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--time-micro) var(--ease-psych);
}

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-24);
  padding-right: var(--space-24);
}

.section {
  padding: var(--space-96) 0;
  position: relative;
}

.section-alt { background-color: var(--color-bg-alt); }
.section-dark { background-color: var(--color-primary); color: #FFFFFF; }
.text-center { text-align: center; }

.section-header {
  margin-bottom: var(--space-48);
}

.section-subtitle {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-8);
}

.title-underline {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-16);
}

.title-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background-color: var(--color-accent-gold);
  border-radius: var(--radius-full);
}

.title-underline-left {
  position: relative;
  margin-bottom: var(--space-16);
}

.title-underline-left::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 48px;
  height: 2px;
  background-color: var(--color-accent-gold);
  border-radius: var(--radius-full);
}

.reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* --- Live Commodity Spot Price Ticker Bar --- */
.price-ticker-bar {
  background-color: var(--color-primary-dark);
  color: #FFFFFF;
  font-size: 0.8125rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  z-index: 999;
}

.ticker-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ticker-items {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.ticker-item strong {
  color: #FFFFFF;
  font-weight: 700;
}

.ticker-trend-up {
  color: #22C55E;
  font-size: 0.75rem;
}

.btn-lock-rate {
  background: var(--color-gold-bg);
  border: 1px solid var(--color-accent-gold);
  color: var(--color-accent-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--time-micro) var(--ease-psych);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.btn-lock-rate:hover {
  background-color: var(--color-accent-gold);
  color: var(--color-primary-dark);
}

/* --- Header Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(250, 250, 247, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo { display: flex; flex-direction: column; flex-shrink: 0; }

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  line-height: 1.05;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-body);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-right-cluster { display: flex; align-items: center; gap: 1.25rem; }
.nav-menu-main { display: flex; align-items: center; gap: 1.35rem; }

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-heading);
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent-gold);
  border-radius: var(--radius-full);
}

/* --- Export Services Dropdown Menu --- */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu,
.nav-dropdown-wrapper:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background-color: var(--color-primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(6, 24, 43, 0.5);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 8px, 0);
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 200ms ease;
  white-space: nowrap;
}

.nav-dropdown-item i {
  color: var(--color-accent-gold);
  width: 18px;
}

.nav-dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.btn-header-quote {
  background-color: var(--color-cta);
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  min-height: 42px;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--time-hover) var(--ease-psych);
  box-shadow: var(--shadow-cta);
  white-space: nowrap;
}

.side-menu-toggle {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

/* Side Menu Drawer Component */
.side-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(6, 24, 43, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--time-hover) var(--ease-psych), 
              visibility var(--time-hover) var(--ease-psych);
}

.side-menu-overlay.open { opacity: 1; visibility: visible; }

.side-menu-drawer {
  position: fixed;
  top: 0;
  right: -360px;
  width: 320px;
  height: 100vh;
  background-color: var(--color-primary-dark);
  color: #FFFFFF;
  z-index: 2001;
  box-shadow: var(--shadow-drawer);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.75rem;
  transition: transform var(--time-reveal) var(--ease-psych);
}

.side-menu-drawer.open { transform: translate3d(-360px, 0, 0); }

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.side-menu-header .brand-name { color: #FFFFFF; font-size: 1.35rem; }

.side-menu-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  cursor: pointer;
}

.side-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.side-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

.side-nav-link i { color: var(--color-accent-gold); width: 22px; }

.side-nav-link:hover, .side-nav-link.active {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.side-menu-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.side-contact-info {
  margin-top: 1.25rem;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.7);
}

.side-contact-info p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.side-contact-info i { color: var(--color-accent-gold); }

/* --- HERO SECTION --- */
.hero {
  position: relative;
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 7rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.35;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0A2540 0%, rgba(10, 37, 64, 0.85) 50%, rgba(10, 37, 64, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 169, 106, 0.15);
  border: 1px solid var(--color-accent-gold);
  color: var(--color-accent-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

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

.hero-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background-color: var(--color-cta);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  min-height: 52px;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-cta);
  transition: all var(--time-hover) var(--ease-psych);
}

.btn-hero-primary:hover {
  background-color: var(--color-cta-hover);
  transform: translate3d(0, -2px, 0);
}

.btn-hero-whatsapp {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  min-height: 52px;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--time-hover) var(--ease-psych);
}

.btn-hero-whatsapp i {
  color: #25D366;
  font-size: 1.2rem;
}

.btn-hero-whatsapp:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.08);
}

/* --- FLOATING STATISTICS CARD --- */
.stats-floating-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -3.5rem;
  margin-bottom: 1rem;
}

.stats-card-container {
  background: var(--color-primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.25rem;
  box-shadow: 0 20px 40px rgba(6, 24, 43, 0.4);
}

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

.stat-card-item {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.stat-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(200, 169, 106, 0.15);
  border: 1px solid var(--color-accent-gold);
  color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.stat-card-info {
  display: flex;
  flex-direction: column;
}

.stat-card-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.stat-card-label {
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* --- CLIENT LOGOS ROW --- */
.client-logo-section {
  padding: 3rem 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.client-logo-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.client-logo-line {
  width: 40px;
  height: 2px;
  background-color: var(--color-accent-gold);
  margin: 0 auto 1.75rem auto;
}

.client-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.client-logo-item {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #94A3B8;
  letter-spacing: 0.5px;
  transition: color var(--time-micro) var(--ease-psych);
}

.client-logo-item:hover {
  color: var(--color-primary);
}

/* --- PRODUCTS EXPANDED BLOCK CATALOG --- */
.product-expanded-block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  align-items: center;
  transition: all var(--time-hover) var(--ease-psych);
}

.product-expanded-block:hover {
  border-color: var(--color-accent-gold);
  box-shadow: 0 16px 36px rgba(10, 37, 64, 0.08);
}

.product-expanded-image {
  height: 100%;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary-dark);
}

.product-expanded-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--time-reveal) var(--ease-psych);
}

.product-expanded-block:hover .product-expanded-image img {
  transform: scale(1.05);
}

/* --- OVERLAY BADGE ON PHOTO --- */
.image-overlay-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 37, 64, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-accent-gold);
  color: var(--color-accent-gold);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.product-expanded-content {
  padding: 2.25rem 2.5rem 2.25rem 0;
}

.products-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* --- TIERED VOLUME MATRIX --- */
.tiered-matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.tier-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-xs);
  transition: all var(--time-hover) var(--ease-psych);
}

.tier-card.featured {
  border: 2px solid var(--color-cta);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.15);
}

.tier-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-cta);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
}

.tier-volume {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 0.3rem;
}

.tier-discount {
  color: var(--color-cta);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.tier-card p {
  font-size: 0.825rem;
  color: var(--color-body);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.tier-card:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: var(--shadow-sm);
}

/* --- HARVEST CALENDAR GRID --- */
.harvest-schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.harvest-quarter-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-xs);
}

.harvest-q-badge {
  display: inline-block;
  background: var(--color-gold-bg);
  border: 1px solid var(--color-gold-border);
  color: var(--color-accent-gold);
  font-size: 0.725rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.harvest-quarter-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.harvest-quarter-card p {
  font-size: 0.825rem;
  color: var(--color-body);
  line-height: 1.5;
}

/* --- SAMPLE BOX REQUEST CARD --- */
.sample-request-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sample-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-accent-gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.sample-request-content h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.sample-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sample-features-list li {
  font-size: 0.875rem;
  color: var(--color-heading);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sample-features-list i {
  color: #22C55E;
}

/* --- DOWNLOADS GRID --- */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.download-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: all var(--time-hover) var(--ease-psych);
}

.download-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--color-gold-bg);
  color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.download-info h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.download-info p {
  font-size: 0.775rem;
  color: var(--color-body);
}

.download-card:hover {
  border-color: var(--color-accent-gold);
  transform: translate3d(0, -3px, 0);
}

/* --- FAQ ACCORDION --- */
.faq-container {
  max-width: 860px;
  margin: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--color-body);
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* --- COMPLIANCE GRID --- */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.compliance-badge-item {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.compliance-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold-bg);
  color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1rem auto;
}

.compliance-badge-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

/* --- MAP & LOGISTICS --- */
.supply-network-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.supply-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.supply-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.supply-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--color-gold-bg);
  color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.supply-item h3 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.supply-item p {
  font-size: 0.85rem;
  color: var(--color-body);
}

@keyframes hqBeaconPulse {
  0% { r: 10px; opacity: 0.9; stroke-width: 2px; }
  100% { r: 34px; opacity: 0; stroke-width: 0px; }
}

@keyframes hqGlowBlink {
  0%, 100% { fill: #2563EB; opacity: 1; }
  50% { fill: #C8A96A; opacity: 0.5; }
}

.hq-pulse-ring {
  stroke: #2563EB;
  fill: none;
  animation: hqBeaconPulse 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hq-blinking-core {
  animation: hqGlowBlink 1.5s infinite ease-in-out;
}

/* --- Sea Port Terminal Cards Mouse Hover Full Grid Highlight --- */
.sea-port-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.sea-port-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C8A96A 0%, #2563EB 100%);
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sea-port-card:hover {
  border-color: var(--color-accent-gold);
  background: #FFFFFF;
  transform: translate3d(0, -6px, 0);
  box-shadow: 0 16px 36px rgba(200, 169, 106, 0.22), 0 4px 16px rgba(10, 37, 64, 0.08);
}

.sea-port-card:hover::before {
  opacity: 1;
}

.port-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold-bg);
  border: 1px solid var(--color-gold-border);
  color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sea-port-card:hover .port-icon-circle {
  background: var(--color-accent-gold);
  color: var(--color-primary-dark);
  transform: scale(1.1) rotate(6deg);
}

/* --- Quick Quote Modal Popup --- */
.quick-quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(6, 24, 43, 0.75);
  backdrop-filter: blur(6px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--time-hover) var(--ease-psych), 
              visibility var(--time-hover) var(--ease-psych);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.quick-quote-modal-overlay.open { opacity: 1; visibility: visible; }

.quick-quote-modal-card {
  background-color: var(--color-card);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.quick-quote-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  font-size: 1.35rem;
  color: var(--color-body);
  cursor: pointer;
}

/* --- Export Cards --- */
.export-container-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-24);
  margin-top: var(--space-48);
}

.export-spec-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-32);
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--time-hover) var(--ease-psych);
}

.export-spec-card i {
  font-size: 2.25rem;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-16);
}

.export-spec-card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-8);
  color: var(--color-heading);
  font-weight: 700;
}

.export-spec-card p {
  font-size: 0.875rem;
  color: var(--color-body);
  line-height: 1.6;
}

.export-spec-card:hover {
  background-color: #FFFFFF;
  border-color: var(--color-cta);
  transform: translate3d(0, -3px, 0);
  box-shadow: var(--shadow-sm);
}

/* --- Bottom Floating Rate Bar --- */
.bottom-rate-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-primary-dark);
  color: #FFFFFF;
  padding: 0.75rem 0;
  z-index: 998;
  border-top: 1px solid var(--color-accent-gold);
  box-shadow: 0 -4px 16px rgba(6, 24, 43, 0.4);
}

.rate-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.rate-bar-text strong { color: var(--color-accent-gold); }

/* --- General Layout --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all var(--time-hover) var(--ease-psych);
}

.btn-primary {
  background-color: var(--color-cta);
  color: #FFFFFF;
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background-color: var(--color-cta-hover);
  transform: translate3d(0, -2px, 0);
}

.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-64); }
.contact-details { display: flex; flex-direction: column; gap: var(--space-24); margin-top: var(--space-32); }

.contact-detail-card {
  display: flex;
  gap: var(--space-24);
  background-color: var(--color-card);
  padding: var(--space-24);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--color-gold-bg);
  border: 1px solid var(--color-gold-border);
  color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-card-text h5 { font-size: 1rem; margin-bottom: 2px; }
.contact-card-text p { font-size: 0.875rem; color: var(--color-body); }

.enquiry-form-card {
  background-color: var(--color-card);
  padding: var(--space-48);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.enquiry-form-card h3 { font-size: 1.4rem; margin-bottom: var(--space-24); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-24); margin-bottom: var(--space-24); }
.form-group-full { grid-column: span 2; }
.form-label { display: block; font-size: 0.825rem; font-weight: 600; color: var(--color-heading); margin-bottom: 6px; }

.form-control {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.875rem;
  background-color: var(--color-bg-alt);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-cta);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

.floating-actions {
  position: fixed;
  bottom: 4.5rem;
  right: var(--space-32);
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  z-index: 999;
}

.btn-floating {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #FFFFFF;
  box-shadow: var(--shadow-card);
}

.btn-floating-whatsapp { background-color: #25D366; }
.btn-floating-call { background-color: var(--color-cta); }

.footer {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: var(--space-80) 0 5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: var(--space-48);
  margin-bottom: var(--space-64);
}

.footer-column h5 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: var(--space-24);
  position: relative;
}

.footer-column h5::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--color-accent-gold);
}

.footer-links a { color: rgba(255, 255, 255, 0.75); font-size: 0.875rem; }
.footer-links a:hover { color: var(--color-cta); padding-left: 4px; }

.footer-bottom {
  padding-top: var(--space-32);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links { display: flex; gap: var(--space-24); }

@media (max-width: 1180px) {
  .nav-menu-main { display: none; }
}

@media (max-width: 1024px) {
  .product-expanded-block { grid-template-columns: 1fr; }
  .product-expanded-content { padding: 1.75rem; }
  .stats-card-grid { grid-template-columns: repeat(2, 1fr); }
  .tiered-matrix-grid, .harvest-schedule-grid, .downloads-grid, .compliance-grid { grid-template-columns: repeat(2, 1fr); }
  .export-container-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout, .sample-request-card, .supply-network-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .stats-card-grid { grid-template-columns: 1fr; }
  .tiered-matrix-grid, .harvest-schedule-grid, .downloads-grid, .compliance-grid, .export-container-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .price-ticker-bar { display: none; }
  html { scroll-padding-top: var(--header-height); }
}
