/* ══════════════════════════════════════════════════════
   WRR FRONTEND REDESIGN — styles.css (Light-first)
   World Resort Rescue © 2026
══════════════════════════════════════════════════════ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── DESIGN TOKENS — LIGHT (default) ── */
:root {
  --blue:     #0072ce;
  --blue-dk:  #005da8;
  --blue-bg:  #e8f3fc;
  --red:      #e63946;
  --red-dk:   #d62839;
  --bg:       #ffffff;
  --bg-2:     #f5f9fd;
  --bg-3:     #eaf2fa;
  --text:     #12283d;
  --muted:    #55677a;
  --border:   #e2e9f0;
  --border-h: #b9d4ea;
  --nav-bg:   rgba(255,255,255,0.95);
  --shadow:   0 4px 24px rgba(18,40,61,0.08);
  --shadow-lg:0 12px 44px rgba(18,40,61,0.14);
  --radius:   14px;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── DARK MODE (via toggle) ── */
[data-theme="dark"] {
  --blue:     #3da2ff;
  --blue-dk:  #1f8ef5;
  --blue-bg:  rgba(61,162,255,0.1);
  --bg:       #0a1c30;
  --bg-2:     #0e2338;
  --bg-3:     #071525;
  --text:     #f2f7fc;
  --muted:    rgba(242,247,252,0.6);
  --border:   rgba(61,162,255,0.16);
  --border-h: rgba(61,162,255,0.4);
  --nav-bg:   rgba(10,28,48,0.95);
  --shadow:   0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg:0 12px 44px rgba(0,0,0,0.45);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── SCROLL ANIMATION BASE ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: 80ms; }
.stagger-2 { transition-delay: 160ms; }
.stagger-3 { transition-delay: 240ms; }
.stagger-4 { transition-delay: 320ms; }

/* ── UTILITY ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 2px; border-radius: 2px; background: var(--red); flex-shrink: 0; }
.eyebrow-center { justify-content: center; }
.eyebrow-center::before { display: none; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 16px 38px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(230,57,70,0.3);
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
.btn-primary:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(230,57,70,0.38); }
.btn-outline {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 100px;
  padding: 16px 38px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.22); }
/* Outline buttons that sit on page background (not over media) */
.services-section .btn-outline, .faq-section .btn-outline {
  color: var(--blue); border-color: var(--border-h); background: transparent; backdrop-filter: none;
}
.services-section .btn-outline:hover, .faq-section .btn-outline:hover { border-color: var(--blue); background: var(--blue-bg); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border-h);
  color: var(--blue);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--blue); background: var(--blue-bg); }
.btn-nav-solid {
  display: inline-block;
  background: var(--blue);
  border: none;
  color: #fff;
  border-radius: 100px;
  padding: 11px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-nav-solid:hover { background: var(--blue-dk); transform: translateY(-1px); }

/* ══════════════════════════════
   NAVIGATION — always solid & readable
══════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
#main-nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 60px;
  gap: 24px;
}
/* Logo is intentionally larger than the 72px nav is tall-ish: it stays visually
   bigger for readability without increasing the nav height. */
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 64px; display: block; }
@media (max-width: 600px) { .nav-logo img { height: 56px; } }
.nav-links { display: flex; gap: 32px; list-style: none; margin: 0 auto; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone { font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: 0.02em; margin-right: 4px; }

/* Theme toggle */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  position: relative;
}
.theme-toggle:hover { border-color: var(--blue); color: var(--blue); }
.theme-toggle .icon-sun, .theme-toggle .icon-moon { position: absolute; transition: opacity 0.3s, transform 0.3s var(--ease); }
[data-theme="dark"]  .icon-sun  { opacity: 1; transform: rotate(0deg); }
[data-theme="dark"]  .icon-moon { opacity: 0; transform: rotate(90deg); }
:root:not([data-theme="dark"]) .icon-sun  { opacity: 0; transform: rotate(-90deg); }
:root:not([data-theme="dark"]) .icon-moon { opacity: 1; transform: rotate(0deg); }

/* Current-page indicator */
.nav-links a[aria-current="page"] { color: var(--blue); }
.nav-links a[aria-current="page"]::after { content: ''; display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--red); margin: 3px auto 0; }

/* Mobile-only portal links (injected by main.js, hidden on desktop) */
.nav-links .mobile-login { display: none; }

/* Floating emergency call button */
.emergency-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 1200;
  display: flex; align-items: center; gap: 10px;
  background: var(--red);
  color: #fff;
  border-radius: 100px;
  padding: 13px 20px 13px 16px;
  box-shadow: 0 8px 28px rgba(230,57,70,0.45);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  animation: fab-in 0.5s var(--ease) 1s backwards;
}
.emergency-fab:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 34px rgba(230,57,70,0.55); }
.emergency-fab .fab-text { display: flex; flex-direction: column; line-height: 1.25; }
.emergency-fab .fab-text strong { font-size: 12px; font-weight: 800; }
.emergency-fab .fab-text { font-size: 11px; font-weight: 600; }
@keyframes fab-in { from { opacity: 0; transform: translateY(16px); } }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════
   HERO — bright travel imagery, white text over photo
══════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-video-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: none; }
.hero-video.hidden { display: none; }
.hero-video.hidden + .hero-video-fallback { display: block; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; }
/* Soft dark scrim at the bottom only — keeps the scenery bright, text readable */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(10,30,50,0.72) 0%, rgba(10,30,50,0.3) 38%, rgba(10,30,50,0.05) 68%, rgba(10,30,50,0) 100%);
}
.hero-grid-overlay { display: none; }
.hero-content {
  position: relative; z-index: 4;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 80px 90px;
  gap: 40px;
}
.hero-text { max-width: 660px; }
/* Hero copy is always white — it sits over the photo */
.hero-eyebrow { color: #fff; opacity: 0; transform: translateX(-30px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.hero-eyebrow::before { background: var(--red); }
.hero-eyebrow.loaded { opacity: 1; transform: translateX(0); }
.hero-h1 { display: flex; flex-direction: column; font-size: clamp(46px, 6.5vw, 82px); font-weight: 900; line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 22px; color: #fff; text-shadow: 0 2px 24px rgba(10,30,50,0.35); }
.hero-h1 em { color: #7cc4ff; font-style: normal; }
.hero-line1, .hero-line2 { opacity: 0; transform: translateY(40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.hero-line1.loaded, .hero-line2.loaded { opacity: 1; transform: translateY(0); }
.hero-body { font-size: 17px; color: rgba(255,255,255,0.92); line-height: 1.75; max-width: 500px; margin-bottom: 36px; text-shadow: 0 1px 12px rgba(10,30,50,0.4); opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.hero-body.loaded { opacity: 1; transform: translateY(0); }
.hero-ctas { display: flex; gap: 14px; opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.hero-ctas.loaded { opacity: 1; transform: translateY(0); }
.hero-right { display: flex; flex-direction: column; align-items: center; gap: 16px; flex-shrink: 0; }
.hero-badge { width: 130px; height: 130px; border-radius: 50%; background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; opacity: 0; transform: scale(0.8); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.hero-badge.loaded { opacity: 1; transform: scale(1); }
.hero-badge-icon { font-size: 22px; margin-bottom: 4px; line-height: 1; }
.hero-badge-num { font-size: 28px; font-weight: 900; color: #0072ce; line-height: 1; }
.hero-badge-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.04em; color: #55677a; margin-top: 5px; line-height: 1.35; text-align: center; }
.hero-scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; }
.hero-scroll-indicator::after { content: ''; display: block; width: 2px; height: 48px; border-radius: 2px; background: linear-gradient(to bottom, rgba(255,255,255,0.85), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0% { opacity: 1; } 100% { opacity: 0.3; } }

/* ══════════════════════════════
   STATS STRIP — clean white cards
══════════════════════════════ */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--bg); border-bottom: 1px solid var(--border); }
.stat-item { padding: 44px 32px; border-right: 1px solid var(--border); text-align: center; position: relative; overflow: hidden; transition: background 0.25s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-2); }
.stat-num { font-size: clamp(34px, 4vw, 46px); font-weight: 900; color: var(--blue); letter-spacing: -0.03em; line-height: 1; }
.stat-label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ══════════════════════════════
   SHARED
══════════════════════════════ */
.section-grid-bg { display: none; }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-section { padding: 120px 80px; background: var(--bg); position: relative; overflow: hidden; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; position: relative; }
.about-text h2 { font-size: clamp(32px, 4vw, 50px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 22px; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 18px; }
.feature-list { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.feat-row { display: flex; align-items: flex-start; gap: 16px; padding: 20px 22px; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color 0.25s, box-shadow 0.25s; }
.feat-row:hover { border-color: var(--border-h); box-shadow: var(--shadow); }
.feat-icon { width: 44px; height: 44px; background: var(--blue-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.feat-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.feat-body p { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }
.about-photo { position: relative; }
.about-photo img { width: 100%; height: 560px; object-fit: cover; display: block; border-radius: 20px; box-shadow: var(--shadow-lg); }
.photo-tint { display: none; }
.glass-stat { position: absolute; bottom: 28px; left: -24px; background: var(--bg); border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 20px 26px; }
.gs-num { font-size: 30px; font-weight: 900; color: var(--blue); letter-spacing: -0.03em; }
.gs-lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.cert-badge { position: absolute; top: 28px; right: 28px; background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px; }
.cert-badge img { height: 52px; border-radius: 0; box-shadow: none; }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services-section { background: var(--bg-2); }
.services-header { padding: 100px 80px 60px; text-align: center; }
.services-header h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.services-header p { font-size: 15px; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.8; }
.icon-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0 80px; }
.icon-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 30px 36px; position: relative; overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s; }
.icon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-h); }
.ic-num { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--red); margin-bottom: 18px; }
.ic-icon { width: 56px; height: 56px; background: var(--blue-bg); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 22px; }
.icon-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.icon-card p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }
.split-services { display: grid; grid-template-columns: 1fr 1fr; margin-top: 60px; }
.split-media { position: relative; min-height: 540px; overflow: hidden; }
.split-video { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.split-video-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,30,50,0.55) 0%, rgba(10,30,50,0.05) 55%); }
.split-img-overlay-reverse { background: linear-gradient(to top, rgba(10,30,50,0.55) 0%, rgba(10,30,50,0.05) 55%); }
.split-img-label { position: absolute; bottom: 40px; left: 40px; }
.split-img-label-right { left: auto; right: 40px; text-align: right; }
.split-img-label span { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; opacity: 0.85; margin-bottom: 8px; }
.split-img-label h3 { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; color: #fff; text-shadow: 0 2px 16px rgba(10,30,50,0.4); }
.split-panel { background: var(--bg-2); padding: 64px 68px; display: flex; flex-direction: column; justify-content: center; }
.sp-title { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 28px; }
.service-row { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.service-row:last-of-type { border-bottom: none; }
.sr-icon { width: 44px; height: 44px; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; margin-top: 2px; }
.sr-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.sr-body p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.sp-cta { margin-top: 32px; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

/* ══════════════════════════════
   COVERAGE
══════════════════════════════ */
.coverage-section { padding: 120px 80px; background: var(--bg); position: relative; overflow: hidden; }
.coverage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; position: relative; }
.coverage-photo { position: relative; }
.coverage-photo img { width: 100%; height: 520px; object-fit: cover; display: block; border-radius: 20px; box-shadow: var(--shadow-lg); }
.float-card { position: absolute; top: 28px; right: -24px; background: var(--bg); border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 20px 28px; min-width: 170px; }
.fc-num { font-size: 38px; font-weight: 900; color: var(--blue); letter-spacing: -0.03em; }
.fc-lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.coverage-text h2 { font-size: clamp(30px, 3.5vw, 46px); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 22px; }
.coverage-text p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.coverage-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 36px; }
.pill { background: var(--blue-bg); border: 1px solid transparent; border-radius: 100px; color: var(--blue); font-size: 12.5px; font-weight: 600; padding: 8px 18px; transition: border-color 0.2s, background 0.2s; }
.pill:hover { border-color: var(--blue); }

/* ══════════════════════════════
   CTA BLOCK
══════════════════════════════ */
.cta-block { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.cta-media { position: absolute; inset: 0; }
.cta-video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.cta-video-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,30,50,0.88) 25%, rgba(10,30,50,0.5) 65%, rgba(10,30,50,0.15) 100%); z-index: 1; }
.cta-content { position: relative; z-index: 2; padding: 100px 80px; max-width: 680px; }
.cta-content .eyebrow { color: #7cc4ff; }
.cta-content h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 20px; color: #fff; }
.cta-content p { font-size: 16px; color: rgba(255,255,255,0.88); line-height: 1.8; margin-bottom: 36px; max-width: 460px; }
.cta-buttons { display: flex; gap: 14px; }

/* ══════════════════════════════
   WHY WRR (trust band)
══════════════════════════════ */
.why-band { padding: 90px 80px; background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.why-band > .eyebrow { margin-bottom: 14px; }
.why-band h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 46px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.why-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 26px; text-align: center; transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s; }
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-h); }
.why-icon { width: 58px; height: 58px; margin: 0 auto 18px; background: var(--blue-bg); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 27px; }
.why-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 9px; }
.why-item p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
@media (max-width: 900px) { .why-band { padding: 72px 40px; } .why-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (max-width: 600px) { .why-band { padding: 56px 20px; } .why-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-section { padding: 120px 80px; background: var(--bg); }
.faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-left h2 { font-size: clamp(30px, 3.5vw, 42px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 18px; }
.faq-left p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg); transition: border-color 0.25s, box-shadow 0.25s; }
.faq-item.open, .faq-item:hover { border-color: var(--border-h); box-shadow: var(--shadow); }
.faq-q { width: 100%; background: none; border: none; color: var(--text); padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 15px; font-weight: 600; text-align: left; gap: 16px; transition: color 0.2s; }
.faq-item.open .faq-q { color: var(--blue); }
.faq-arrow { width: 28px; height: 28px; border-radius: 50%; background: var(--blue-bg); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 17px; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; font-size: 14px; color: var(--muted); line-height: 1.8; transition: max-height 0.4s var(--ease), padding 0.3s; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 220px; padding: 0 24px 22px; }

/* ══════════════════════════════
   FOOTER — deep navy anchor
══════════════════════════════ */
footer { background: #0e2137; padding: 80px 80px 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 68px; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 240px; }
.footer-contact { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact a:hover { color: #7cc4ff; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.6); margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: #7cc4ff; }
.footer-note { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.7; padding: 20px 0 0; max-width: 720px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; }
.footer-bottom p, .footer-bottom span { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }

/* ══════════════════════════════
   PORTAL PAGES — bright card over travel photo
══════════════════════════════ */
.portal-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; padding: 40px 0 64px; }
.portal-page #portal-canvas { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.portal-bg { position: fixed; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.portal-overlay { position: fixed; inset: 0; background: rgba(10,30,50,0.4); z-index: 0; }
.portal-card { position: relative; z-index: 10; width: 100%; max-width: 460px; background: rgba(255,255,255,0.94); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-radius: 22px; box-shadow: var(--shadow-lg); padding: 52px 48px; opacity: 0; transform: scale(0.96) translateY(16px); animation: cardEntrance 0.65s var(--ease) 0.2s forwards; margin: 24px; }
@keyframes cardEntrance { to { opacity: 1; transform: scale(1) translateY(0); } }
[data-theme="dark"] .portal-card { background: rgba(10,28,48,0.9); }
.portal-theme-toggle { position: absolute; top: 20px; right: 20px; }
.portal-back { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); display: inline-block; margin-bottom: 32px; transition: color 0.2s; }
.portal-back:hover { color: var(--blue); }
.portal-logo { margin-bottom: 32px; }
.portal-logo img { height: 64px; }
.portal-header h1 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.portal-header p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
.portal-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.form-group input { background: var(--bg-2); border: 1.5px solid var(--border); border-radius: 10px; color: var(--text); padding: 13px 16px; font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input::placeholder { color: var(--muted); opacity: 0.6; }
.form-group input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,114,206,0.15); }
.portal-submit { width: 100%; padding: 16px; font-size: 13px; margin-top: 6px; border-radius: 100px; }
.portal-forgot { text-align: center; font-size: 13px; color: var(--muted); margin-top: 4px; display: block; transition: color 0.2s; }
.portal-forgot:hover { color: var(--blue); }
.portal-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0 16px; }
.portal-divider::before, .portal-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.portal-divider span { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
.portal-note { font-size: 13px; color: var(--muted); text-align: center; line-height: 1.6; }
.portal-switch { display: block; text-align: center; font-size: 13px; font-weight: 600; color: var(--blue); margin-top: 16px; transition: opacity 0.2s; }
.portal-switch:hover { opacity: 0.75; }
.portal-copyright { position: fixed; bottom: 20px; left: 0; right: 0; text-align: center; font-size: 11px; color: rgba(255,255,255,0.75); text-shadow: 0 1px 8px rgba(10,30,50,0.5); letter-spacing: 0.08em; z-index: 10; }
.portal-emergency { background: #fdecee; border: 1px solid rgba(230,57,70,0.25); border-radius: var(--radius); padding: 18px 20px; text-align: center; margin-bottom: 4px; }
[data-theme="dark"] .portal-emergency { background: rgba(230,57,70,0.12); }
.pe-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.pe-number { font-size: 22px; font-weight: 800; color: var(--red); display: block; letter-spacing: -0.01em; }
.pe-sub { font-size: 11px; color: var(--muted); margin-top: 4px; letter-spacing: 0.04em; }
.pe-911 { font-size: 11px; color: var(--text); background: rgba(230,57,70,0.08); border-radius: 8px; padding: 8px 12px; margin-top: 12px; line-height: 1.5; font-weight: 600; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .nav-inner { padding: 0 40px; }
  /* Full nav no longer fits with 7 items — switch to hamburger here */
  .nav-hamburger { display: flex; }
  .nav-phone { display: none; }
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--nav-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); padding: 24px 0; flex-direction: column; gap: 0; text-align: center; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 16px 24px; font-size: 15px; }
  .nav-links li a[aria-current="page"]::after { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-links .mobile-login { display: block; border-top: 1px solid var(--border); }
  .nav-links .mobile-login:first-of-type { margin-top: 8px; }
  .nav-links .mobile-login a { color: var(--blue); font-weight: 700; }
  .about-section, .coverage-section, .faq-section { padding: 100px 60px; }
  .icon-cards { margin: 0 60px; }
  .services-header { padding: 80px 60px 50px; }
  .split-panel { padding: 50px 48px; }
  .cta-content { padding: 80px 60px; }
  .partners-section { padding: 60px; }
  footer { padding: 60px 60px 0; }
}
@media (max-width: 900px) {
  .emergency-fab { right: 14px; bottom: 14px; padding: 12px 16px 12px 14px; }
  .about-section, .coverage-section { padding: 80px 40px; }
  .about-inner, .coverage-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-photo img { height: 400px; }
  .coverage-photo img { height: 380px; }
  .glass-stat { left: 16px; }
  .float-card { right: 12px; }
  .icon-cards { grid-template-columns: 1fr 1fr; margin: 0 40px; gap: 16px; }
  .services-header { padding: 60px 40px 40px; }
  .split-services { grid-template-columns: 1fr; margin-top: 48px; }
  .split-reverse { direction: ltr; display: flex; flex-direction: column-reverse; }
  .split-media { min-height: 300px; }
  .split-panel { padding: 48px 40px; }
  .cta-content { padding: 60px 40px; }
  .partners-section { padding: 60px 40px; }
  .faq-section { padding: 80px 40px; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  footer { padding: 60px 40px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .nav-inner { padding: 0 20px; }
  .hero-content { padding: 0 24px 72px; flex-direction: column; align-items: flex-start; }
  .hero-right { flex-direction: row; }
  .hero-scroll-indicator { display: none; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .about-section, .coverage-section { padding: 60px 20px; }
  .services-header { padding: 60px 20px 40px; }
  .icon-cards { grid-template-columns: 1fr; margin: 0 20px; }
  .split-panel { padding: 40px 20px; }
  .cta-content { padding: 60px 20px; }
  .cta-buttons { flex-direction: column; }
  .partners-section { padding: 48px 20px; }
  .partners-row { gap: 24px; }
  .faq-section { padding: 60px 20px; }
  footer { padding: 48px 20px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .portal-card { padding: 40px 24px; margin: 16px; }
}
