/* ============================================================
   QUICK AIRPORT TRANSFERS — SHARED STYLESHEET
   ============================================================ */

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

:root {
  --navy: #1B2A4A;
  --navy-deep: #0F1D35;
  --navy-mid: #243558;
  --gold: #B8922A;
  --gold-light: #D4AA50;
  --gold-pale: #F5EDD8;
  --gold-line: rgba(184,146,42,0.35);
  --cream: #FAF8F4;
  --cream2: #F2EDE4;
  --warm-white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-mid: #3D4455;
  --text-light: #6B7280;
  --border: rgba(27,42,74,0.1);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Raleway', sans-serif;
  --shadow: 0 4px 32px rgba(27,42,74,0.10);
  --shadow-lg: 0 12px 56px rgba(27,42,74,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy-deep);
  padding: 9px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left { display: flex; gap: 28px; align-items: center; }
.top-bar a, .top-bar span {
  font-size: 11px; font-weight: 500; letter-spacing: 0.8px;
  color: rgba(255,255,255,0.75); text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.top-bar a:hover { color: var(--gold-light); }
.top-bar-right { display: flex; gap: 20px; align-items: center; }
.top-bar .divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }

/* ===== NAVIGATION ===== */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 86px;
  box-shadow: var(--shadow);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 64px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li > a {
  color: var(--navy); text-decoration: none;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  padding: 10px 13px; border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--gold); background: var(--gold-pale); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--warm-white); border: 1px solid var(--border);
  border-top: 3px solid var(--gold); min-width: 240px; padding: 8px 0;
  z-index: 200; box-shadow: var(--shadow-lg); border-radius: 0 0 6px 6px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 11px 22px; font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--text-mid);
  text-decoration: none; transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--gold); }
.nav-cta {
  background: var(--navy) !important; color: var(--warm-white) !important;
  padding: 11px 22px !important; border-radius: 3px; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--navy-deep) !important; color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ===== BUTTONS ===== */
.btn-gold {
  background: var(--gold); color: #fff; border: none;
  padding: 15px 36px; font-family: var(--sans); font-size: 11px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px; transition: background 0.25s, transform 0.2s;
  border-radius: 3px;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy); color: #fff; border: none;
  padding: 15px 36px; font-family: var(--sans); font-size: 11px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px; transition: background 0.25s, transform 0.2s;
  border-radius: 3px;
}
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-outline-navy {
  background: transparent; color: var(--navy); border: 2px solid var(--navy);
  padding: 13px 34px; font-family: var(--sans); font-size: 11px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, color 0.2s; border-radius: 3px;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-white-outline {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.55);
  padding: 13px 34px; font-family: var(--sans); font-size: 11px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s; border-radius: 3px;
}
.btn-white-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ===== SECTION COMMONS ===== */
section { padding: 96px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-tag::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
h1.page-title, h2.heading {
  font-family: var(--serif); font-weight: 500; line-height: 1.2; color: var(--navy); margin-bottom: 18px;
}
h1.page-title { font-size: clamp(34px, 5vw, 58px); }
h2.heading { font-size: clamp(28px, 3.5vw, 48px); }
h2.heading em, h1.page-title em { font-style: italic; color: var(--gold); }
.heading-sub {
  font-size: 14px; color: var(--text-light); max-width: 580px;
  line-height: 1.9; margin-bottom: 52px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  height: 420px; position: relative;
  display: flex; align-items: flex-end; padding-bottom: 56px; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,21,40,0.85) 0%, rgba(11,21,40,0.4) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 0 80px; }
.page-hero-content .section-tag { color: var(--gold-light); }
.page-hero-content .section-tag::before { background: var(--gold-light); }

/* ===== TRUST STRIP ===== */
.booking-strip { background: var(--navy); padding: 0 48px; }
.booking-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; height: 78px;
}
.bs-item {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.12); height: 100%;
}
.bs-item:first-child { padding-left: 0; }
.bs-item:last-child { border-right: none; }
.bs-icon { font-size: 20px; min-width: 24px; }
.bs-text h4 { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 2px; }
.bs-text p { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ===== AIRPORT CARDS ===== */
.airport-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.airport-card {
  background: var(--warm-white); border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.airport-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ac-img { height: 180px; background-size: cover; background-position: center; position: relative; }
.ac-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,21,40,0.65) 0%, transparent 60%); }
.ac-badge {
  position: absolute; bottom: 14px; left: 16px; z-index: 2;
  background: var(--gold); color: #fff; font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
}
.ac-body { padding: 22px 20px 26px; }
.ac-body h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.ac-body p { font-size: 12.5px; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.ac-link {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s;
}
.ac-link:hover { gap: 10px; }
.ac-link::after { content: '→'; }

/* ===== WHY LIST ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-photo { position: relative; }
.why-photo img { width: 100%; height: 580px; object-fit: cover; object-position: center top; border-radius: 6px; box-shadow: var(--shadow-lg); }
.why-photo-badge {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--navy); color: #fff; padding: 22px 26px;
  border-radius: 4px; text-align: center; box-shadow: var(--shadow);
}
.why-photo-badge .num { font-family: var(--serif); font-size: 40px; font-weight: 500; color: var(--gold-light); line-height: 1; display: block; margin-bottom: 4px; }
.why-photo-badge span { font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.8; }
.why-list { list-style: none; margin-top: 20px; }
.why-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.why-item:last-child { border-bottom: none; }
.why-icon { width: 42px; height: 42px; min-width: 42px; background: var(--gold-pale); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.why-item-text h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-item-text p { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* ===== FLEET ===== */
.fleet-section { background: var(--navy); padding: 96px 48px; }
.fleet-section .section-tag { color: var(--gold-light); }
.fleet-section .section-tag::before { background: var(--gold-light); }
.fleet-section h2.heading { color: #fff; }
.fleet-section h2.heading em { color: var(--gold-light); }
.fleet-section .heading-sub { color: rgba(255,255,255,0.65); }
.fleet-track { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.fleet-card { border-radius: 6px; overflow: hidden; position: relative; cursor: pointer; }
.fleet-card img { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform 0.5s; }
.fleet-card:hover img { transform: scale(1.05); }
.fleet-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,21,40,0.95) 0%, transparent 100%);
  padding: 48px 28px 28px;
}
.fleet-overlay h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.fleet-overlay .fleet-cap { font-size: 11px; color: var(--gold-light); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.fleet-tag { position: absolute; top: 18px; right: 18px; background: var(--gold); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 11px; border-radius: 2px; }

/* ===== LEGACY ===== */
.legacy-section { background: var(--cream2); }
.legacy-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.legacy-image img { width: 100%; height: 460px; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow-lg); }
.legacy-quote { background: var(--warm-white); border-left: 4px solid var(--gold); padding: 22px 26px; margin: 26px 0; border-radius: 0 6px 6px 0; }
.legacy-quote p { font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--navy); line-height: 1.7; }
.legacy-text p { font-size: 14px; color: var(--text-mid); line-height: 1.9; margin-bottom: 14px; }
.legacy-link { color: var(--gold); font-weight: 700; text-decoration: none; transition: color 0.2s; }
.legacy-link:hover { color: var(--gold-light); }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.testi-card { background: var(--cream); border-radius: 6px; padding: 34px 28px; border-top: 3px solid var(--gold); box-shadow: var(--shadow); }
.testi-stars { color: #D4A017; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-family: var(--serif); font-size: 17px; font-style: italic; color: var(--text-mid); line-height: 1.75; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; min-width: 44px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 18px; color: var(--gold-light); font-weight: 500; }
.testi-author h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.testi-author span { font-size: 11px; color: var(--text-light); }

/* ===== SERVICE DETAIL ===== */
.service-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: start; }
.service-text p { font-size: 14.5px; color: var(--text-mid); line-height: 1.95; margin-bottom: 18px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.feat-box { display: flex; gap: 14px; align-items: flex-start; background: var(--cream2); border-radius: 5px; padding: 18px 16px; }
.feat-box .ficon { font-size: 22px; min-width: 28px; }
.feat-box h4 { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.feat-box p { font-size: 11.5px; color: var(--text-light); line-height: 1.5; }
.service-sidebar img { width: 100%; height: 380px; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow-lg); margin-bottom: 20px; }
.areas-box { background: var(--navy); border-radius: 6px; padding: 26px 24px; }
.areas-box h4 { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; }
.areas-box p { font-size: 12.5px; color: rgba(255,255,255,0.7); line-height: 1.85; }

/* ===== FORMS ===== */
.form-card { background: var(--warm-white); border-radius: 8px; padding: 44px 40px; box-shadow: var(--shadow-lg); border-top: 4px solid var(--gold); }
.form-card h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--cream); border: 1.5px solid var(--border);
  color: var(--text-dark); padding: 13px 16px; font-family: var(--sans);
  font-size: 13.5px; border-radius: 4px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #aaa; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,42,0.12); background: #fff; }
.form-group select option { background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; background: var(--navy); color: #fff; border: none; padding: 17px; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; border-radius: 4px; margin-top: 6px; }
.form-submit:hover { background: var(--navy-deep); }
.form-note { text-align: center; font-size: 11.5px; color: var(--text-light); margin-top: 14px; line-height: 1.7; }
.form-note a { color: var(--gold); text-decoration: none; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.ci-item { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.ci-item:last-child { border-bottom: none; }
.ci-icon-wrap { width: 50px; height: 50px; min-width: 50px; background: var(--navy); border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.ci-detail h4 { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.ci-detail a, .ci-detail p { font-size: 14px; color: var(--text-mid); text-decoration: none; line-height: 1.65; }
.ci-detail a:hover { color: var(--navy); }

/* ===== CTA BAND ===== */
.cta-band { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%); padding: 80px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(26px, 4vw, 44px); font-weight: 500; color: #fff; margin-bottom: 16px; position: relative; }
.cta-band h2 em { font-style: italic; color: var(--gold-light); }
.cta-band p { font-size: 15px; color: rgba(255,255,255,0.72); max-width: 500px; margin: 0 auto 36px; line-height: 1.85; position: relative; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== ABOUT HIGHLIGHTS ===== */
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0; }
.ah-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; background: var(--cream); border-radius: 4px; border-left: 3px solid var(--gold); }
.ah-item .ahi { font-size: 18px; }
.ah-item div h4 { font-size: 11px; font-weight: 700; color: var(--navy); letter-spacing: 0.5px; margin-bottom: 3px; }
.ah-item div p { font-size: 11px; color: var(--text-light); line-height: 1.5; }

/* ===== STATS ===== */
.about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.stat-item { text-align: center; padding: 32px 20px; background: var(--warm-white); border-radius: 6px; box-shadow: var(--shadow); }
.stat-item .num { font-family: var(--serif); font-size: 46px; font-weight: 500; color: var(--gold); line-height: 1; display: block; margin-bottom: 8px; }
.stat-item p { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); }

/* ===== VALUE CARDS ===== */
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--cream2); border-radius: 6px; padding: 34px 26px; border-bottom: 3px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
.value-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.value-card .vicon { font-size: 34px; margin-bottom: 16px; display: block; }
.value-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.value-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.75; }

/* ===== AREAS PILLS ===== */
.areas-grid { display: grid; grid-template-columns: repeat(8,1fr); gap: 12px; margin-top: 44px; }
.area-pill { background: var(--warm-white); border: 1px solid var(--border); border-radius: 40px; padding: 10px 16px; text-align: center; transition: background 0.2s, border-color 0.2s; }
.area-pill:hover { background: var(--navy); border-color: var(--navy); }
.area-pill:hover p { color: #fff; }
.area-pill p { font-size: 11px; font-weight: 600; color: var(--text-mid); letter-spacing: 0.5px; transition: color 0.2s; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; }
.blog-card { background: var(--warm-white); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 210px; background-size: cover; background-position: center; }
.blog-card-body { padding: 24px 22px 28px; }
.blog-tag { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.blog-card-body h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.blog-card-body p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }
.blog-meta { font-size: 11px; color: var(--text-light); display: flex; align-items: center; gap: 8px; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--navy); margin: 40px 0 16px; }
.legal-content h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--navy); margin: 28px 0 12px; }
.legal-content p { font-size: 14px; color: var(--text-mid); line-height: 1.9; margin-bottom: 16px; }
.legal-content ul { margin: 12px 0 20px 24px; }
.legal-content ul li { font-size: 14px; color: var(--text-mid); line-height: 1.85; margin-bottom: 8px; }
.legal-content a { color: var(--gold); text-decoration: none; }
.legal-content a:hover { color: var(--gold-light); }
.legal-last-updated { font-size: 12px; color: var(--text-light); font-style: italic; margin-bottom: 40px; }

/* ===== EMAIL POPUP ===== */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(11,21,40,0.72);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(4px);
}
.popup-overlay.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.popup-box {
  background: var(--warm-white); border-radius: 8px; max-width: 520px; width: 92%;
  overflow: hidden; box-shadow: 0 24px 80px rgba(11,21,40,0.35);
  animation: slideUp 0.35s ease;
  position: relative;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.popup-top {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  padding: 40px 40px 32px; text-align: center;
}
.popup-top h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; color: #fff; margin-bottom: 10px; }
.popup-top h3 em { font-style: italic; color: var(--gold-light); }
.popup-top p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; }
.popup-body { padding: 32px 40px; }
.popup-body .form-group { margin-bottom: 14px; }
.popup-submit { width: 100%; background: var(--gold); color: #fff; border: none; padding: 16px; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; border-radius: 4px; transition: background 0.2s; }
.popup-submit:hover { background: var(--gold-light); }
.popup-skip { display: block; text-align: center; margin-top: 14px; font-size: 12px; color: var(--text-light); cursor: pointer; transition: color 0.2s; }
.popup-skip:hover { color: var(--navy); }
.popup-close { position: absolute; top: 14px; right: 18px; font-size: 22px; color: rgba(255,255,255,0.6); cursor: pointer; line-height: 1; background: none; border: none; transition: color 0.2s; }
.popup-close:hover { color: #fff; }
.popup-disclaimer { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 12px; line-height: 1.6; }

/* ===== FOOTER ===== */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 72px 48px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand-logo { height: 56px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.85; max-width: 280px; margin-bottom: 20px; }
.footer-contact-mini a { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-contact-mini a:hover { color: var(--gold-light); }
.footer-col h4 { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-tagline { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-tagline a { color: var(--gold-light); text-decoration: none; font-weight: 600; }
.footer-tagline a:hover { color: #fff; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.28); }

/* ===== MOBILE ===== */
/* ============================================================
   TABLET — max 960px
   ============================================================ */
@media (max-width: 960px) {
  /* Top bar */
  .top-bar { padding: 8px 20px; flex-wrap: wrap; gap: 6px; height: auto; }
  .top-bar-left { gap: 10px; flex-wrap: wrap; }
  .top-bar a, .top-bar span { font-size: 10px; }

  /* Nav */
  nav { padding: 0 20px; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 86px; left: 0; right: 0;
    background: #fff; padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg); z-index: 999; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; border-top: none; padding: 4px 0 4px 16px; }
  .hamburger { display: flex; }

  /* Sections */
  section { padding: 56px 20px; }
  .fleet-section { padding: 56px 20px; }
  .cta-band { padding: 56px 20px; }

  /* Trust strip */
  .booking-strip { padding: 0 20px; }
  .booking-strip-inner { height: auto; flex-direction: column; padding: 16px 0; gap: 0; }
  .bs-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 12px 0; width: 100%; }

  /* Two-column grids → single column */
  .why-grid,
  .legacy-inner,
  .service-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Airport grid → 2 columns on tablet */
  .airport-grid { grid-template-columns: 1fr 1fr !important; gap: 16px; }

  /* Fleet */
  .fleet-track { grid-template-columns: 1fr; }

  /* Testimonials, blog, values → single column */
  .testi-grid,
  .blog-grid { grid-template-columns: 1fr; }

  /* Our Standards (about-values) → single column */
  .about-values { grid-template-columns: 1fr !important; }

  /* Stats */
  .about-stats { grid-template-columns: 1fr 1fr; }

  /* Areas pills → 4 columns on tablet */
  .areas-grid { grid-template-columns: repeat(4,1fr); }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Misc */
  .why-photo-badge { right: 0; bottom: 0; }
  .why-photo img { height: 380px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .page-hero { height: 300px; padding: 0 0 32px; }
  .page-hero-content { padding: 0 20px; }
  .page-hero h1.page-title { font-size: clamp(26px, 5vw, 40px); }
  .about-strip { padding: 56px 20px; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-strip img { height: 320px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .service-sidebar img { height: 280px; }
  .legacy-image img { height: 300px; }
  .popup-box { margin: 16px; }
  .form-note { font-size: 11px; }
}

/* ============================================================
   MOBILE — max 600px
   ============================================================ */
@media (max-width: 600px) {
  /* Top bar — hide on very small screens, keep phones only */
  .top-bar { display: none; }

  /* Nav */
  nav { height: 70px; padding: 0 16px; }
  .nav-logo img { height: 50px; }
  .nav-links { top: 70px; padding: 12px 16px; }

  /* Sections */
  section { padding: 48px 16px; }
  .fleet-section { padding: 48px 16px; }
  .cta-band { padding: 48px 16px; }
  .cta-band h2 { font-size: 26px; }
  .cta-band p { font-size: 13px; }
  .cta-band-btns { flex-direction: column; align-items: center; gap: 12px; }
  .cta-band-btns a { width: 100%; text-align: center; justify-content: center; }

  /* Hero */
  .page-hero { height: 260px; padding: 0 0 24px; }
  .page-hero-content { padding: 0 16px; }
  .page-hero h1.page-title { font-size: 24px; line-height: 1.2; }
  .page-hero .section-tag { font-size: 9px; }
  .page-hero .btn-gold { padding: 12px 20px; font-size: 10px; }

  /* Headings */
  h2.heading { font-size: 26px; }
  .heading-sub { font-size: 13px; margin-bottom: 32px; }
  .section-tag { font-size: 9px; letter-spacing: 2px; }

  /* Airport grid → single column on mobile */
  .airport-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .ac-img { height: 160px; }

  /* About strip */
  .about-strip { padding: 48px 16px; }
  .about-strip img { height: 260px; }
  .about-highlights { grid-template-columns: 1fr; gap: 10px; }

  /* About stats → 2 cols */
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-item .num { font-size: 36px; }

  /* Why choose */
  .why-photo img { height: 280px; }
  .why-photo-badge { position: relative; right: auto; bottom: auto; margin-top: 16px; display: inline-block; }
  .why-list { margin-top: 12px; }
  .why-item { padding: 14px 0; }
  .why-icon { width: 36px; height: 36px; min-width: 36px; font-size: 16px; }

  /* Areas grid → 2 columns, all 8 visible */
  .areas-grid { grid-template-columns: 1fr 1fr !important; gap: 8px; }
  .area-pill { padding: 10px 8px; }
  .area-pill p { font-size: 10px; }

  /* Our Standards (about-values) → single column, full width */
  .about-values { grid-template-columns: 1fr !important; gap: 14px; }
  .value-card { padding: 24px 20px; }
  .value-card .vicon { font-size: 28px; margin-bottom: 10px; }
  .value-card h3 { font-size: 18px; }
  .value-card p { font-size: 13px; }

  /* Service detail */
  .service-grid { gap: 28px; }
  .feature-grid { grid-template-columns: 1fr; gap: 10px; }
  .feat-box { padding: 14px 14px; }
  .service-sidebar img { height: 220px; }
  .areas-box { padding: 20px 18px; }
  .areas-box p { font-size: 12px; }

  /* Legacy */
  .legacy-inner { gap: 28px; }
  .legacy-image img { height: 240px; }
  .legacy-quote p { font-size: 16px; }
  .legacy-text p { font-size: 13px; }

  /* Testimonials */
  .testi-grid { gap: 16px; }
  .testi-card { padding: 24px 20px; }
  .testi-card p { font-size: 15px; }

  /* Fleet banner */
  .fleet-section .section-inner > div[style*="position:relative"] img { height: 320px; object-position: center; }
  .fleet-section .section-inner > div[style*="position:relative"] > div[style*="position:absolute;top:50%"] { left: 24px; max-width: calc(100% - 48px); }
  .fleet-section .section-inner > div[style*="position:relative"] h3 { font-size: 26px; }
  .fleet-section .section-inner > div[style*="position:relative"] p { font-size: 11px; }

  /* Contact */
  .contact-grid { gap: 28px; }
  .ci-icon-wrap { width: 40px; height: 40px; min-width: 40px; font-size: 16px; }
  .ci-detail a, .ci-detail p { font-size: 13px; }
  .form-card { padding: 24px 16px; }
  .form-card h3 { font-size: 22px; margin-bottom: 20px; }

  /* Booking strip */
  .booking-strip-inner { padding: 12px 0; }
  .bs-text h4 { font-size: 8px; }
  .bs-text p { font-size: 11px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-logo { height: 46px; }
  .footer-brand p { font-size: 12px; max-width: 100%; }
  .footer-col h4 { font-size: 9px; }
  .footer-col ul li a { font-size: 12px; }
  .footer-tagline { font-size: 11px; text-align: center; }
  .footer-copy { font-size: 10px; }
  footer { padding: 48px 16px 24px; }

  /* Popup */
  .popup-top { padding: 28px 24px 20px; }
  .popup-top h3 { font-size: 22px; }
  .popup-body { padding: 24px; }

  /* Buttons */
  .btn-gold, .btn-navy, .btn-outline-navy { padding: 13px 24px; font-size: 10px; }

  /* Inline grid overrides for airport pages Our Standards section */
  div[style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }

  /* 5-col airport grid on homepage/about → 1 col on mobile */
  .airport-grid[style*="repeat(5"] { grid-template-columns: 1fr !important; }
}

/* ============================================================
   OUR STANDARDS GRID — airport pages
   ============================================================ */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 36px;
}
@media (max-width: 960px) {
  .standards-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .standards-grid { grid-template-columns: 1fr !important; gap: 14px; }
}

/* ============================================================
   FIVE COLUMN AIRPORT GRID — homepage & about
   ============================================================ */
.airport-grid.five-col { grid-template-columns: repeat(5,1fr) !important; gap: 14px; }
@media (max-width: 1100px) {
  .airport-grid.five-col { grid-template-columns: repeat(3,1fr) !important; }
}
@media (max-width: 700px) {
  .airport-grid.five-col { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
  .airport-grid.five-col { grid-template-columns: 1fr !important; }
}
