/* ═══════════════════════════════════════════════════════
  BILVORA GLOBAL TRADE — PREMIUM LUXURY CSS
  Palette: Deep Forest Green · Emerald · Gold · Ivory · Charcoal
════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
  /* Greens */
  --forest:   #0d2818;
  --deep:     #153422;
  --emerald:  #1a4d2e;
  --mid:      #2d6a4f;
  --light-g:  #52b788;
  --sage:     #a8c5a0;

  /* Golds */
  --gold:       #c9922a;
  --gold-light: #e8b85a;
  --gold-pale:  #f5e6c8;
  --gold-dark:  #9b6e1a;

  /* Neutrals */
  --white:   #ffffff;
  --ivory:   #faf7f2;
  --ivory2:  #f2ede4;
  --cream:   #ede8df;
  --charcoal:#2a2a2a;
  --muted:   #6b6b5a;
  --border:  rgba(201,146,42,0.2);

  /* Fonts */
  --display: 'Cormorant Garamond', 'Georgia', serif;
  --serif:   'Playfair Display', serif;
  --ui:      'Jost', sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans: all 0.4s var(--ease);

  /* Shadows */
  --shadow-sm: 0 2px 16px rgba(13,40,24,0.08);
  --shadow-md: 0 8px 40px rgba(13,40,24,0.12);
  --shadow-lg: 0 20px 80px rgba(13,40,24,0.18);
  --shadow-xl: 0 32px 100px rgba(13,40,24,0.24);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--ui);
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--forest); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 0; }

/* ─── SELECTION ─── */
::selection { background: var(--gold); color: var(--forest); }

/* ═══════════════════════════════════
  NAVBAR
═══════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  background: rgba(13, 40, 24, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.navbar.scrolled {
  height: 64px;
  box-shadow: var(--shadow-md);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 100px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-name {
  font-family: var(--display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.05em;
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--ui);
  font-size: 0.55rem; letter-spacing: 0.3em;
  color: var(--gold-light); text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-family: var(--ui); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); text-decoration: none;
  position: relative; padding-bottom: 4px;
  transition: var(--trans);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--ui); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--forest) !important;
  background: var(--gold);
  padding: 10px 24px;
  text-decoration: none;
  transition: var(--trans);
  border: 1px solid var(--gold);
}
.nav-cta:hover {
  background: transparent !important;
  color: var(--gold-light) !important;
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--gold-light); transition: var(--trans);
}

/* ═══════════════════════════════════
  TYPOGRAPHY / SHARED
═══════════════════════════════════ */
.section-label {
  font-family: var(--ui); font-size: 0.65rem;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; color: var(--forest);
  line-height: 1.15; margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic; color: var(--gold-dark);
}
.section-body {
  font-family: var(--ui); font-size: 1.05rem;
  color: var(--muted); font-weight: 300; line-height: 1.8;
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-label { margin-left: 0; }
.text-center .section-title { margin-left: 0; }
.text-center .section-body { margin: 0 auto; }

/* ─── INLINE SVG ICONS (replaces emoji for a cleaner, on-brand look) ─── */
.why-icon-wrap svg,
.process-icon svg,
.quality-icon svg,
.vm-icon svg,
.pillar-icon svg,
.cert-badge-icon svg,
.info-block-icon svg,
.contact-item-icon svg,
.success-icon svg,
.footer-contact-icon svg,
.footer-contact-item span svg {
  width: 1em;
  height: 1em;
  display: block;
  stroke: currentColor;
}
.vm-icon svg,
.contact-item-icon svg { color: var(--gold-light); }
.cert-badge-icon svg { color: var(--gold-light); }
.success-icon svg { color: var(--mid); }
.contact-item-icon { display: inline-flex; }

/* ─── GOLD DIVIDER ─── */
.gold-divider {
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  margin: 1.5rem 0;
}
.text-center .gold-divider { margin: 1.5rem auto; }

/* ═══════════════════════════════════
  BUTTONS
═══════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ui); font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold); color: var(--forest);
  padding: 14px 32px; text-decoration: none;
  border: 1px solid var(--gold);
  transition: var(--trans);
  cursor: pointer; white-space: nowrap;
}
.btn-primary:hover {
  background: var(--forest); color: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ui); font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  background: transparent; color: var(--forest);
  padding: 13px 30px; text-decoration: none;
  border: 1px solid var(--forest);
  transition: var(--trans);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--forest); color: var(--gold-light);
}
.btn-outline-light {
  color: var(--white); border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12); color: var(--white); border-color: var(--white);
}

/* ═══════════════════════════════════
  CONTAINER
═══════════════════════════════════ */
.container {
  max-width: 1280px; margin: 0 auto; padding: 0 5%;
}

/* ═══════════════════════════════════
  FADE ANIMATIONS
═══════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════
   PAGE HERO
═══════════════════════════════════ */
.page-hero {
  position: relative; height: 55vh; min-height: 380px;
  overflow: hidden; display: flex; align-items: flex-end;
  padding-bottom: 80px; padding-left: 6%;
}
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,40,24,0.85) 0%, rgba(13,40,24,0.5) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
}
.page-hero-content h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600; color: var(--white); line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero-content h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-content p {
  font-family: var(--ui); font-size: 1rem;
  color: rgba(255,255,255,0.75); font-weight: 300;
  letter-spacing: 0.05em; max-width: 500px;
}

/* ═══════════════════════════════════
   MARQUEE / PACKAGING STRIP
═══════════════════════════════════ */
.marquee-strip {
  background: linear-gradient(135deg, var(--emerald), var(--deep));
  padding: 18px 0; overflow: hidden;
  border-top: 1px solid rgba(201,146,42,0.3);
  border-bottom: 1px solid rgba(201,146,42,0.3);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--ui); font-size: 0.72rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-light); white-space: nowrap;
  padding: 0 3rem; display: flex; align-items: center; gap: 1rem;
}
.marquee-item::before {
  content: '✦'; color: var(--gold); font-size: 0.6rem;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════
   FINAL CTA
═══════════════════════════════════ */
.final-cta {
  background: linear-gradient(135deg, var(--forest) 0%, var(--deep) 50%, var(--emerald) 100%);
  padding: 100px 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9922a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.final-cta .section-label { color: var(--gold-light); }
.final-cta .section-title { color: var(--white); margin: 0 auto 1rem; }
.final-cta .section-title em { color: var(--gold-light); }
.final-cta .section-body { color: rgba(255,255,255,0.7); margin: 0 auto 2.5rem; }
.final-cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  background: var(--forest);
  border-top: 1px solid rgba(201,146,42,0.2);
}
.footer-top {
  padding: 80px 5% 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}
.footer-brand {}
.footer-brand img { height: 100px; margin-bottom: 0.5rem; margin-left: 1.7rem; }
.footer-brand-name {
  font-family: var(--display); font-size: 1.2rem; font-weight: 600;
  color: var(--white); margin-bottom: 4px; letter-spacing: 0.03em;
}
.footer-brand-sub {
  font-family: var(--ui); font-size: 0.6rem;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-brand p {
  font-family: var(--ui); font-size: 0.88rem;
  color: rgba(255,255,255,0.5); line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,146,42,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--trans);
  text-decoration: none;
}
.footer-social a:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,146,42,0.1);
}
.footer-col h4 {
  font-family: var(--ui); font-size: 0.65rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,146,42,0.2);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-family: var(--ui); font-size: 0.85rem;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: var(--trans);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item span {
  font-size: 0.9rem; color: var(--gold); margin-top: 2px;
}
.footer-contact-item p {
  font-family: var(--ui); font-size: 0.85rem;
  color: rgba(255,255,255,0.5); line-height: 1.5;
}
.footer-certifications {
  padding: 24px 5%;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.footer-cert-label {
  font-family: var(--ui); font-size: 0.6rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}
.cert-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.cert-badge {
  font-family: var(--ui); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(201,146,42,0.25);
  padding: 5px 12px;
  transition: var(--trans);
}
.cert-badge:hover {
  border-color: var(--gold); color: var(--gold-light);
}
.footer-bottom {
  padding: 20px 5%;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom span {
  font-family: var(--ui); font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════
  MOBILE
═══════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--forest);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 12px 5%;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    letter-spacing: 0.15em;
  }
  .nav-cta { padding: 12px 5% !important; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .page-hero { padding-left: 5%; }
  .final-cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}
