:root {
    --navy: #07182d;
    --navy-2: #0b2442;
    --blue: #286dd9;
    --blue-2: #5aa8ff;
    --ink: #102033;
    --muted: #637386;
    --paper: #f5f8fc;
    --white: #ffffff;
    --line: #dfe7f0;
    --green: #1f9d67;
    --shadow: 0 18px 55px rgba(7, 24, 45, .12);
    --radius: 24px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
  }
  a { color: inherit; text-decoration: none; }
  button, input { font: inherit; }
  input {
    width: 100%;
    outline: none;
  }
  input:focus {
    border-color: #8bbcff !important;
    box-shadow: 0 0 0 3px rgba(40,109,217,.12);
  }
  .wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

  .topbar {
    background: #04111f;
    color: rgba(255,255,255,.8);
    font-size: 13px;
  }
  .topbar .wrap {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .topbar strong { color: white; font-weight: 700; }
  .topbar .mini { display: flex; gap: 20px; align-items: center; }

  header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(7,24,45,.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
  }
  nav {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }
  .brand img {
    display: block;
    width: 240px;
    height: 82px;
    object-fit: contain;
    object-position: left center;
  }
  .navlinks { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 650; }
  .navlinks a { color: #e8f1fb; }
  .navlinks a:hover { color: #7db7ff; }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    padding: 13px 19px;
    font-weight: 750;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn-primary { background: var(--blue); color: white; box-shadow: 0 10px 28px rgba(40,109,217,.3); }
  .btn-primary:hover { background: #185fc9; }
  .btn-light { background: white; color: var(--navy); box-shadow: 0 10px 28px rgba(0,0,0,.15); }
  .btn-outline { border: 1px solid rgba(255,255,255,.34); color: white; background: rgba(255,255,255,.06); }

  .hero {
    position: relative;
    overflow: hidden;
    color: white;
    background:
      radial-gradient(circle at 77% 20%, rgba(62,143,255,.36), transparent 31%),
      linear-gradient(135deg, var(--navy) 0%, #0d2a4b 60%, #0b3767 100%);
  }
  .hero:before {
    content: "";
    position: absolute;
    width: 780px;
    height: 780px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
    right: -310px;
    top: -390px;
    box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.018);
  }
  .hero-grid {
    min-height: 640px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 64px;
    padding: 74px 0 88px;
    position: relative;
    z-index: 2;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    border-radius: 999px;
    padding: 7px 12px;
    color: #dcecff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
  }
  .dot { width: 8px; height: 8px; border-radius: 50%; background: #52d29a; box-shadow: 0 0 0 5px rgba(82,210,154,.12); }
  h1 { font-size: clamp(48px, 6vw, 78px); line-height: .98; letter-spacing: -0.045em; margin: 22px 0 24px; max-width: 750px; }
  .hero p { color: #c8d8e8; font-size: 19px; line-height: 1.7; max-width: 680px; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
  .trustline { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: #c8d8e8; font-size: 13px; }
  .trustline span { display: inline-flex; gap: 7px; align-items: center; }
  .tick { color: #71dfa9; font-weight: 900; }

  .quote-card {
    background: rgba(255,255,255,.96);
    color: var(--ink);
    padding: 28px;
    border-radius: 30px;
    box-shadow: 0 35px 80px rgba(0,0,0,.26);
    position: relative;
  }
  .quote-card:after {
    content: "✈";
    position: absolute;
    top: -24px;
    right: 24px;
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: white;
    border-radius: 18px;
    font-size: 24px;
    transform: rotate(-10deg);
    box-shadow: 0 14px 30px rgba(40,109,217,.38);
  }
  .quote-card h3 { margin: 0 0 4px; font-size: 24px; }
  .quote-card p { color: var(--muted); font-size: 14px; margin: 0 0 20px; }
  .input {
    background: #f3f6fa;
    border: 1px solid #e2e9f1;
    padding: 13px 14px;
    border-radius: 14px;
    color: #31465d;
    margin-top: 10px;
  }
  .input::placeholder { color: #7b8b9d; }

  .field-label {
    display: block;
    margin-top: 13px;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 850;
    color: #53667a;
    letter-spacing: .02em;
  }

  .journey-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 11px;
  }
  .journey-option {
    position: relative;
  }
  .journey-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .journey-option span {
    display: block;
    padding: 12px 10px;
    text-align: center;
    border-radius: 13px;
    background: #f3f6fa;
    border: 1px solid #e2e9f1;
    color: #53667a;
    font-weight: 800;
    cursor: pointer;
    transition: .18s ease;
  }
  .journey-option input:checked + span {
    background: #e9f2ff;
    border-color: #8bbcff;
    color: #164b8d;
    box-shadow: 0 0 0 3px rgba(40,109,217,.09);
  }

  .return-fields {
    display: none;
  }
  .return-fields.show {
    display: block;
  }

  input[type="date"].input {
    min-height: 48px;
  }
  .quote-card .btn { width: 100%; margin-top: 14px; border-radius: 14px; }
  .smallprint { font-size: 11px !important; line-height: 1.5 !important; margin-top: 10px !important; }

  section { padding: 92px 0; }
  .section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
  .section-head .kicker { color: var(--blue); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
  .section-head h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -.035em; margin: 7px 0 0; }
  .section-head p { max-width: 490px; color: var(--muted); line-height: 1.65; margin: 0; }

  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .service {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 12px 40px rgba(7,24,45,.06);
  }
  .service .icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; background: #eaf3ff; font-size: 23px; margin-bottom: 20px; }
  .service h3 { margin: 0 0 8px; font-size: 21px; }
  .service p { margin: 0; color: var(--muted); line-height: 1.65; }

  .fares { background: white; }
  .fare-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .fare {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
    background: linear-gradient(180deg, #fff, #f8fbff);
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .fare:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .fare .airport { font-size: 13px; font-weight: 800; text-transform: uppercase; color: #53667a; letter-spacing: .06em; }
  .fare .price { font-size: 36px; font-weight: 850; letter-spacing: -.035em; color: var(--navy); margin-top: 10px; }
  .fare .each { font-size: 12px; color: var(--muted); }
  .fare.featured { border-color: #bed7fb; background: linear-gradient(150deg, #eef6ff, #ffffff); }
  .fare.featured .price { color: var(--blue); }
  #more-fares { display: none; margin-top: 16px; }
  #more-fares.show { display: grid; }
  .fare-note { margin-top: 24px; color: var(--muted); font-size: 13px; line-height: 1.6; }
  .fare-disclaimer {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 650;
  }

  .why { background: var(--navy); color: white; position: relative; overflow: hidden; }
  .why .section-head p { color: #b8cada; }
  .why .section-head .kicker { color: #78b7ff; }
  .why-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 46px; align-items: center; }
  .benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .benefit { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.055); padding: 22px; border-radius: 20px; }
  .benefit b { display: block; margin-bottom: 6px; }
  .benefit span { color: #b8cada; font-size: 14px; line-height: 1.55; }
  .journey-card {
    min-height: 365px;
    border-radius: 30px;
    padding: 30px;
    background: radial-gradient(circle at 70% 20%, rgba(90,168,255,.42), transparent 34%), linear-gradient(145deg,#11365f,#07182d);
    border: 1px solid rgba(255,255,255,.1);
    position: relative;
    overflow: hidden;
  }
  .journey-card .road { position: absolute; left: 12%; right: 12%; top: 52%; height: 2px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.45) 0 18px, transparent 18px 34px); transform: rotate(-13deg); }
  .journey-card .plane { position: absolute; font-size: 50px; right: 13%; top: 22%; transform: rotate(-12deg); }
  .journey-card .car { position: absolute; font-size: 54px; left: 18%; bottom: 18%; }
  .journey-card .label { position: absolute; left: 28px; bottom: 28px; color: #dbeaff; font-size: 14px; }

  .faq { background: #eef4fa; }
  .faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
  details { background: white; border: 1px solid var(--line); border-radius: 17px; padding: 0 20px; }
  summary { list-style: none; cursor: pointer; padding: 20px 30px 20px 0; font-weight: 780; position: relative; }
  summary::-webkit-details-marker { display: none; }
  summary:after { content: "+"; position: absolute; right: 0; font-size: 23px; color: var(--blue); top: 15px; }
  details[open] summary:after { content: "−"; }
  details p { color: var(--muted); line-height: 1.65; margin: 0 0 20px; }

  .cta { background: white; }
  .cta-box { background: linear-gradient(135deg, var(--blue), #1551a3); color: white; border-radius: 32px; padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; box-shadow: 0 22px 60px rgba(40,109,217,.25); }
  .cta-box h2 { font-size: 38px; margin: 0 0 8px; letter-spacing: -.03em; }
  .cta-box p { margin: 0; color: #d9eaff; }
  .cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

  footer { background: #04111f; color: #aebdca; padding: 48px 0 90px; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
  footer img { width: 185px; filter: brightness(2.2); opacity: .9; }
  footer h4 { color: white; margin-top: 0; }
  footer p, footer a { font-size: 14px; line-height: 1.7; }
  footer a:hover { color: white; }
  .prototype { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; }

  .mobile-bar { display: none; }


  .licence-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0,0,0,.2);
  }
  .licence-card img {
    display: block;
    width: 100%;
    height: auto;
    background: #fff;
  }
  .licence-caption {
    padding: 22px 24px 24px;
    color: #c8d8e8;
    font-size: 14px;
    line-height: 1.6;
  }
  .licence-caption strong {
    display: block;
    color: #fff;
    font-size: 17px;
    margin-bottom: 4px;
  }
  .properpage-credit {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #9db0c3;
    font-size: 12px;
  }
  .properpage-credit a {
    color: #dcecff;
    font-weight: 750;
  }
  .properpage-credit a:hover { color: #78b7ff; }

  @media (max-width: 920px) {
    nav {
      min-height: 88px;
    }
    .brand img {
      width: 215px;
      height: 72px;
    }
    .navlinks a:not(.btn) { display: none; }
    .hero-grid, .why-grid { grid-template-columns: 1fr; }
    .hero-grid { padding: 58px 0 72px; }
    .quote-card { max-width: 580px; }
    .services-grid { grid-template-columns: 1fr; }
    .fare-grid { grid-template-columns: 1fr 1fr; }
    .section-head { align-items: start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 620px) {
    .topbar .mini span:first-child { display: none; }
    .wrap { width: min(100% - 28px, 1160px); }
    nav { min-height: 82px; }
    .brand img { width: 190px; height: 64px; }
    .navlinks .btn { display: none; }
    h1 { font-size: 48px; }
    .hero p { font-size: 17px; }
    .hero-actions .btn { width: 100%; }
    section { padding: 68px 0; }
    .fare-grid { grid-template-columns: 1fr; }
    .benefits { grid-template-columns: 1fr; }
    footer { padding-bottom: 110px; }
    .mobile-bar {
      display: grid;
      grid-template-columns: 1fr;
      position: fixed;
      left: 10px; right: 10px; bottom: 10px;
      z-index: 50;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 45px rgba(0,0,0,.25);
    }
    .mobile-bar a { text-align: center; padding: 15px 8px; font-weight: 850; color: white; }
    .mobile-bar .wa { background: var(--green); }
  }


/* CMS rich-text content */
.cms-rich p { margin: 0 0 0.85em; }
.cms-rich p:last-child { margin-bottom: 0; }
.cms-rich ul,
.cms-rich ol { margin: 0.7em 0 0.9em; padding-left: 1.3em; }
.cms-rich li { margin: 0.3em 0; }
.cms-rich a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.cms-rich strong,
.cms-rich b { font-weight: 850; }

.hero-copy {
  max-width: 670px;
  color: #bfd0df;
  font-size: 19px;
  line-height: 1.72;
  margin-top: 18px;
}
.quote-intro { color: var(--muted); line-height: 1.6; }
.section-copy { color: var(--muted); line-height: 1.65; }
.service-copy { color: var(--muted); line-height: 1.65; }
.faq-answer { color: var(--muted); line-height: 1.65; padding-top: 10px; }
.footer-copy { color: #9db0c3; line-height: 1.7; font-size: 14px; }
