/* ============================================================
   ALI INTERNATIONAL CARGO — styles.css
   Design: Premium Logistics — Navy + Gold
   Font: Exo 2 (headings) + DM Sans (body)
   Colors: Deep Navy · Warm Off-White · Gold accent
   ============================================================ */

:root {
  /* Navy palette */
  --navy-deep:    #070d18;
  --navy-dark:    #0d1526;
  --navy:         #122038;
  --navy-mid:     #1b2f4e;
  --navy-light:   #243d60;
  --navy-card:    rgba(255,255,255,0.05);
  --navy-border:  rgba(255,255,255,0.09);

  /* Gold palette */
  --gold:         #c9a84c;
  --gold-light:   #e4c472;
  --gold-bright:  #f5da9a;
  --gold-dark:    #a8873a;
  --gold-pale:    rgba(201,168,76,0.11);
  --gold-border:  rgba(201,168,76,0.28);

  /* Neutral */
  --white:        #ffffff;
  --off-white:    #f6f3ed;
  --light-bg:     #efeae0;
  --light-border: #ddd6c8;

  /* Text */
  --black-text:   #0d1117;
  --text-mid:     #374151;
  --text-muted:   #6b7280;
  --text-light:   rgba(255,255,255,0.72);
  --text-dim:     rgba(255,255,255,0.35);

  --whatsapp:     #25D366;

  --font-h: 'Exo 2', sans-serif;
  --font-b: 'DM Sans', sans-serif;

  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 16px 56px rgba(0,0,0,0.18);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w:      1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--black-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
}
section { padding: clamp(3.5rem, 8vw, 6rem) 0; }

/* ---------- Section Headings ---------- */
.section-heading { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  font-family: var(--font-h); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  padding: 0.3rem 0.9rem; border-radius: 4px; margin-bottom: 0.9rem;
}
.light-tag {
  color: var(--gold-bright);
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.3);
}
.section-heading h2 {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800; line-height: 1.1; color: var(--black-text);
  letter-spacing: -0.01em;
}
.light-heading { color: var(--white) !important; }
.section-sub { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.5rem; }

/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 6px;
  font-family: var(--font-h); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.03em; transition: var(--transition);
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.55); }

.btn-gold-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,0.18);
}
.btn-gold-outline:hover { background: var(--gold-pale); color: var(--white); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.3); }

.btn-wa-big {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 2.2rem;
  background: var(--whatsapp);
  color: var(--white); border-radius: 6px;
  font-family: var(--font-h); font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}
.btn-wa-big:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 10px 36px rgba(37,211,102,0.45); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.1rem 0; background: transparent; transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10,18,32,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 0.65rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { display: flex; flex-direction: row; align-items: center; gap: 0.55rem; line-height: 1.1; flex-shrink: 0; }
.nav-logo-icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo .logo-top { font-family: var(--font-h); font-weight: 600; font-size: 0.7rem; color: rgba(255,255,255,0.55); letter-spacing: 0.15em; }
.nav-logo .logo-bottom { font-family: var(--font-h); font-weight: 900; font-size: 1.05rem; color: var(--gold-light); letter-spacing: 0.2em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--font-h); font-weight: 600; font-size: 0.82rem;
  color: rgba(255,255,255,0.58); letter-spacing: 0.04em;
  transition: var(--transition); position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.28s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: rgba(201,168,76,0.12) !important;
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.42rem 1.1rem; border-radius: 4px;
  color: var(--gold-light) !important;
}
.nav-cta:hover { background: rgba(201,168,76,0.22) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

/* ---- Language switcher ---- */
.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.lang-switch { display: flex; align-items: center; gap: 0.15rem; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-h); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.38);
  padding: 0.28rem 0.45rem; border-radius: 3px; transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active { color: var(--gold-light); }
.lang-sep { color: rgba(255,255,255,0.18); font-size: 0.8rem; pointer-events: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1100; flex-shrink: 0; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: clamp(5rem,14vw,8rem) clamp(1rem,4vw,1.5rem) clamp(4rem,10vw,6rem);
  text-align: left;
}
/* Diagonal grid lines */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
/* Radial glow */
#hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 38%, rgba(27,47,78,0.9) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; border: 1px solid rgba(201,168,76,0.05); }
.shape-1 { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: rotate-slow 40s linear infinite; }
.shape-2 { width: 340px; height: 340px; top: 4%; right: -8%; border-color: rgba(201,168,76,0.04); animation: rotate-slow 26s linear infinite reverse; }
.shape-3 { width: 200px; height: 200px; bottom: 8%; left: 2%; border-color: rgba(201,168,76,0.06); animation: rotate-slow 22s linear infinite; }
@keyframes rotate-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Hero two-column layout */
.hero-container { display: flex; align-items: center; gap: 2.5rem; width: 100%; position: relative; z-index: 2; }
.hero-content { flex: 1; min-width: 0; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light); font-family: var(--font-h); font-size: 0.68rem;
  font-weight: 700; letter-spacing: 0.14em; padding: 0.42rem 1rem;
  border-radius: 3px; margin-bottom: 1.8rem; text-transform: uppercase;
}
.badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.2; } }

#hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 8vw, 5rem);
  font-weight: 900; color: var(--white);
  line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 0.25rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold-bright) 65%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200% auto;
  animation: gradient-shift 5s ease infinite;
}
@keyframes gradient-shift { 0% { background-position:0% center; } 50% { background-position:100% center; } 100% { background-position:0% center; } }

.hero-slogan {
  font-family: var(--font-h); font-size: clamp(0.75rem, 2vw, 0.88rem);
  font-weight: 700; font-style: normal;
  color: var(--gold); margin: 1rem 0 0.35rem;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-subtitle {
  color: var(--text-light); font-size: clamp(0.88rem, 2vw, 1rem);
  line-height: 1.6; margin-bottom: 2.2rem;
}
.hero-buttons {
  display: flex; gap: 0.75rem; justify-content: flex-start;
  flex-wrap: wrap; margin-bottom: 2.2rem;
}

.hero-routes {
  display: inline-flex; align-items: center; gap: 0;
  flex-wrap: nowrap; justify-content: flex-start;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px; padding: 0.55rem 1.4rem;
  margin-top: 0.3rem; backdrop-filter: blur(6px);
}
.route-tag {
  font-family: var(--font-h); font-size: 0.82rem; font-weight: 700;
  color: rgba(255,255,255,0.88); letter-spacing: 0.03em;
  background: none; border: none; padding: 0 0.3rem; border-radius: 0;
}
.route-arrow { color: var(--gold); font-size: 0.75rem; padding: 0 0.25rem; }
.route-sep {
  display: inline-block; width: 1px; height: 14px;
  background: rgba(201,168,76,0.25); margin: 0 0.65rem;
  font-size: 0; color: transparent; align-self: center;
}

.hero-scroll-hint { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); }
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto; animation: scroll-hint 2s ease-in-out infinite;
}
@keyframes scroll-hint { 0%,100% { opacity:0.2; transform:scaleY(0.6); } 50% { opacity:1; transform:scaleY(1); } }

/* ---------- Hero visual (right side) ---------- */
.hero-visual {
  width: 380px; height: 380px;
  flex-shrink: 0; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hv-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.14);
}
.hv-ring1 { inset: 0; }
.hv-ring2 { inset: 36px; border-style: dashed; border-color: rgba(201,168,76,0.1); animation: rotate-slow 22s linear infinite reverse; }
.hv-ring3 { inset: 72px; border-color: rgba(201,168,76,0.08); animation: rotate-slow 35s linear infinite; }
.hv-globe-wrap {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(201,168,76,0.08) 0%, rgba(13,21,38,0.6) 70%);
  border: 1px solid rgba(201,168,76,0.22);
  display: flex; align-items: center; justify-content: center;
  animation: glow-pulse 4s ease-in-out infinite;
  position: relative; z-index: 2;
}
.hv-logo-img { width: 170px; height: 170px; border-radius: 50%; object-fit: cover; }
@keyframes glow-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); } 50% { box-shadow: 0 0 32px 8px rgba(201,168,76,0.12); } }
.hv-orb {
  position: absolute; border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
  z-index: 3;
}
.hv-orb1 { width: 10px; height: 10px; background: var(--gold); color: var(--gold); top: 24px; left: 50%; transform: translateX(-50%); animation: orb1-move 6s ease-in-out infinite; }
.hv-orb2 { width: 7px; height: 7px; background: var(--white); color: var(--white); bottom: 68px; right: 60px; animation: orb2-move 8s ease-in-out infinite; }
.hv-orb3 { width: 5px; height: 5px; background: var(--gold-bright); color: var(--gold-bright); top: 110px; left: 32px; animation: orb2-move 10s ease-in-out infinite reverse; opacity: 0.7; }
@keyframes orb1-move { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-14px)} }
@keyframes orb2-move { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-14px,-10px)} }

/* ============================================================
   STATS
   ============================================================ */
#stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 0; max-width: 520px; margin: 0 auto;
}
.stat-item {
  text-align: center; padding: 1.2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number-wrap { display: flex; align-items: baseline; justify-content: center; gap: 1px; margin-bottom: 0.5rem; }
.stat-number {
  font-family: var(--font-h); font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-suffix { font-family: var(--font-h); font-size: clamp(1.1rem, 3vw, 1.4rem); font-weight: 800; color: var(--gold); }
.stat-label { color: var(--text-light); font-size: 0.8rem; line-height: 1.45; }

/* ============================================================
   SERVICES / TABS
   ============================================================ */
#services {
  background: var(--off-white);
  position: relative;
}
/* Subtle diagonal texture */
#services::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
#services .container { position: relative; z-index: 1; }
#services .section-heading h2 { color: var(--black-text); }
#services .section-tag { color: var(--gold-dark); background: var(--gold-pale); border-color: var(--gold-border); }

.tabs-nav { display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.9rem 2rem; border-radius: var(--radius);
  border: 2px solid var(--light-border); background: var(--white);
  cursor: pointer; transition: var(--transition);
  font-family: var(--font-h); flex: 1; max-width: 260px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.tab-flag { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.tab-title { text-align: left; font-size: 0.85rem; font-weight: 800; color: #94a3b8; line-height: 1.25; letter-spacing: 0.04em; }
.tab-btn.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.14), 0 4px 16px rgba(201,168,76,0.15);
  background: var(--white);
}
.tab-btn.active .tab-title { color: var(--navy-dark); }
.tab-btn:hover:not(.active) { border-color: #c5bfb0; transform: translateY(-2px); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-card {
  background: transparent;
  border-radius: 0; box-shadow: none; overflow: visible;
  max-width: 760px; margin: 0 auto;
  animation: tab-in 0.3s ease;
}
@keyframes tab-in { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }

.tab-card-header { display: flex; align-items: center; gap: 1rem; padding: 0.5rem 0 1.8rem; }
.tc-flag { font-size: 2.4rem; line-height: 1; flex-shrink: 0; }
.tab-card-header h3 { font-family: var(--font-h); font-size: 1.3rem; font-weight: 900; letter-spacing: 0.04em; color: var(--black-text); }
.tab-card-header p { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }

.tab-prices { display: grid; grid-template-columns: 1fr 1fr; padding: 0; gap: 1.2rem; }
.price-sep { display: none; }
.price-block {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center;
  box-shadow: 0 2px 24px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.03);
  position: relative; overflow: hidden; transition: var(--transition);
}
.price-block:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(201,168,76,0.25); }
.price-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.price-block:nth-child(1)::before { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }
.price-block:nth-child(3)::before { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }

.pb-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; margin: 0 auto 1rem; }
.auto-icon { background: rgba(10,18,32,0.07); }
.air-icon  { background: rgba(201,168,76,0.1); }
.pb-mode { font-family: var(--font-h); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); margin-bottom: 1.1rem; }
.pb-price {
  font-family: var(--font-h); font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 900; color: var(--navy-dark); line-height: 1;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; justify-content: center;
  margin-bottom: 0.3rem;
}
.pb-currency {
  font-family: var(--font-h); font-size: 0.38em; font-weight: 800;
  color: var(--gold-dark); margin-left: 0.06em; line-height: 1;
}
.pb-unit { font-size: 0.28em; font-weight: 700; color: var(--text-muted); margin-left: 0.06em; }
.pb-place { font-family: var(--font-h); font-size: 0.88rem; font-weight: 600; color: var(--text-mid); margin: 0.65rem 0 0.3rem; }
.pb-place .pb-unit { font-size: 0.9em; font-weight: 600; color: var(--text-muted); display: inline; margin: 0; align-self: auto; }
.pb-time {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  border-radius: 6px; padding: 0.45rem 1rem; font-family: var(--font-h);
  font-size: 0.84rem; font-weight: 700; color: var(--gold-dark); margin-top: 0.6rem;
}
.tab-note { margin: 0 0 1rem; padding: 0.8rem 1.1rem; background: rgba(0,0,0,0.04); border-radius: 8px; font-size: 0.78rem; color: var(--text-muted); text-align: center; }
.services-note { display: flex; align-items: center; gap: 0.5rem; justify-content: center; text-align: center; margin-top: 1.8rem; color: var(--text-muted); font-size: 0.85rem; }

/* ============================================================
   WHY US
   ============================================================ */
#why-us {
  background: var(--navy-dark);
  position: relative; overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; position: relative; z-index: 1; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-left: 3px solid rgba(201,168,76,0.3);
  border-radius: var(--radius); padding: 1.6rem 1.4rem; transition: var(--transition);
}
.why-card:hover {
  background: rgba(201,168,76,0.06);
  border-left-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}
.why-icon {
  font-size: 1.6rem; margin-bottom: 0.9rem;
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.why-card h3 { font-family: var(--font-h); font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; }

/* ============================================================
   HOW TO ORDER
   ============================================================ */
#how-to-order {
  background: var(--white);
  position: relative;
}
/* Warm top gradient */
#how-to-order::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold-light), var(--gold-dark), transparent);
}
#how-to-order .section-heading h2 { color: var(--black-text); }
#how-to-order .section-tag { color: var(--gold-dark); background: var(--gold-pale); border-color: var(--gold-border); }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.step-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.8rem 1.4rem; text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  transition: var(--transition);
  border-top: 3px solid transparent;
  position: relative;
}
.step-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(201,168,76,0.2); border-top-color: var(--gold); }
.step-num {
  font-family: var(--font-h); font-size: 0.72rem; font-weight: 900;
  letter-spacing: 0.04em; color: var(--navy-dark);
  width: 42px; height: 42px;
  border: 2px solid var(--gold);
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.08);
}
.step-icon { font-size: 1.8rem; margin-bottom: 0.7rem; }
.step-card h3 { font-family: var(--font-h); font-size: 0.95rem; font-weight: 700; color: var(--black-text); margin-bottom: 0.4rem; }
.step-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.55; }
.step-link { display: inline-block; margin-top: 0.7rem; font-family: var(--font-h); font-size: 0.8rem; font-weight: 700; color: var(--whatsapp); transition: var(--transition); }
.step-link:hover { color: #1da851; }

/* ============================================================
   MAP + INFO
   ============================================================ */
#map-section {
  background: var(--navy-dark);
  padding: clamp(3rem, 7vw, 5rem) 0;
  position: relative; overflow: hidden;
}
#map-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
#map-section .container { position: relative; z-index: 1; }
.map-info-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 0; align-items: stretch;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.35);
  border: 1px solid rgba(201,168,76,0.12);
}
.map-wrap { min-height: 400px; }
#map { width: 100%; height: 100%; min-height: 400px; }

.map-info-panel {
  background: var(--navy-mid);
  border-left: 1px solid rgba(201,168,76,0.1);
  padding: 2.2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1.4rem;
}
.map-info-panel h3 {
  font-family: var(--font-h); font-size: 0.85rem; font-weight: 800;
  color: var(--gold-light); letter-spacing: 0.08em; text-transform: uppercase;
  padding-bottom: 0.9rem; border-bottom: 1px solid rgba(201,168,76,0.15);
}
.mip-item { display: flex; align-items: flex-start; gap: 0.8rem; }
.mip-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.mip-item strong { display: block; font-family: var(--font-h); font-size: 0.65rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.mip-item span { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }
.mip-wa-link { color: var(--whatsapp); font-weight: 700; font-size: 0.95rem; font-family: var(--font-h); transition: var(--transition); }
.mip-wa-link:hover { color: #1da851; }
.mip-btn { margin-top: auto; width: 100%; justify-content: center; font-size: 0.88rem; padding: 0.85rem 1rem; border-radius: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 2.8rem 0 2rem;
  position: relative;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.8rem; }
.footer-logo { font-family: var(--font-h); font-weight: 900; font-size: 1rem; color: var(--white); letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.footer-logo span { color: var(--gold); }
.footer-slogan { font-style: normal; color: var(--text-dim); font-size: 0.82rem; letter-spacing: 0.04em; }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; align-items: center; }
.footer-links a { font-family: var(--font-h); font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.38); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.2rem; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: var(--text-dim); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  border-radius: 50px; background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  z-index: 9999; box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  animation: wa-pulse 2.8s ease-in-out infinite;
  transition: transform 0.2s ease;
  padding: 0 1.1rem 0 0.85rem; height: 54px;
}
.wa-label { font-family: var(--font-h); font-size: 0.78rem; font-weight: 700; color: var(--white); white-space: nowrap; }
.whatsapp-float:hover { transform: scale(1.05); }
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); pointer-events: auto; }
.wa-tooltip {
  position: absolute; right: calc(100% + 10px); top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--navy-dark); color: var(--white);
  font-family: var(--font-h); font-size: 0.75rem; font-weight: 600;
  padding: 0.4rem 0.8rem; border-radius: 6px;
  white-space: nowrap; pointer-events: none; opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease; box-shadow: var(--shadow);
  border: 1px solid rgba(201,168,76,0.15);
}
.wa-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--navy-dark); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .map-info-layout { grid-template-columns: 1fr; }
  .map-wrap { min-height: 280px; }
  #map { min-height: 280px; }
  .tab-prices { gap: 1rem; }
  .pb-price { font-size: 2rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  /* Hero: hide visual, center text */
  .hero-visual { display: none; }
  .hero-container { justify-content: center; }
  #hero { text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-routes { justify-content: center; }
  .hero-content { max-width: 100%; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(7,13,24,0.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 1.8rem; opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease; z-index: 999;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta { padding: 0.55rem 1.4rem !important; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 290px; justify-content: center; }
  .tabs-nav { flex-direction: column; align-items: center; }
  .tab-btn { flex: none; width: 100%; max-width: 340px; }
  .tab-card-header { padding: 1.5rem 1.5rem; }
  .tab-note { margin: 0 1.5rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1.2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { max-width: 440px; margin-left: auto; margin-right: auto; width: 100%; }
  /* Float button: circle only on mobile */
  .whatsapp-float { padding: 0; width: 52px; height: 52px; border-radius: 50%; }
  .wa-label { display: none; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  section { padding: 3rem 0; }
  .tab-prices { grid-template-columns: 1fr; gap: 0.9rem; }
  .price-block { padding: 1.6rem 1.3rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1rem; }
  .stat-item:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-routes { display: none; }
  .pb-price { font-size: 1.9rem; }
  .map-info-panel { padding: 1.5rem 1.2rem; gap: 1.1rem; }
  .tab-note { margin: 0 1.2rem 1.2rem; }
  .footer-links { gap: 1rem; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
}

/* ============================================================
   RESPONSIVE — 420px (very small phones)
   ============================================================ */
@media (max-width: 420px) {
  #hero h1 { font-size: clamp(1.9rem, 9vw, 2.2rem); }
  .hero-badge { font-size: 0.63rem; padding: 0.38rem 0.85rem; margin-bottom: 1.4rem; }
  .hero-slogan { font-size: 0.86rem; }
  .hero-subtitle { font-size: 0.86rem; }
  .section-heading h2 { font-size: clamp(1.4rem, 6vw, 1.7rem); }
  .hero-buttons .btn { font-size: 0.85rem; padding: 0.8rem 1.5rem; }
}
