/* ============================================================
   SKYDESK TRAVEL — ELITE DESIGN SYSTEM
   Color Research: USA/Canada Trust + Conversion Palette
   Primary: Deep Navy #0A2342 | Accent: Sky Blue #0EA5E9
   CTA: Amber Gold #F59E0B | White: #FAFCFF | Light: #F0F6FF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

:root {
  --navy: #0A2342;
  --navy-mid: #143560;
  --navy-light: #1E4D8C;
  --sky: #0EA5E9;
  --sky-light: #38BDF8;
  --sky-pale: #E0F2FE;
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --gold-dark: #D97706;
  --white: #FAFCFF;
  --off-white: #F0F6FF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-700: #334155;
  --red: #EF4444;
  --green: #10B981;
  --shadow-sm: 0 1px 3px rgba(10,35,66,0.08), 0 1px 2px rgba(10,35,66,0.04);
  --shadow-md: 0 4px 20px rgba(10,35,66,0.10), 0 2px 8px rgba(10,35,66,0.06);
  --shadow-lg: 0 10px 40px rgba(10,35,66,0.14), 0 4px 16px rgba(10,35,66,0.08);
  --shadow-xl: 0 20px 60px rgba(10,35,66,0.18), 0 8px 24px rgba(10,35,66,0.10);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-sky { color: var(--sky); }
.text-navy { color: var(--navy); }
.bg-navy { background: var(--navy); }
.bg-sky-pale { background: var(--sky-pale); }
.bg-off-white { background: var(--off-white); }
.hidden { display: none !important; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { font-size: 1rem; color: var(--gray-700); }
a { color: var(--sky); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--navy); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-family: var(--font-body);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(245,158,11,0.35);
}
.btn-gold:hover {
  background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.45);
}
.btn-primary {
  background: var(--sky); color: var(--white); border-color: var(--sky);
  box-shadow: 0 4px 14px rgba(14,165,233,0.3);
}
.btn-primary:hover {
  background: var(--navy); border-color: var(--navy); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,165,233,0.4);
}
.btn-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15); border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy); color: var(--white); transform: translateY(-2px);
}
.btn-call {
  background: var(--green); color: var(--white); border-color: var(--green);
  font-size: 1rem; padding: 15px 32px;
  box-shadow: 0 4px 18px rgba(16,185,129,0.35);
  animation: pulse-green 2.5s infinite;
}
.btn-call:hover {
  background: #059669; border-color: #059669; color: var(--white);
  transform: translateY(-2px); animation: none;
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

@keyframes pulse-green {
  0%,100% { box-shadow: 0 4px 18px rgba(16,185,129,0.35); }
  50% { box-shadow: 0 4px 30px rgba(16,185,129,0.6); }
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: rgba(255,255,255,0.9); }
.topbar a:hover { color: var(--gold); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-phone { color: var(--gold) !important; font-weight: 700; font-size: 0.9rem; }

/* ── HEADER / NAV ── */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250,252,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px; background: var(--navy);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.logo-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.logo-text span { color: var(--sky); }
.logo-sub { font-family: var(--font-body); font-size: 0.65rem; color: var(--gray-500); letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links li { position: relative; }
.nav-links a {
  display: block; padding: 8px 14px; font-size: 0.88rem; font-weight: 500;
  color: var(--gray-700); border-radius: 8px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--sky-pale); }
.nav-links .has-dropdown:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200); padding: 8px; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: var(--transition);
  z-index: 999;
}
.dropdown li a { padding: 10px 14px; font-size: 0.85rem; border-radius: 8px; display: block; color: var(--gray-700); }
.dropdown li a:hover { background: var(--sky-pale); color: var(--navy); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone { font-weight: 700; color: var(--navy); font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
.nav-phone svg { color: var(--green); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); display: block; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0C3D7C 100%);
  position: relative; overflow: hidden; padding: 80px 0 60px;
  min-height: 90vh; display: flex; align-items: center;
}
.hero::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='%23ffffff' fill-opacity='0.03'%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");
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3);
  color: var(--gold-light); padding: 6px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-title { color: var(--white); margin-bottom: 20px; line-height: 1.15; }
.hero-title em { font-style: normal; color: var(--gold); }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 24px; color: rgba(255,255,255,0.6); font-size: 0.82rem;
}
.hero-trust-item { display: flex; align-items: center; gap: 6px; }
.hero-trust-item svg { color: var(--green); }

/* ── FLIGHT SEARCH WIDGET ── */
.flight-search-card {
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); overflow: hidden;
}
.search-tabs {
  display: flex; background: var(--gray-100); padding: 6px; gap: 4px;
}
.search-tab {
  flex: 1; padding: 10px; text-align: center; border-radius: 10px;
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  color: var(--gray-500); border: none; background: transparent;
  transition: var(--transition);
}
.search-tab.active { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }
.search-body { padding: 24px; }
.search-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.search-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.search-row-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.input-group { display: flex; flex-direction: column; gap: 4px; }
.input-group label { font-size: 0.72rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; }
.input-group input, .input-group select {
  border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 11px 14px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--navy);
  background: var(--white); transition: var(--transition); outline: none;
}
.input-group input:focus, .input-group select:focus {
  border-color: var(--sky); box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}
.input-with-icon { position: relative; }
.input-with-icon svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--gray-500); pointer-events: none; }
.input-with-icon input, .input-with-icon select { padding-left: 36px; }
.search-submit { width: 100%; padding: 15px; border-radius: 12px; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 1rem; font-family: var(--font-body); border: none; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.search-submit:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.4); }
.search-help { text-align: center; margin-top: 14px; font-size: 0.8rem; color: var(--gray-500); }
.search-help a { color: var(--sky); font-weight: 600; }

/* ── SECTION WRAPPERS ── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sky); background: var(--sky-pale);
  padding: 4px 12px; border-radius: 50px; margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; color: var(--navy); }
.section-header p { font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--navy); padding: 20px 0; }
.trust-strip-inner { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 32px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; }
.trust-item svg { color: var(--gold); }
.trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.2); }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200); padding: 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--navy));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.service-card:hover { border-color: var(--sky); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; background: var(--sky-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-icon svg { color: var(--sky); }
.service-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; margin-bottom: 16px; color: var(--gray-500); }
.service-card a { font-size: 0.85rem; font-weight: 600; color: var(--sky); display: flex; align-items: center; gap: 4px; }
.service-card a:hover { color: var(--navy); }

/* ── AIRLINES GRID ── */
.airlines-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.airline-chip {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  padding: 16px; text-align: center; transition: var(--transition); cursor: pointer;
  background: var(--white); text-decoration: none;
}
.airline-chip:hover { border-color: var(--sky); background: var(--sky-pale); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.airline-chip .code { font-family: var(--font-mono); font-size: 1.4rem; font-weight: 500; color: var(--navy); display: block; margin-bottom: 4px; }
.airline-chip .name { font-size: 0.75rem; color: var(--gray-500); display: block; }

/* ── FAQ ── */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: var(--sky); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; background: var(--white);
  font-weight: 600; font-size: 0.95rem; color: var(--navy); gap: 16px;
}
.faq-question:hover { background: var(--sky-pale); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--sky-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--sky); transform: rotate(45deg); }
.faq-icon svg { color: var(--sky); width: 14px; height: 14px; }
.faq-item.open .faq-icon svg { color: var(--white); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 0.9rem; color: var(--gray-700); line-height: 1.7; border-top: 1px solid var(--gray-200); padding-top: 16px; }
.faq-item.open .faq-answer { display: block; }
.faq-cta-block { background: var(--navy); border-radius: var(--radius-lg); padding: 40px; text-align: center; margin-top: 48px; }
.faq-cta-block h3 { color: var(--white); margin-bottom: 12px; }
.faq-cta-block p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1.5px solid var(--gray-200); transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--sky); }
.blog-thumb {
  height: 200px; background: linear-gradient(135deg, var(--navy-mid), var(--sky));
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.blog-thumb .category-tag {
  position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.blog-thumb svg { color: rgba(255,255,255,0.3); }
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 14px; font-size: 0.76rem; color: var(--gray-500); margin-bottom: 10px; align-items: center; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-body h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.blog-body p { font-size: 0.86rem; color: var(--gray-500); margin-bottom: 16px; }
.blog-read-more { font-size: 0.84rem; font-weight: 600; color: var(--sky); display: flex; align-items: center; gap: 4px; }

/* ── AGENCIES ── */
.agencies-table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); border: 1.5px solid var(--gray-200); }
.agencies-table { width: 100%; border-collapse: collapse; }
.agencies-table th { background: var(--navy); color: var(--white); padding: 14px 18px; text-align: left; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.agencies-table td { padding: 16px 18px; border-bottom: 1px solid var(--gray-100); font-size: 0.88rem; color: var(--gray-700); vertical-align: top; }
.agencies-table tr:last-child td { border-bottom: none; }
.agencies-table tr:hover td { background: var(--sky-pale); }
.agency-name { font-weight: 700; color: var(--navy); }
.agency-badge { display: inline-block; font-size: 0.7rem; font-weight: 600; padding: 2px 8px; border-radius: 50px; background: var(--sky-pale); color: var(--sky); margin-top: 2px; }
.agency-phone a { color: var(--sky); font-weight: 600; }
.agency-gbp a { color: var(--sky); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%); width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ── LIVE CHAT WIDGET ── */
.live-chat-bubble {
  position: fixed; bottom: 24px; left: 24px; z-index: 998;
  display: flex; align-items: center; gap: 10px;
}
.chat-btn {
  width: 58px; height: 58px; border-radius: 50%; background: var(--sky); color: var(--white);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); transition: var(--transition);
  animation: bounce-chat 3s ease infinite;
}
.chat-btn:hover { transform: scale(1.1); background: var(--navy); }
.chat-label {
  background: var(--white); border-radius: 50px; padding: 8px 14px;
  font-size: 0.82rem; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-md);
  white-space: nowrap;
}
@keyframes bounce-chat {
  0%,20%,50%,80%,100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

/* ── CALL FLOATING ── */
.call-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
}
.call-float-btn {
  display: flex; align-items: center; gap: 12px; background: var(--green);
  color: var(--white); border: none; border-radius: 50px; padding: 14px 22px;
  cursor: pointer; font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(16,185,129,0.45); transition: var(--transition);
  animation: pulse-call 2.2s infinite;
}
.call-float-btn:hover { background: #059669; transform: translateY(-2px); animation: none; }
.call-float-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
@keyframes pulse-call {
  0%,100% { box-shadow: 0 4px 20px rgba(16,185,129,0.45); }
  50% { box-shadow: 0 4px 40px rgba(16,185,129,0.7), 0 0 0 8px rgba(16,185,129,0.1); }
}

/* ── POPUP OVERLAY ── */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(10,35,66,0.65);
  backdrop-filter: blur(6px); z-index: 9999; display: flex;
  align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.popup-overlay.visible { opacity: 1; visibility: visible; }
.popup-card {
  background: var(--white); border-radius: var(--radius-xl); max-width: 540px; width: 100%;
  overflow: hidden; box-shadow: var(--shadow-xl); transform: translateY(20px) scale(0.96);
  transition: var(--transition);
}
.popup-overlay.visible .popup-card { transform: translateY(0) scale(1); }
.popup-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 32px 32px 24px; position: relative; text-align: center;
}
.popup-header h2 { color: var(--white); font-size: 1.6rem; margin-bottom: 8px; }
.popup-header p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.popup-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
  border-radius: 50%; background: rgba(255,255,255,0.15); border: none;
  color: var(--white); cursor: pointer; font-size: 1.2rem; display: flex;
  align-items: center; justify-content: center; transition: var(--transition);
}
.popup-close:hover { background: rgba(255,255,255,0.3); }
.popup-body { padding: 28px 32px 32px; text-align: center; }
.popup-phone {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--navy); display: block; margin: 12px 0; letter-spacing: 0.02em;
}
.popup-body p { color: var(--gray-500); font-size: 0.88rem; margin-bottom: 20px; }
.popup-actions { display: flex; flex-direction: column; gap: 10px; }
.popup-chat-link { font-size: 0.85rem; color: var(--gray-500); margin-top: 8px; }
.popup-chat-link a { color: var(--sky); font-weight: 600; }

/* ── CHAT PANEL ── */
.chat-panel {
  position: fixed; bottom: 92px; left: 24px; z-index: 997; width: 320px;
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--gray-200); overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(10px) scale(0.97);
  transition: var(--transition);
}
.chat-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-panel-header { background: var(--sky); padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; }
.chat-panel-header h4 { color: var(--white); font-size: 0.9rem; }
.chat-panel-header p { color: rgba(255,255,255,0.8); font-size: 0.75rem; }
.chat-close { background: none; border: none; color: var(--white); cursor: pointer; font-size: 1.2rem; }
.chat-msgs { height: 220px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 85%; }
.chat-msg.agent { background: var(--sky-pale); border-radius: 12px 12px 12px 0; padding: 10px 12px; font-size: 0.82rem; color: var(--navy); align-self: flex-start; }
.chat-msg.user { background: var(--navy); color: var(--white); border-radius: 12px 12px 0 12px; padding: 10px 12px; font-size: 0.82rem; align-self: flex-end; }
.chat-input-row { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--gray-200); }
.chat-input-row input { flex: 1; border: 1.5px solid var(--gray-200); border-radius: 20px; padding: 8px 14px; font-size: 0.82rem; font-family: var(--font-body); outline: none; }
.chat-input-row input:focus { border-color: var(--sky); }
.chat-send { width: 36px; height: 36px; border-radius: 50%; background: var(--sky); border: none; color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.chat-send:hover { background: var(--navy); }

/* ── FOOTER ── */
.footer { background: var(--navy); color: rgba(255,255,255,0.8); }
.footer-main { padding: 64px 0 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-top: 16px; margin-bottom: 20px; max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--white); }
.footer-logo-text span { color: var(--sky); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: 0.85rem; }
.footer-social a:hover { background: var(--sky); color: var(--white); }
.footer-col h5 { color: var(--white); font-family: var(--font-body); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.85rem; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold); }
.footer-disclaimer { background: rgba(0,0,0,0.25); padding: 16px 0; font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.footer-disclaimer .container { line-height: 1.6; }

/* ── BREADCRUMBS ── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--gray-500); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--sky); }
.breadcrumb span { color: var(--gray-300); }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 60px 0 50px; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; }

/* ── CARD GENERIC ── */
.card { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--gray-200); padding: 28px; }
.card:hover { box-shadow: var(--shadow-md); }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.stat-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; text-align: center; border: 1.5px solid var(--gray-200); }
.stat-number { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--sky); display: block; margin-bottom: 6px; }
.stat-label { font-size: 0.85rem; color: var(--gray-500); font-weight: 500; }

/* ── POLICY PAGES ── */
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-content h2 { font-size: 1.4rem; color: var(--navy); margin: 36px 0 12px; }
.policy-content h3 { font-size: 1.1rem; color: var(--navy); margin: 24px 0 8px; }
.policy-content p, .policy-content li { font-size: 0.92rem; color: var(--gray-700); line-height: 1.75; }
.policy-content ul { padding-left: 20px; margin: 12px 0; }
.policy-content li { margin-bottom: 6px; }
.policy-content strong { color: var(--navy); }
.policy-date { display: inline-block; background: var(--sky-pale); color: var(--sky); font-size: 0.8rem; font-weight: 600; padding: 4px 12px; border-radius: 50px; margin-bottom: 24px; }

/* ── AGENCY FORM ── */
.agency-form { background: var(--sky-pale); border-radius: var(--radius-xl); padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 11px 14px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--navy); background: var(--white); outline: none; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(14,165,233,0.12); }
.form-full { grid-column: 1 / -1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .flight-search-card { order: -1; }
  .search-row, .search-row-3, .search-row-4 { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .topbar .container { flex-direction: column; align-items: flex-start; }
  .agencies-table { font-size: 0.8rem; }
  .agencies-table th, .agencies-table td { padding: 10px 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .chat-panel { width: calc(100vw - 48px); }
  .call-float-btn .call-text { display: none; }
  h1 { font-size: 2rem; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .hero { padding: 48px 0 40px; min-height: auto; }
  .popup-card { margin: 12px; }
  .popup-phone { font-size: 1.6rem; }
}

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: var(--white); z-index: 1100; box-shadow: var(--shadow-xl);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1); overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-header { background: var(--navy); padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; }
.mobile-nav-close { background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.mobile-nav ul { list-style: none; padding: 16px; }
.mobile-nav ul li a { display: block; padding: 13px 16px; border-radius: 10px; font-weight: 500; font-size: 0.95rem; color: var(--navy); }
.mobile-nav ul li a:hover { background: var(--sky-pale); color: var(--sky); }
.mobile-nav-cta { padding: 16px 24px; border-top: 1px solid var(--gray-200); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1099; display: none; }
.mobile-overlay.open { display: block; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.animate-up { animation: fadeInUp 0.6s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ── REVIEW STARS ── */
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.review-card { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--gray-200); padding: 24px; }
.review-card blockquote { font-style: italic; font-size: 0.9rem; color: var(--gray-700); margin: 12px 0; }
.reviewer { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.reviewer-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--sky), var(--navy)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.85rem; }
.reviewer-name { font-weight: 600; font-size: 0.85rem; color: var(--navy); }
.reviewer-meta { font-size: 0.75rem; color: var(--gray-500); }

/* ── TABLE OF CONTENTS (Policy pages) ── */
.toc { background: var(--sky-pale); border-left: 3px solid var(--sky); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin-bottom: 32px; }
.toc h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 12px; }
.toc ol { padding-left: 18px; }
.toc li { margin-bottom: 6px; }
.toc a { color: var(--sky); font-size: 0.85rem; }

/* ── NOTICE BOX ── */
.notice { border-radius: var(--radius); padding: 16px 20px; display: flex; gap: 12px; align-items: flex-start; font-size: 0.88rem; margin: 20px 0; }
.notice-info { background: var(--sky-pale); border: 1px solid rgba(14,165,233,0.25); color: var(--navy); }
.notice-warn { background: #FEF3C7; border: 1px solid rgba(245,158,11,0.35); color: #92400E; }
.notice svg { flex-shrink: 0; margin-top: 1px; }

/* Print */
@media print { .popup-overlay, .call-float, .live-chat-bubble, .header, .topbar { display: none !important; } }
