

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

  :root {
    --navy: #0d1b3e;
    --navy-mid: #162447;
    --navy-light: #1f3460;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-pale: #f5e9c8;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --text-dark: #0d1b3e;
    --text-mid: #3d4f6e;
    --text-muted: #7a8ba8;
    --border: rgba(13,27,62,0.1);
    --radius: 12px;
    --radius-lg: 20px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ANNOUNCEMENT BAR */
  .announcement {
    background: var(--navy);
    color: var(--gold-light);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
  }
  .announcement span { color: rgba(255,255,255,0.7); margin: 0 6px; }

  /* HEADER */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
  }
  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .logo-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .logo-icon svg { width: 26px; height: 26px; fill: var(--gold); }
  .logo-text { line-height: 1.2; }
  .logo-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.3px;
  }
  .logo-text span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  nav { display: flex; align-items: center; gap: 4px; }
  .nav-item {
    position: relative;
  }
  nav a, .nav-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
  }
  nav a:hover, .nav-btn:hover { color: var(--navy); background: var(--off-white); }
  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 200px;
    padding: 16px 8px 8px;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 8px 32px rgba(13,27,62,0.12);
    z-index: 200;
  }
  /* Invisible bridge fills the gap so mouse can travel from button to dropdown */
  .nav-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent;
  }
  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown,
  .nav-item.open .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-dropdown a {
    display: block;
    padding: 9px 14px;
    font-size: 13.5px;
    color: var(--text-mid);
    border-radius: 8px;
  }
  .nav-dropdown a:hover { color: var(--navy); background: var(--off-white); }
  .chevron { font-size: 11px; transition: transform 0.2s; }
  .nav-item:hover .chevron,
  .nav-item.open .chevron { transform: rotate(180deg); }

  .header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .header-email {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
  }
  .header-email:hover { color: var(--navy); }
  .btn-primary {
    background: var(--navy);
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
  }
  .btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }
  .btn-secondary {
    background: transparent;
    color: var(--navy);
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--navy);
    transition: background 0.2s, transform 0.15s;
  }
  .btn-secondary:hover { background: var(--navy); color: white; transform: translateY(-1px); }
  .btn-gold {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.2px;
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: white;
    z-index: 300;
    padding: 24px;
    overflow-y: auto;
    flex-direction: column;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
  }
  .mobile-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--navy);
    line-height: 1;
  }
  .mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu a.sub {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-mid);
    padding-left: 16px;
  }
  .mobile-menu-section { margin-top: 8px; margin-bottom: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); padding: 12px 0 4px; }

  /* HERO */
  .hero {
    background: var(--navy);
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .hero-badge::before { content: '✦'; font-size: 10px; }
  .hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 500;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 480px;
  }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
  .hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 400;
  }
  .trust-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* PRICE CARD */
  .price-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(4px);
  }
  .price-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .price-card-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
  }
  .price-card-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
  }
  .live-badge {
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.3);
    color: #34d399;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
  }
  .price-grid { display: flex; flex-direction: column; gap: 2px; }
  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: 8px;
    transition: background 0.15s;
    cursor: default;
  }
  .price-row:hover { background: rgba(255,255,255,0.05); }
  .price-airport {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
  }
  .airport-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
  }
  .price-row:hover .airport-dot { opacity: 1; }
  .price-amount {
    font-size: 16px;
    font-weight: 700;
    color: white;
  }
  .price-from { font-size: 11px; color: rgba(255,255,255,0.4); margin-right: 3px; font-weight: 400; }
  .price-card-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-align: center;
  }

  /* SECTIONS */
  .section { padding: 80px 24px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.3px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-desc {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 580px;
    margin-top: 14px;
  }

  /* WHY US */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }
  .why-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .why-card:hover { border-color: var(--gold); transform: translateY(-3px); }
  .why-icon {
    width: 48px; height: 48px;
    background: var(--off-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .why-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .why-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
  }

  /* SERVICES */
  .services-section {
    background: var(--off-white);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
  }
  .service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,27,62,0.1); }
  .service-num {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
  }
  .service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .service-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
  }

  /* AREAS */
  .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 40px;
  }
  .area-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .area-chip:hover { border-color: var(--navy); background: var(--navy); color: white; }
  .area-chip::before { content: '📍'; font-size: 14px; }

  /* AIRPORTS */
  .airports-section { background: var(--navy); }
  .airports-section .section-title { color: white; }
  .airports-section .section-desc { color: rgba(255,255,255,0.6); }
  .airports-section .section-label { color: var(--gold); }
  .airports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 48px;
  }
  .airport-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    display: block;
  }
  .airport-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(201,168,76,0.4); }
  .airport-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  .airport-name {
    font-size: 17px;
    font-weight: 600;
    color: white;
  }
  .airport-code {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    margin-top: 2px;
  }
  .airport-price-badge {
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 8px;
    padding: 8px 14px;
    text-align: right;
  }
  .airport-price-badge .from { font-size: 10px; color: var(--gold); display: block; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
  .airport-price-badge .amount { font-size: 20px; font-weight: 700; color: white; line-height: 1.2; }
  .airport-detail {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .airport-detail::before { content: '→'; color: var(--gold); }

  /* REVIEWS */
  .reviews-section { background: var(--off-white); }
  .reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
  }
  .rating-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 24px;
  }
  .rating-num {
    font-family: 'Fraunces', serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1;
  }
  .stars { color: var(--gold); font-size: 18px; margin-bottom: 4px; }
  .rating-count { font-size: 13px; color: var(--text-muted); }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
  .review-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: transform 0.2s;
  }
  .review-card:hover { transform: translateY(-2px); }
  .review-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
  .review-text {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 16px;
  }
  .reviewer {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
  }

  /* FAQ */
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
  }
  .faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    list-style: none;
    user-select: none;
    gap: 12px;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-toggle {
    width: 22px; height: 22px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.2s;
  }
  details[open] .faq-toggle { background: var(--navy); border-color: var(--navy); color: white; transform: rotate(45deg); }
  .faq-a {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
  }

  /* DRIVERS */
  .drivers-section { background: var(--navy); overflow: hidden; }
  .drivers-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
  }
  .drivers-intro { max-width: 600px; }
  .drivers-section .section-title { color: white; }
  .drivers-section .section-desc { color: rgba(255,255,255,0.6); }
  .drivers-section .section-label { color: var(--gold); }
  .driver-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    width: 100%;
    max-width: 820px;
  }
  .driver-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
  }
  .driver-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
  .driver-photo-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
  }
  .driver-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }
  .driver-card:hover .driver-photo-wrap img { transform: scale(1.03); }
  .driver-info {
    padding: 22px 24px;
  }
  .driver-name {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: white;
    margin-bottom: 4px;
  }
  .driver-role {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .driver-bio {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin-bottom: 14px;
  }
  .driver-badges { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
  .badge {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 50px;
    background: rgba(201,168,76,0.15);
    color: var(--gold-light);
    border: 1px solid rgba(201,168,76,0.2);
  }

  /* CTA */
  .cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .cta-section h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
    position: relative;
  }
  .cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
    position: relative;
  }
  .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
  .btn-white {
    background: white;
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.15s, background 0.2s;
  }
  .btn-white:hover { background: var(--gold-pale); transform: translateY(-2px); }
  .btn-outline-white {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

  /* CLIENTS */
  .clients-section { padding: 60px 24px; border-top: 1px solid var(--border); }
  .clients-label { text-align: center; font-size: 13px; color: var(--text-muted); font-weight: 500; margin-bottom: 28px; text-transform: uppercase; letter-spacing: 1.5px; }
  .clients-row { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
  .client-name { font-size: 15px; font-weight: 600; color: var(--text-muted); letter-spacing: -0.2px; opacity: 0.7; transition: opacity 0.2s; }
  .client-name:hover { opacity: 1; color: var(--navy); }

  /* FOOTER */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding: 60px 24px 30px;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
  }
  .footer-brand .logo-text strong { color: white; }
  .footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
  }
  .footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
  }
  .footer-email:hover { color: white; }
  .footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: white; }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
  }
  .footer-social { display: flex; gap: 12px; }
  .social-link {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 16px;
    transition: border-color 0.2s, color 0.2s;
  }
  .social-link:hover { border-color: var(--gold); color: var(--gold); }

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

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .header-email { display: none; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .price-card { order: -1; }
    .driver-cards { grid-template-columns: 1fr 1fr; max-width: 100%; }
    .driver-photo-wrap { height: 220px; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 600px) {
    .driver-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .driver-photo-wrap { height: 260px; }
  }
  @media (max-width: 600px) {
    .hero { min-height: auto; }
    .hero-inner { padding: 60px 20px; }
    .hero h1 { font-size: 2.2rem; }
    .section { padding: 60px 20px; }
    .footer-top { grid-template-columns: 1fr; }
    .rating-summary { flex-direction: column; align-items: flex-start; gap: 8px; }
    .reviews-header { flex-direction: column; }
  }

  /* PHOTO STRIP */

  /* Full-width banner photos */

  /* Content photos inside two-col layout */

  /* Airport card thumbnails */

  /* Team/driver portraits */
  .driver-photo { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s; }

  /* Christina specific */

  /* Photo containers */
  .photo-strip img { width:100%; height:100%; object-fit:cover; display:block; }
  .photo-split img { width:100%; height:100%; object-fit:cover; display:block; }
  .photo-row img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s; }
  .photo-row img:hover { transform:scale(1.04); }

  /* ── TABLET (max-width: 900px) ── */
  

  /* ── MOBILE (max-width: 600px) ── */
  
  /* ═══════════════════════════════════════════════════════════ */

  
  /* ═══ RESPONSIVE IMAGE SYSTEM ═══════════════════════════════ */
  .full-photo  { width:100%; height:320px; object-fit:cover; object-position:center 40%; display:block; }
  .photo-full  { width:100%; height:360px; object-fit:cover; object-position:center 40%; display:block; }
  .photo-break { width:100%; height:360px; object-fit:cover; object-position:center 35%; display:block; }
  .cpic    { width:100%; height:280px; object-fit:cover; border-radius:var(--radius-lg); margin:32px 0; display:block; }
  .ci-img  { width:100%; height:300px; object-fit:cover; border-radius:var(--radius-lg); display:block; }
  .ci-photo{ width:100%; height:340px; object-fit:cover; border-radius:var(--radius-lg); display:block; }
  .card-img { width:100%; height:180px; object-fit:cover; object-position:center 40%; display:block; }
  .team-photo { width:100%; height:360px; object-fit:cover; object-position:center top; display:block; transition:transform 0.4s; }
  .christina-photo { width:100%; max-width:380px; height:340px; object-fit:cover; object-position:center top; border-radius:16px 16px 0 0; display:block; border:2px solid rgba(201,168,76,0.25); border-bottom:none; }
  .christina-airports-photo { width:100%; height:380px; object-fit:cover; object-position:center 15%; border-radius:var(--radius-lg); display:block; }
  .photo-strip { display:grid; grid-template-columns:1fr 1fr 1fr; height:320px; overflow:hidden; }
  .photo-strip img { width:100%; height:100%; object-fit:cover; display:block; }
  .photo-split { display:grid; grid-template-columns:1fr 1fr; height:300px; overflow:hidden; }
  .photo-split img { width:100%; height:100%; object-fit:cover; display:block; }
  .photo-row  { display:grid; grid-template-columns:1fr 1fr 1fr; height:260px; gap:4px; overflow:hidden; }
  .photo-row img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s; }
  .photo-row img:hover { transform:scale(1.04); }
  @media (max-width:900px) {
    .full-photo  { height:260px; }
    .photo-full  { height:280px; }
    .photo-break { height:280px; }
    .cpic        { height:220px; }
    .ci-img      { height:260px; }
    .ci-photo    { height:260px; }
    .card-img    { height:160px; }
    .team-photo  { height:300px; }
    .christina-photo { max-width:100%; height:260px; border-radius:12px 12px 0 0; }
    .christina-airports-photo { height:300px; }
    .photo-strip { height:260px; }
    .photo-split { height:240px; }
    .photo-row   { height:200px; }
  }
  @media (max-width:600px) {
    .full-photo  { height:200px; }
    .photo-full  { height:220px; }
    .photo-break { height:220px; }
    .cpic        { height:180px; margin:20px 0; }
    .ci-img      { height:200px; }
    .ci-photo    { height:200px; }
    .card-img    { height:140px; }
    .team-photo  { height:260px; }
    .christina-photo { height:220px; }
    .christina-airports-photo { height:240px; }
    .photo-strip { grid-template-columns:1fr; height:220px; }
    .photo-strip img:not(:first-child) { display:none; }
    .photo-split { grid-template-columns:1fr; height:200px; }
    .photo-split img:not(:first-child) { display:none; }
    .photo-row   { grid-template-columns:1fr; height:200px; }
    .photo-row img:not(:first-child) { display:none; }
  }
  /* ═══════════════════════════════════════════════════════════ */

  .faq-item{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:white;margin-bottom:0}
  .faq-q{width:100%;text-align:left;padding:16px 20px;background:white;border:none;cursor:pointer;font-family:'Outfit',sans-serif;font-size:15px;font-weight:600;color:var(--navy);display:flex;justify-content:space-between;align-items:center;gap:12px;transition:background .2s}
  .faq-q:hover{background:var(--off-white)}
  .faq-icon{font-size:18px;color:var(--gold);font-weight:400;flex-shrink:0;transition:transform .2s;line-height:1}
  .faq-a{display:none;padding:0 20px 16px;font-size:14px;color:var(--text-mid);line-height:1.7}
  .faq-item.open .faq-a{display:block}
  .faq-item.open .faq-icon{transform:rotate(45deg)}


  /* ═══ RESPONSIVE IMAGE SYSTEM ═══════════════════════════════ */
  .full-photo{width:100%;height:320px;object-fit:cover;object-position:center 40%;display:block}
  .photo-full{width:100%;height:360px;object-fit:cover;object-position:center 40%;display:block}
  .cpic{width:100%;height:280px;object-fit:cover;border-radius:var(--radius-lg);margin:32px 0;display:block}
  .ci-img{width:100%;height:300px;object-fit:cover;border-radius:var(--radius-lg);display:block}
  .card-img{width:100%;height:180px;object-fit:cover;object-position:center 40%;display:block}
  .photo-strip{display:grid;grid-template-columns:1fr 1fr 1fr;height:320px;overflow:hidden}
  .photo-strip img{width:100%;height:100%;object-fit:cover;display:block}
  @media(max-width:900px){.full-photo{height:260px}.photo-full{height:280px}.cpic{height:220px}.ci-img{height:260px}.card-img{height:160px}.photo-strip{height:260px}}
  @media(max-width:600px){.full-photo{height:200px}.photo-full{height:220px}.cpic{height:180px;margin:20px 0}.ci-img{height:200px}.card-img{height:140px}.photo-strip{grid-template-columns:1fr;height:220px}.photo-strip img:not(:first-child){display:none}}
  /* ═══════════════════════════════════════════════════════════ */

  .faq-item{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:white}
  .faq-q{width:100%;text-align:left;padding:16px 20px;background:white;border:none;cursor:pointer;font-family:'Outfit',sans-serif;font-size:15px;font-weight:600;color:var(--navy);display:flex;justify-content:space-between;align-items:center;gap:12px;transition:background .2s}
  .faq-q:hover{background:var(--off-white)}
  .faq-icon{font-size:18px;color:var(--gold);font-weight:400;flex-shrink:0;transition:transform .2s;line-height:1}
  .faq-a{display:none;padding:0 20px 16px;font-size:14px;color:var(--text-mid);line-height:1.7}
  .faq-item.open .faq-a{display:block}
  .faq-item.open .faq-icon{transform:rotate(45deg)}

/* ── HOMEPAGE SPECIFIC ── */
.hero-band{background:var(--navy);padding:0;position:relative;overflow:hidden;min-height:580px;display:flex;align-items:center}
.hero-bg{position:absolute;inset:0;background:linear-gradient(135deg,#0d1b3e 0%,#162447 50%,#0d1b3e 100%)}
.hero-bg::after{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 70% 50%,rgba(201,168,76,0.08) 0%,transparent 60%)}
.hero-inner{max-width:1200px;margin:0 auto;padding:80px 24px;display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;position:relative;z-index:1;width:100%}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(201,168,76,.15);border:1px solid rgba(201,168,76,.3);color:var(--gold-light);padding:6px 14px;border-radius:50px;font-size:13px;font-weight:500;margin-bottom:20px}
.hero-h{font-family:'Fraunces',serif;font-size:clamp(2.2rem,4.5vw,3.5rem);font-weight:500;color:white;line-height:1.1;margin-bottom:18px;letter-spacing:-0.5px}
.hero-h em{font-style:italic;color:var(--gold-light)}
.hero-desc{font-size:17px;color:rgba(255,255,255,.65);line-height:1.7;margin-bottom:32px;max-width:480px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.price-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:var(--radius-lg);padding:28px;backdrop-filter:blur(10px)}
.price-card-title{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:var(--gold);margin-bottom:16px}
.price-row{display:flex;align-items:center;justify-content:space-between;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.08);font-size:14px}
.price-row:last-child{border-bottom:none}
.price-airport{color:rgba(255,255,255,.8);display:flex;align-items:center;gap:8px}
.price-amount{font-weight:700;color:var(--gold);font-size:16px}
.price-note{font-size:10px;color:rgba(255,255,255,.4);font-weight:400}
.trust-strip{background:white;border-bottom:1px solid var(--border);padding:16px 24px}
.trust-inner{max-width:1200px;margin:0 auto;display:flex;justify-content:center;align-items:center;gap:40px;flex-wrap:wrap}
.trust-item{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:500;color:var(--text-mid)}
.trust-icon{font-size:16px}
.section{padding:80px 24px}
.section-inner{max-width:1200px;margin:0 auto}
.sec-bg{background:var(--off-white)}
.sec-label{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;color:var(--gold);margin-bottom:12px}
.sec-title{font-family:'Fraunces',serif;font-size:clamp(1.8rem,3.5vw,2.6rem);font-weight:500;color:var(--navy);line-height:1.2;margin-bottom:16px}
.sec-title em{font-style:italic;color:var(--gold)}
.sec-desc{font-size:16px;color:var(--text-mid);max-width:580px;line-height:1.75;margin-bottom:40px}
.airport-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:40px}
.airport-card{background:white;border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px;transition:border-color .2s,transform .2s;text-decoration:none;display:block}
.airport-card:hover{border-color:var(--gold);transform:translateY(-3px)}
.ac-code{font-size:11px;font-weight:700;color:var(--gold);letter-spacing:1.5px;text-transform:uppercase;margin-bottom:8px}
.ac-name{font-size:17px;font-weight:600;color:var(--navy);margin-bottom:12px}
.ac-price{font-family:'Fraunces',serif;font-size:2rem;font-weight:500;color:var(--navy);line-height:1}
.ac-from{font-size:12px;color:var(--text-muted);font-weight:400}
.ac-detail{font-size:13px;color:var(--text-muted);margin-top:8px}
.areas-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:40px}
.area-chip{display:block;padding:20px;background:white;border:1px solid var(--border);border-radius:var(--radius);text-decoration:none;transition:border-color .2s,transform .2s}
.area-chip:hover{border-color:var(--gold);transform:translateY(-2px)}
.area-chip-name{font-size:15px;font-weight:600;color:var(--navy);margin-bottom:4px}
.area-chip-sub{font-size:12px;color:var(--text-muted)}
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px;margin-top:40px}
.why-card{background:white;border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px;transition:border-color .2s}
.why-card:hover{border-color:var(--gold)}
.why-icon{font-size:28px;margin-bottom:14px}
.why-card h3{font-size:16px;font-weight:600;color:var(--navy);margin-bottom:8px}
.why-card p{font-size:14px;color:var(--text-mid);line-height:1.65}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px}
.review-card{background:white;border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px;display:flex;flex-direction:column}
.review-stars{color:var(--gold);font-size:16px;margin-bottom:12px;letter-spacing:2px}
.review-text{font-size:14px;color:var(--text-mid);line-height:1.7;flex:1;margin-bottom:16px;font-style:italic}
.review-name{font-size:14px;font-weight:600;color:var(--navy)}
.review-route{font-size:12px;color:var(--text-muted)}
.cta-band{background:var(--navy);text-align:center;padding:90px 24px;position:relative;overflow:hidden}
.cta-band::before{content:'';position:absolute;top:-100px;left:50%;transform:translateX(-50%);width:600px;height:600px;background:radial-gradient(circle,rgba(201,168,76,.1) 0%,transparent 65%);pointer-events:none}
.cta-band h2{font-family:'Fraunces',serif;font-size:clamp(2rem,4vw,3rem);font-weight:500;color:white;margin-bottom:14px;position:relative}
.cta-band p{font-size:17px;color:rgba(255,255,255,.65);margin-bottom:32px;position:relative}
.online-only{background:rgba(201,168,76,.1);border:1px solid rgba(201,168,76,.2);border-radius:var(--radius);padding:14px 20px;font-size:13px;color:rgba(255,255,255,.7);margin-bottom:32px;position:relative}

@media(max-width:960px){
  nav{display:none}.hamburger{display:flex}.header-email{display:none}
  .hero-inner{grid-template-columns:1fr;gap:32px}
  .price-card{order:-1}
  .airport-grid{grid-template-columns:1fr 1fr}
  .areas-grid{grid-template-columns:1fr 1fr 1fr}
  .reviews-grid{grid-template-columns:1fr 1fr}
  .footer-top{grid-template-columns:1fr 1fr}.footer-brand{grid-column:1/-1}
}
@media(max-width:600px){
  .airport-grid{grid-template-columns:1fr}
  .areas-grid{grid-template-columns:1fr 1fr}
  .reviews-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr}
  .trust-strip .trust-item:nth-child(n+4){display:none}
}

  .btn-book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, transform .2s;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
  }
  .btn-book:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── RESPONSIVE IMAGE SYSTEM ══════════════════════════════════ */
  .full-photo{width:100%;height:320px;object-fit:cover;object-position:center 40%;display:block}
  .photo-full{width:100%;height:360px;object-fit:cover;object-position:center 40%;display:block}
  .cpic{width:100%;height:280px;object-fit:cover;border-radius:var(--radius-lg);margin:32px 0;display:block}
  .ci-img{width:100%;height:300px;object-fit:cover;border-radius:var(--radius-lg);display:block}
  .card-img{width:100%;height:180px;object-fit:cover;object-position:center 40%;display:block}
  .photo-strip{display:grid;grid-template-columns:1fr 1fr 1fr;height:320px;overflow:hidden}
  .photo-strip img{width:100%;height:100%;object-fit:cover;display:block}
  @media(max-width:900px){.full-photo{height:260px}.photo-full{height:280px}.cpic{height:220px}.ci-img{height:260px}.card-img{height:160px}.photo-strip{height:260px}}
  @media(max-width:600px){.full-photo{height:200px}.photo-full{height:220px}.cpic{height:180px;margin:20px 0}.ci-img{height:200px}.card-img{height:140px}.photo-strip{grid-template-columns:1fr;height:220px}.photo-strip img:not(:first-child){display:none}}
  /* ── FAQ ══════════════════════════════════════════════════════ */
  .faq-item{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:white}
  .faq-q{width:100%;text-align:left;padding:16px 20px;background:white;border:none;cursor:pointer;font-family:'Outfit',sans-serif;font-size:15px;font-weight:600;color:var(--navy);display:flex;justify-content:space-between;align-items:center;gap:12px;transition:background .2s}
  .faq-q:hover{background:var(--off-white)}
  .faq-icon{font-size:18px;color:var(--gold);font-weight:400;flex-shrink:0;transition:transform .2s;line-height:1}
  .faq-a{display:none;padding:0 20px 16px;font-size:14px;color:var(--text-mid);line-height:1.7}
  .faq-item.open .faq-a{display:block}
  .faq-item.open .faq-icon{transform:rotate(45deg)}
  /* ── BUTTONS ══════════════════════════════════════════════════ */
  .btn-book{display:inline-flex;align-items:center;gap:6px;background:var(--gold);color:var(--navy);font-size:14px;font-weight:700;padding:10px 20px;border-radius:8px;text-decoration:none;transition:background .2s,transform .2s;white-space:nowrap;font-family:'Outfit',sans-serif}
  .btn-book:hover{background:var(--gold-light);transform:translateY(-1px)}
