
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      :root {
        --red: #a51c3c;
        --red2: #9b2a45;
        --red-light: #fdf0f3;
        --navy: #1e3146;
        --navy2: rgb(54, 86, 128);
        --navy-light: #eef3f9;
        --gold: #b8922a;
        --gold-light: #fdf8ee;
        --white: #ffffff;
        --off: #f8f9fb;
        --off2: #f2f4f7;
        --text: #1a2540;
        --text2: #4a5568;
        --border: #e2e8f0;
        --border2: #d1dce8;
        --shadow: 0 2px 16px rgba(30, 58, 95, 0.1);
        --shadow2: 0 8px 40px rgba(30, 58, 95, 0.14);
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "Inter", sans-serif;
        background: var(--white);
        color: var(--text);
        overflow-x: hidden;
      }
      img {
        display: block;
        max-width: 100%;
      }
      a {
        text-decoration: none;
      }

      /* ADDITIONAL NAV  */
      .nav__certificate{
        display: flex;
        justify-content: center;
      }

      /* ══════════════════════════
   HEADER — BusinessFly style
   ══════════════════════════ */
      .site-header {
        background: var(--white);
        position: sticky;
        top: 0;
        z-index: 500;
        box-shadow:
          0 1px 0 var(--border),
          var(--shadow);
      }

      /* Top info bar */
      .header-topbar {
        background: var(--navy);
        padding: 7px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.76rem;
      }
      .htb-left {
        color: rgba(255, 255, 255, 0.75);
        display: flex;
        align-items: center;
        gap: 18px;
      }
      .htb-left span {
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .htb-right {
        display: flex;
        align-items: center;
        gap: 18px;
      }
      .htb-phone {
        font-size: 0.88rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.01em;
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .htb-phone svg {
        width: 14px;
        height: 14px;
        fill: var(--gold);
      }
      .htb-times {
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.72rem;
      }

      /* Main header row */
      .header-main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 40px;
        gap: 16px;
      }
      /* Logo */
      .site-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        flex-shrink: 0;
      }
      .logo-mark {
        width: 42px;
        height: 42px;
        background: var(--red);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .logo-mark svg {
        width: 24px;
        height: 24px;
        fill: #fff;
      }
      .logo-text-wrap {
        line-height: 1.1;
      }
      .logo-business {
        font-family: "Playfair Display", serif;
        font-size: 1.3rem;
        font-weight: 900;
        color: var(--navy);
        letter-spacing: -0.01em;
      }
      .logo-fly {
        font-family: "Playfair Display", serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--red);
        letter-spacing: -0.01em;
      }
      .logo-tagline {
        font-size: 0.62rem;
        color: var(--text2);
        letter-spacing: 0.04em;
        text-transform: uppercase;
        margin-top: 1px;
      }

      /* TTA badges */
      .header-tta {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .tta-badge {
        border: 1.5px solid var(--border2);
        border-radius: 7px;
        padding: 5px 10px;
        text-align: center;
        background: var(--off);
      }
      .tta-badge .tt {
        font-size: 0.58rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--navy);
        display: block;
      }
      .tta-badge .ts {
        font-size: 0.58rem;
        color: var(--text2);
        display: block;
        margin-top: 1px;
      }
      .tta-badge.gold-badge {
        background: var(--gold-light);
        border-color: #d4a843;
      }
      .tta-badge.gold-badge .tt {
        color: var(--gold);
      }

      /* Header phone (desktop) */
      .header-phone-block {
        text-align: right;
      }
      .header-phone-block .ph-call {
        font-size: 0.7rem;
        color: var(--text2);
        margin-bottom: 2px;
      }
      .header-phone-block a {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--red);
        letter-spacing: -0.01em;
        display: block;
        line-height: 1;
      }
      .header-phone-block .ph-hours {
        font-size: 0.64rem;
        color: var(--text2);
        margin-top: 2px;
      }

      /* Nav */
      .header-nav {
        background: var(--navy);
        padding: 0 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .nav-list {
        list-style: none;
        display: flex;
        align-items: stretch;
        margin: 0;
        padding: 0;
      }
      .nav-list > li {
        position: relative;
      }
      .nav-list > li > a {
        display: flex;
        align-items: center;
        gap: 3px;
        padding: 13px 15px;
        font-size: 0.82rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.88);
        letter-spacing: 0.01em;
        transition:
          color 0.18s,
          background 0.18s;
        white-space: nowrap;
      }
      .nav-list > li > a:hover,
      .nav-list > li > a.current {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
      }
      .nav-list > li > a.current {
        border-bottom: 2px solid var(--gold);
      }
      .nav-arr {
        font-size: 0.55rem;
        opacity: 0.55;
        margin-left: 2px;
      }

      /* Dropdown */
      .dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 190px;
        z-index: 600;
        background: #fff;
        border: 1px solid var(--border);
        border-top: 3px solid var(--red);
        border-radius: 0 0 8px 8px;
        box-shadow: var(--shadow2);
      }
      .nav-list > li:hover .dropdown {
        display: block;
      }
      .dropdown a {
        display: block;
        padding: 9px 16px;
        font-size: 0.8rem;
        color: var(--text);
        border-bottom: 1px solid var(--border);
        transition:
          color 0.15s,
          background 0.15s;
      }
      .dropdown a:last-child {
        border-bottom: none;
      }
      .dropdown a:hover {
        color: var(--red);
        background: var(--red-light);
      }
      .sub-wrap {
        position: relative;
      }
      .sub-wrap:hover .sub-menu {
        display: block;
      }
      .sub-menu {
        display: none;
        position: absolute;
        top: 0;
        left: 100%;
        background: #fff;
        border: 1px solid var(--border);
        border-top: 3px solid var(--navy);
        min-width: 165px;
        z-index: 601;
        border-radius: 0 8px 8px 8px;
        box-shadow: var(--shadow2);
      }
      .sub-menu a {
        display: block;
        padding: 8px 15px;
        font-size: 0.78rem;
        color: var(--text);
        border-bottom: 1px solid var(--border);
      }
      .sub-menu a:hover {
        color: var(--navy);
        background: var(--navy-light);
      }
      .nav-beat {
        background: var(--red);
        color: #fff;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        padding: 8px 18px;
        border-radius: 5px;
        transition: background 0.2s;
        white-space: nowrap;
        flex-shrink: 0;
      }
      .nav-beat:hover {
        background: var(--red2);
      }

      /* Mobile toggle */
      .mob-toggle {
        display: none;
        background: none;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 5px;
        padding: 6px 10px;
        cursor: pointer;
        color: #fff;
        font-size: 1rem;
      }
      .mob-panel {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 700;
        background: #fff;
        flex-direction: column;
        padding: 0;
        overflow-y: auto;
      }
      .mob-panel.open {
        display: flex;
      }
      .mob-panel-head {
        background: var(--navy);
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .mob-panel-head .mob-logo {
        font-family: "Playfair Display", serif;
        font-size: 1.2rem;
        color: #fff;
      }
      .mob-panel-head .mob-logo span {
        color: var(--gold);
      }
      .mob-close {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.4rem;
        cursor: pointer;
      }
      .mob-links {
        padding: 8px 0;
        flex: 1;
      }
      .mob-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 24px;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text);
        border-bottom: 1px solid var(--border);
        transition:
          background 0.15s,
          color 0.15s;
      }
      .mob-links a:hover {
        background: var(--off);
        color: var(--red);
      }
      .mob-links a.mob-cta {
        background: var(--red);
        color: #fff;
        margin: 16px 20px;
        border-radius: 8px;
        border: none;
        justify-content: center;
      }
      .mob-phone-row {
        background: var(--navy);
        padding: 20px 24px;
        margin-top: auto;
      }
      .mob-phone-row a {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--gold);
        display: block;
      }
      .mob-phone-row p {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.55);
        margin-top: 3px;
      }

      /* ══════════════════════════
   HERO
   ══════════════════════════ */
      .hero {
        position: relative;
        background: var(--off);
        display: grid;
        grid-template-columns: 1fr 420px;
        min-height: 88vh;
        overflow: hidden;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        background-image: url("https://images.unsplash.com/photo-1540962351504-03099e0a754b?w=1800&q=85");
        background-size: cover;
        background-position: center 35%;
      }
      .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          105deg,
          rgba(248, 249, 251, 1) 0%,
          rgba(248, 249, 251, 0.95) 38%,
          rgba(248, 249, 251, 0.7) 65%,
          rgba(248, 249, 251, 0.2) 100%
        );
      }
      .hero-left {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 70px 48px 70px 56px;
      }
      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: var(--red-light);
        border: 1px solid rgba(160, 21, 53, 0.2);
        color: var(--red);
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 100px;
        margin-bottom: 22px;
        width: fit-content;
      }
      .dot {
        width: 6px;
        height: 6px;
        background: var(--red);
        border-radius: 50%;
        animation: blink 2s ease infinite;
      }
      @keyframes blink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.2;
        }
      }
      h1 {
        font-family: "Playfair Display", serif;
        font-size: clamp(2.2rem, 4.5vw, 4rem);
        line-height: 1.1;
        font-weight: 900;
        color: var(--navy);
        margin-bottom: 18px;
      }
      h1 em {
        font-style: italic;
        color: var(--red);
      }
      .hero-sub {
        font-size: 1rem;
        color: var(--text2);
        line-height: 1.78;
        max-width: 500px;
        margin-bottom: 32px;
      }
      .hero-sub strong {
        color: var(--navy);
        font-weight: 600;
      }

      /* Stats row */
      .hero-stats {
        display: flex;
        gap: 0;
        margin-bottom: 32px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow);
        max-width: 460px;
      }
      .stat-item {
        flex: 1;
        padding: 16px 20px;
        text-align: center;
        border-right: 1px solid var(--border);
      }
      .stat-item:last-child {
        border-right: none;
      }
      .stat-n {
        font-family: "Playfair Display", serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--red);
        line-height: 1;
      }
      .stat-l {
        font-size: 0.65rem;
        color: var(--text2);
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-top: 3px;
      }

      .hero-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }
      .btn-red {
        background: var(--red);
        color: #fff;
        font-weight: 700;
        font-size: 0.88rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 14px 28px;
        border-radius: 8px;
        transition: all 0.22s;
        box-shadow: 0 4px 20px rgba(160, 21, 53, 0.3);
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 7px;
      }
      .btn-red:hover {
        background: var(--red2);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(160, 21, 53, 0.4);
      }
      .btn-navy {
        background: var(--navy);
        color: #fff;
        font-weight: 600;
        font-size: 0.88rem;
        padding: 14px 26px;
        border-radius: 8px;
        transition: all 0.22s;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 7px;
      }
      .btn-navy:hover {
        background: var(--navy2);
        transform: translateY(-2px);
      }
      .btn-outline {
        border: 2px solid var(--navy);
        color: var(--navy);
        font-weight: 600;
        font-size: 0.88rem;
        padding: 13px 24px;
        border-radius: 8px;
        transition: all 0.22s;
        white-space: nowrap;
      }
      .btn-outline:hover {
        background: var(--navy);
        color: #fff;
      }

      /* LEAD FORM */
      .lead-form label{
        font-size: 14px;
      }
      .lead-form input, .lead-form select{
        font-size: 14px;
        margin: 8px 0 18px 0;
      }
      .hero-form-col {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px 40px 60px 20px;
      }
      .lead-card {
        background: #fff;
        border-radius: 16px;
        width: 100%;
        padding: 32px 28px;
        box-shadow:
          0 16px 64px rgba(30, 58, 95, 0.18),
          0 0 0 1px var(--border);
        position: relative;
        overflow: hidden;
      }
      .card-accent {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--red), var(--red2));
      }
      .card-hed {
        font-family: "Playfair Display", serif;
        font-size: 1.45rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 3px;
      }
      .card-sub {
        font-size: 0.78rem;
        color: var(--text2);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .card-sub::before {
        content: "⚡";
        font-size: 0.72rem;
      }
      label {
        display: block;
        font-size: 0.66rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text2);
        margin-bottom: 4px;
        margin-top: 11px;
      }
      input,
      select {
        width: 100%;
        padding: 10px 13px;
        border-radius: 7px;
        border: 1.5px solid var(--border2);
        background: #fff;
        font-family: "Inter", sans-serif;
        font-size: 0.86rem;
        color: var(--text);
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }
      input:focus,
      select:focus {
        outline: none;
        border-color: var(--red);
        box-shadow: 0 0 0 3px rgba(160, 21, 53, 0.1);
      }
      input::placeholder {
        color: #aab;
      }
      .frow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      .btn-submit {
        width: 100%;
        margin-top: 14px;
        background: var(--red);
        color: #fff;
        font-family: "Inter", sans-serif;
        font-weight: 700;
        font-size: 0.88rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 14px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.22s;
        box-shadow: 0 4px 16px rgba(160, 21, 53, 0.25);
      }
      .btn-submit:hover {
        background: var(--red2);
        transform: translateY(-1px);
      }
      .trust-row {
        display: flex;
        gap: 8px;
        margin-top: 14px;
      }
      .tb {
        flex: 1;
        background: var(--off);
        border-radius: 7px;
        padding: 8px 5px;
        text-align: center;
        border: 1px solid var(--border);
      }
      .tb-i {
        font-size: 0.95rem;
      }
      .tb-l {
        font-size: 0.59rem;
        color: var(--text2);
        font-weight: 600;
        margin-top: 2px;
      }
      .form-note {
        text-align: center;
        margin-top: 9px;
        font-size: 0.68rem;
        color: #9aa;
      }

      /* ══════════════════════════
   AIRLINE LOGOS STRIP
   ══════════════════════════ */
      .airline-strip {
        background: #fff;
        padding: 18px 56px;
        display: flex;
        align-items: center;
        gap: 24px;
        border-top: 1px solid var(--border);
        border-bottom: 3px solid var(--off2);
        overflow-x: auto;
      }
      .as-lbl {
        font-size: 0.63rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--text2);
        white-space: nowrap;
        min-width: 80px;
        font-weight: 600;
      }
      .atags {
        display: flex;
        gap: 8px;
        flex-wrap: nowrap;
      }
      .atag {
        font-size: 0.76rem;
        font-weight: 600;
        color: var(--navy);
        padding: 5px 13px;
        border: 1.5px solid var(--border2);
        border-radius: 5px;
        white-space: nowrap;
        transition: all 0.2s;
        background: var(--off);
        cursor: default;
      }
      .atag:hover {
        background: var(--navy-light);
        border-color: var(--navy);
        color: var(--navy);
      }

      /* ══════════════════════════
   SECTION BASE
   ══════════════════════════ */
      .section {
        padding: 80px 56px;
      }
      .section.bg-off {
        background: var(--off);
      }
      .section.bg-navy {
        background: var(--navy);
      }
      .section.bg-red {
        background: var(--red);
      }
      .kicker {
        font-size: 0.66rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--red);
        margin-bottom: 11px;
        font-weight: 700;
      }
      .kicker.light {
        color: rgba(255, 255, 255, 0.6);
      }
      .sec-h {
        font-family: "Playfair Display", serif;
        font-size: clamp(1.8rem, 3.2vw, 2.8rem);
        font-weight: 700;
        line-height: 1.18;
        color: var(--navy);
        margin-bottom: 12px;
      }
      .sec-h.wh {
        color: #fff;
      }
      .sec-p {
        font-size: 0.96rem;
        color: var(--text2);
        max-width: 540px;
        line-height: 1.78;
        margin-bottom: 48px;
      }
      .sec-p.wh {
        color: rgba(255, 255, 255, 0.65);
      }

      /* ══════════════════════════
   DESTINATIONS
   ══════════════════════════ */
      .dest-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
      }
      .dest-card {
        position: relative;
        border-radius: 14px;
        overflow: hidden;
        aspect-ratio: 3/4;
        cursor: pointer;
        box-shadow: var(--shadow);
        transition:
          transform 0.3s,
          box-shadow 0.3s;
      }
      .dest-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow2);
      }
      .dest-card.wide {
        grid-column: span 2;
        aspect-ratio: 16/8;
      }
      .dest-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.55s;
        filter: brightness(0.78);
      }
      .dest-card:hover img {
        transform: scale(1.06);
        filter: brightness(0.9);
      }
      .dest-ov {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(20, 30, 50, 0.92) 0%,
          rgba(20, 30, 50, 0.15) 60%,
          transparent 100%
        );
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 16px 14px;
      }
      .dest-flag {
        font-size: 1.55rem;
        margin-bottom: 4px;
      }
      .dest-name {
        font-family: "Playfair Display", serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
      }
      .dest-price {
        font-size: 0.75rem;
        color: #ffd88a;
        margin-top: 3px;
        font-weight: 500;
      }
      .dest-cta-lbl {
        margin-top: 7px;
        font-size: 0.68rem;
        color: rgba(255, 255, 255, 0.55);
        letter-spacing: 0.04em;
        text-transform: uppercase;
        opacity: 0;
        transform: translateY(5px);
        transition: all 0.3s;
      }
      .dest-card:hover .dest-cta-lbl {
        opacity: 1;
        transform: translateY(0);
      }

      /* ══════════════════════════
   EXPERIENCE PANELS
   ══════════════════════════ */
      .exp-grid {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 16px;
        margin-top: 48px;
      }
      .exp-panel {
        position: relative;
        border-radius: 14px;
        overflow: hidden;
      }
      .exp-panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.55s;
      }
      .exp-panel:hover img {
        transform: scale(1.04);
      }
      .exp-panel.tall img {
        min-height: 480px;
      }
      .exp-panel:not(.tall) img {
        height: 232px;
      }
      .exp-cap {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(20, 30, 50, 0.9), transparent);
        padding: 22px 20px 18px;
      }
      .exp-tag {
        font-size: 0.6rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #ffd88a;
        margin-bottom: 4px;
        font-weight: 600;
      }
      .exp-lbl {
        font-family: "Playfair Display", serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: #fff;
      }
      .exp-right {
        display: grid;
        grid-template-rows: 1fr 1fr;
        gap: 16px;
      }

      /* GALLERY STRIP */
      .gallery-strip {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        height: 220px;
        overflow: hidden;
      }
      .gal-it {
        position: relative;
        overflow: hidden;
      }
      .gal-it img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.72);
        transition:
          transform 0.5s,
          filter 0.4s;
      }
      .gal-it:hover img {
        transform: scale(1.08);
        filter: brightness(1);
      }
      .gal-cap {
        position: absolute;
        bottom: 8px;
        left: 10px;
        font-size: 0.6rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 600;
        background: rgba(0, 0, 0, 0.35);
        padding: 2px 7px;
        border-radius: 3px;
      }

      /* ══════════════════════════
   FARES TABLE
   ══════════════════════════ */
      .fares-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 44px;
      }
      .fare-card {
        background: #fff;
        border: 1.5px solid var(--border);
        border-radius: 12px;
        padding: 24px;
        transition: all 0.22s;
        cursor: default;
        position: relative;
        overflow: hidden;
      }
      .fare-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--red);
        transform: scaleX(0);
        transition: transform 0.3s;
        transform-origin: left;
      }
      .fare-card:hover {
        border-color: var(--red);
        box-shadow: 0 8px 32px rgba(160, 21, 53, 0.12);
        transform: translateY(-3px);
      }
      .fare-card:hover::before {
        transform: scaleX(1);
      }
      .fare-flag {
        font-size: 1.4rem;
        margin-bottom: 8px;
      }
      .fare-reg {
        font-size: 0.63rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--red);
        margin-bottom: 7px;
        font-weight: 700;
      }
      .fare-price {
        font-family: "Playfair Display", serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 3px;
      }
      .fare-price sub {
        font-size: 0.8rem;
        color: var(--text2);
        font-family: "Inter", sans-serif;
        font-weight: 400;
        vertical-align: baseline;
      }
      .fare-dests {
        font-size: 0.76rem;
        color: var(--text2);
        line-height: 1.75;
        margin-top: 5px;
      }
      .fare-link {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin-top: 12px;
        font-size: 0.72rem;
        color: var(--red);
        font-weight: 600;
        transition: gap 0.2s;
      }
      .fare-link:hover {
        gap: 8px;
      }

      /* ══════════════════════════
   WHY US CARDS
   ══════════════════════════ */
      .why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 44px;
      }
      .why-card {
        background: #fff;
        border: 1.5px solid var(--border);
        border-radius: 14px;
        padding: 28px 24px;
        text-align: center;
        transition: all 0.22s;
        cursor: default;
      }
      .why-card:hover {
        border-color: var(--navy);
        box-shadow: var(--shadow2);
        transform: translateY(-4px);
      }
      .why-icon {
        font-size: 2.2rem;
        margin-bottom: 14px;
      }
      .why-title {
        font-family: "Playfair Display", serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 8px;
      }
      .why-desc {
        font-size: 0.8rem;
        color: var(--text2);
        line-height: 1.65;
      }

      /* ══════════════════════════
   PROCESS
   ══════════════════════════ */
      .steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 48px;
        position: relative;
      }
      .steps::before {
        content: "";
        position: absolute;
        top: 28px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(
          90deg,
          var(--red),
          rgba(160, 21, 53, 0.15),
          var(--red)
        );
        z-index: 0;
      }
      .step {
        text-align: center;
        position: relative;
        z-index: 1;
      }
      .step-n {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--red);
        border: 3px solid #fff;
        font-family: "Playfair Display", serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        box-shadow: 0 4px 16px rgba(160, 21, 53, 0.3);
      }
      .step-t {
        font-family: "Playfair Display", serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 7px;
      }
      .step-d {
        font-size: 0.78rem;
        color: var(--text2);
        line-height: 1.65;
      }

      /* ══════════════════════════
   REVIEWS
   ══════════════════════════ */
      .reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 44px;
      }
      .review {
        background: #fff;
        border: 1.5px solid var(--border);
        border-radius: 14px;
        padding: 28px;
        transition: all 0.22s;
      }
      .review:hover {
        border-color: var(--red);
        transform: translateY(-4px);
        box-shadow: var(--shadow2);
      }
      .stars {
        color: var(--gold);
        font-size: 1rem;
        margin-bottom: 13px;
        letter-spacing: 2px;
      }
      .r-q {
        font-family: "Playfair Display", serif;
        font-size: 1.02rem;
        color: var(--text);
        line-height: 1.75;
        font-style: italic;
        margin-bottom: 18px;
      }
      .r-a {
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--navy);
      }
      .r-r {
        font-size: 0.69rem;
        color: var(--text2);
        margin-top: 2px;
      }

      /* ══════════════════════════
   BOTTOM CTA
   ══════════════════════════ */
      .bottom-cta {
        position: relative;
        padding: 90px 56px;
        display: grid;
        grid-template-columns: 1fr 390px;
        gap: 60px;
        align-items: center;
        overflow: hidden;
        background: var(--navy);
      }
      .bcta-img {
        position: absolute;
        inset: 0;
        z-index: 0;
        background-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&q=80");
        background-size: cover;
        background-position: center;
        opacity: 0.18;
      }
      .bcta-l {
        position: relative;
        z-index: 1;
      }
      .bcta-l .kicker {
        color: rgba(255, 255, 255, 0.55);
      }
      .bcta-l h2 {
        font-family: "Playfair Display", serif;
        font-size: clamp(1.9rem, 3vw, 2.8rem);
        font-weight: 700;
        line-height: 1.2;
        color: #fff;
        margin-bottom: 13px;
      }
      .bcta-l p {
        font-size: 0.96rem;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.78;
        margin-bottom: 26px;
        max-width: 460px;
      }
      .big-phone {
        font-family: "Playfair Display", serif;
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--gold);
        display: block;
        margin-bottom: 5px;
        transition: color 0.2s;
      }
      .big-phone:hover {
        color: #fff;
      }
      .ph-hrs {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.38);
        margin-bottom: 22px;
      }
      .bcta-r {
        position: relative;
        z-index: 1;
      }
      .mini-form {
        background: #fff;
        border-radius: 16px;
        padding: 30px 26px;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
      }
      .mini-form h3 {
        font-family: "Playfair Display", serif;
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 3px;
      }
      .mini-form p {
        font-size: 0.76rem;
        color: var(--text2);
        margin-bottom: 18px;
      }
      .mini-form input,
      .mini-form select {
        background: var(--off);
        border-color: var(--border);
      }
      .mini-form input:focus,
      .mini-form select:focus {
        border-color: var(--red);
        background: #fff;
      }
      .btn-sg {
        width: 100%;
        margin-top: 6px;
        background: var(--red);
        color: #fff;
        font-family: "Inter", sans-serif;
        font-weight: 700;
        font-size: 0.86rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 14px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.22s;
        box-shadow: 0 4px 16px rgba(160, 21, 53, 0.25);
      }
      .btn-sg:hover {
        background: var(--red2);
        transform: translateY(-1px);
      }

      /* ══════════════════════════
   SOUND + FAB
   ══════════════════════════ */
      #soundBtn {
        position: fixed;
        bottom: 90px;
        right: 20px;
        z-index: 500;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid var(--border2);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        transition: all 0.25s;
        box-shadow: var(--shadow2);
      }
      #soundBtn:hover {
        border-color: var(--red);
        background: var(--red-light);
      }
      #soundBtn.playing {
        border-color: var(--red);
        animation: sPulse 2s ease infinite;
      }
      @keyframes sPulse {
        0%,
        100% {
          box-shadow: 0 0 0 0 rgba(160, 21, 53, 0.3);
        }
        50% {
          box-shadow: 0 0 0 8px rgba(160, 21, 53, 0);
        }
      }
      .fab {
        position: fixed;
        bottom: 24px;
        right: 20px;
        z-index: 500;
        background: var(--red);
        color: #fff;
        font-weight: 700;
        font-size: 0.8rem;
        letter-spacing: 0.04em;
        padding: 12px 18px;
        border-radius: 100px;
        box-shadow: 0 6px 24px rgba(160, 21, 53, 0.5);
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        animation: fabGlow 3s ease infinite;
      }
      @keyframes fabGlow {
        0%,
        100% {
          box-shadow: 0 6px 24px rgba(160, 21, 53, 0.5);
        }
        50% {
          box-shadow: 0 10px 36px rgba(160, 21, 53, 0.75);
        }
      }
      .fab:hover {
        background: var(--red2);
      }

      /* ══════════════════════════
   FOOTER — BusinessFly style
   ══════════════════════════ */
      .site-footer {
        background: var(--navy);
        color: #fff;
      }
      .footer-top {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
        gap: 48px;
        padding: 52px 56px 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }
      .foot-logo-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
      }
      .foot-logo-mark {
        width: 38px;
        height: 38px;
        background: var(--red);
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .foot-logo-mark svg {
        width: 20px;
        height: 20px;
        fill: #fff;
      }
      .foot-brand-text .fb1 {
        font-family: "Playfair Display", serif;
        font-size: 1.2rem;
        font-weight: 900;
        color: #fff;
      }
      .foot-brand-text .fb2 {
        font-family: "Playfair Display", serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--gold);
      }
      .foot-desc {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.78;
        margin-bottom: 18px;
        max-width: 260px;
      }
      .foot-tta-row {
        display: flex;
        gap: 8px;
        margin-bottom: 16px;
      }
      .tta-chip {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 6px;
        padding: 6px 10px;
        text-align: center;
      }
      .tta-chip .tc1 {
        font-size: 0.6rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--gold);
        display: block;
      }
      .tta-chip .tc2 {
        font-size: 0.57rem;
        color: rgba(255, 255, 255, 0.45);
        display: block;
        margin-top: 1px;
      }
      .foot-cards {
        display: flex;
        gap: 5px;
        flex-wrap: wrap;
      }
      .card-chip {
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 4px;
        padding: 3px 8px;
        font-size: 0.62rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.03em;
      }

      .foot-col h4 {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 16px;
        font-weight: 700;
      }
      .foot-col ul {
        list-style: none;
      }
      .foot-col ul li {
        margin-bottom: 9px;
      }
      .foot-col ul li a {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.6);
        transition: color 0.18s;
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .foot-col ul li a:hover {
        color: var(--gold);
      }
      .foot-col ul li a::before {
        content: "›";
        color: var(--red);
        font-size: 0.9rem;
      }

      .foot-contact p {
        font-size: 0.81rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.75;
        margin-bottom: 8px;
        display: flex;
        align-items: flex-start;
        gap: 7px;
      }
      .foot-contact p span {
        color: rgba(255, 255, 255, 0.35);
        flex-shrink: 0;
        margin-top: 1px;
      }
      .foot-contact a {
        color: rgba(255, 255, 255, 0.6);
        transition: color 0.18s;
      }
      .foot-contact a:hover {
        color: var(--gold);
      }
      .wa-link {
        color: #25d366 !important;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .foot-reg {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.25);
        line-height: 1.65;
        margin-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 14px;
      }

      .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 56px;
        background: rgba(0, 0, 0, 0.25);
        flex-wrap: wrap;
        gap: 10px;
      }
      .footer-bottom p {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.28);
      }
      .foot-bottom-links {
        display: flex;
        gap: 18px;
      }
      .foot-bottom-links a {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.32);
        transition: color 0.18s;
      }
      .foot-bottom-links a:hover {
        color: var(--gold);
      }

      /* ══════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════ */
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .hero-left > * {
        animation: fadeUp 0.6s ease both;
      }
      .hero-left > *:nth-child(1) {
        animation-delay: 0.08s;
      }
      .hero-left > *:nth-child(2) {
        animation-delay: 0.16s;
      }
      .hero-left > *:nth-child(3) {
        animation-delay: 0.24s;
      }
      .hero-left > *:nth-child(4) {
        animation-delay: 0.32s;
      }
      .hero-left > *:nth-child(5) {
        animation-delay: 0.4s;
      }
      .lead-card {
        animation: fadeUp 0.7s 0.25s ease both;
      }

      /* ══════════════════════════
   RESPONSIVE
   ══════════════════════════ */
      @media (max-width: 1100px) {
        .dest-grid {
          grid-template-columns: repeat(3, 1fr);
        }
        .dest-card.wide {
          grid-column: span 2;
        }
        .fares-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .why-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .steps {
          grid-template-columns: repeat(2, 1fr);
        }
        .steps::before {
          display: none;
        }
        .gallery-strip {
          grid-template-columns: repeat(3, 1fr);
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
        }
      }
      @media (max-width: 900px) {
        .header-topbar {
          padding: 7px 18px;
        }
        .htb-left .htb-times-wrap {
          display: none;
        }
        .header-main {
          padding: 10px 18px;
        }
        .header-tta,
        .header-phone-block {
          display: none;
        }
        .header-nav {
          padding: 0 18px;
        }
        .nav-list,
        .nav-beat {
          display: none;
        }
        .mob-toggle {
          display: block;
        }

        .hero {
          grid-template-columns: 1fr;
        }
        .hero-left {
          padding: 44px 20px 28px;
        }
        h1 {
          font-size: 2.2rem;
        }
        .hero-stats {
          max-width: 100%;
        }
        .hero-form-col {
          padding: 0 20px 48px;
        }

        .section {
          padding: 56px 20px;
        }
        .sec-p {
          margin-bottom: 32px;
        }

        .dest-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .dest-card.wide {
          grid-column: span 2;
          aspect-ratio: 16/7;
        }

        .exp-grid {
          grid-template-columns: 1fr;
        }
        .exp-panel.tall img {
          min-height: 300px;
        }
        .exp-right {
          grid-template-rows: auto;
        }

        .why-grid {
          grid-template-columns: 1fr 1fr;
        }
        .steps {
          grid-template-columns: 1fr 1fr;
        }

        .gallery-strip {
          grid-template-columns: repeat(2, 1fr);
          height: auto;
        }
        .gal-it img {
          height: 150px;
        }

        .reviews-grid {
          grid-template-columns: 1fr;
        }

        .bottom-cta {
          grid-template-columns: 1fr;
          padding: 60px 20px;
        }

        .airline-strip {
          padding: 14px 20px;
        }

        .footer-top {
          grid-template-columns: 1fr 1fr;
          padding: 36px 24px 28px;
        }
        .footer-bottom {
          padding: 15px 24px;
          flex-direction: column;
          text-align: center;
        }
        .foot-bottom-links {
          justify-content: center;
        }

        .fab {
          font-size: 0.75rem;
          padding: 10px 14px;
          bottom: 16px;
          right: 16px;
        }
        #soundBtn {
          bottom: 70px;
          right: 16px;
          width: 42px;
          height: 42px;
        }
      }
      @media (max-width: 560px) {
        .dest-grid {
          grid-template-columns: 1fr 1fr;
        }
        .dest-card.wide {
          grid-column: span 2;
          aspect-ratio: 16/7;
        }
        .fares-grid {
          grid-template-columns: 1fr;
        }
        .why-grid {
          grid-template-columns: 1fr;
        }
        .steps {
          grid-template-columns: 1fr;
        }
        .hero-btns {
          flex-direction: column;
        }
        .btn-red,
        .btn-navy,
        .btn-outline {
          justify-content: center;
          text-align: center;
        }
        .footer-top {
          grid-template-columns: 1fr;
        }
        .gallery-strip {
          grid-template-columns: 1fr 1fr;
        }
        .stat-item {
          padding: 12px 10px;
        }
      }
