:root {
      --navy:      #1B2B6B;
      --navy-dark: #111D4A;
      --teal:      #009FBF;
      --teal-light:#00C4E8;
      --gold:      #C9A84C;
      --gold-light:#E8C96A;
      --white:     #FFFFFF;
      --off-white: #F4F6FA;
      --gray:      #E8ECF4;
      --text:      #1B2B6B;
      --text-soft: #4A5680;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Barlow', sans-serif;
      background: var(--off-white);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── TOPBAR ── */
    .topbar {
      background: var(--navy-dark);
      padding: 8px 40px;
      display: flex;
      justify-content: flex-end;
      gap: 28px;
    }
    .topbar a {
      color: rgba(255,255,255,.75);
      text-decoration: none;
      font-size: 12.5px;
      font-weight: 500;
      letter-spacing: .04em;
      transition: color .2s;
    }
    .topbar a:hover { color: var(--teal-light); }

    /* ── HEADER ── */
    header {
      background: rgba(255,255,255,0.97);
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 16px rgba(27,43,107,.12);
      position: sticky;
      top: 0;
      z-index: 100;
      height: 72px;
    }
    .logo-wrap { display: flex; flex-direction: column; align-items: flex-start; }
    .logo-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: .08em;
      color: var(--navy);
      line-height: 1;
    }
    .logo-text span { color: var(--teal); }
    .star-alliance {
      font-size: 9px;
      letter-spacing: .12em;
      color: var(--teal);
      text-transform: uppercase;
      font-weight: 600;
      margin-top: 2px;
    }
    nav { display: flex; gap: 32px; align-items: center; }
    nav a {
      text-decoration: none;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--navy);
      letter-spacing: .04em;
      position: relative;
      padding-bottom: 4px;
      transition: color .2s;
    }
    nav a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--teal);
      transition: width .3s;
    }
    nav a:hover { color: var(--teal); }
    nav a:hover::after { width: 100%; }
    .btn-book {
      background: var(--teal);
      color: var(--white) !important;
      padding: 9px 22px;
      border-radius: 3px;
      font-size: 13px !important;
      font-weight: 700 !important;
      letter-spacing: .06em;
      text-decoration: none;
      transition: background .2s, transform .15s;
    }
    .btn-book:hover { background: var(--navy); transform: translateY(-1px); }
    .btn-book::after { display: none !important; }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 680px;
      display: flex;
      align-items: stretch;
      overflow: hidden;
    }

    /* Real attractive background image with overlay */
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1800&auto=format&fit=crop&q=85');
      background-size: cover;
      background-position: center 35%;
      z-index: 0;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(17,29,74,0.95) 0%,
        rgba(27,43,107,0.88) 38%,
        rgba(27,43,107,0.55) 65%,
        rgba(0,100,130,0.25) 100%
      );
    }

    /* Subtle diagonal decorative lines */
    .hero-pattern {
      position: absolute;
      inset: 0;
      z-index: 1;
      opacity: .06;
      background-image: repeating-linear-gradient(
        -48deg,
        transparent,
        transparent 36px,
        rgba(255,255,255,.8) 36px,
        rgba(255,255,255,.8) 38px
      );
    }

    /* Gold accent bar on left edge */
    .hero-gold-bar {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 5px;
      background: linear-gradient(180deg, var(--gold) 0%, var(--teal-light) 100%);
      z-index: 2;
    }

    .hero-inner {
      position: relative;
      z-index: 3;
      width: 100%;
      max-width: 1220px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 48px;
      align-items: center;
      padding: 64px 48px 64px 60px;
    }

    /* Left content */
    .hero-content { animation: fadeUp .8s ease both; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold);
      color: var(--navy-dark);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 2px;
      margin-bottom: 22px;
    }

    .hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(38px, 4.5vw, 62px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.05;
      letter-spacing: .01em;
      margin-bottom: 20px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--teal-light);
    }
    .hero h1 .gold-text {
      color: var(--gold-light);
    }
    .hero-sub {
      color: rgba(255,255,255,.82);
      font-size: 16.5px;
      font-weight: 400;
      line-height: 1.68;
      max-width: 500px;
      margin-bottom: 36px;
    }

    /* Hero trust badges */
    .hero-trust {
      display: flex;
      gap: 24px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.75);
      font-size: 13px;
      font-weight: 500;
    }
    .trust-item .t-icon {
      font-size: 18px;
    }

    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
    .btn-primary {
      background: var(--teal-light);
      color: var(--navy-dark);
      font-family: 'Barlow', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 14px 30px;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(0,196,232,.4);
    }
    .btn-primary:hover {
      background: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0,196,232,.45);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 13px 28px;
      border: 2px solid rgba(255,255,255,.5);
      border-radius: 3px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: border-color .2s, background .2s, color .2s;
    }
    .btn-outline:hover {
      border-color: var(--teal-light);
      background: rgba(0,196,232,.14);
      color: var(--teal-light);
    }
    .btn-gold {
      background: var(--gold);
      color: var(--navy-dark);
      font-family: 'Barlow', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 13px 28px;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 18px rgba(201,168,76,.35);
    }
    .btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 26px rgba(201,168,76,.45);
    }

    /* ── HERO FORM (right column) ── */
    .hero-form-wrap {
      animation: fadeUp .85s .15s ease both;
    }
    .hero-form-card {
      background: rgba(255,255,255,0.97);
      border-radius: 10px;
      padding: 36px 32px 32px;
      box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.15);
      position: relative;
      overflow: hidden;
    }
    .hero-form-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--gold) 0%, var(--teal-light) 100%);
    }
    .hero-form-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 24px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: .04em;
      margin-bottom: 4px;
    }
    .hero-form-card .form-sub {
      font-size: 13px;
      color: var(--text-soft);
      margin-bottom: 22px;
      line-height: 1.5;
    }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text-soft);
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid #D4DAED;
      border-radius: 4px;
      font-family: 'Barlow', sans-serif;
      font-size: 14.5px;
      color: var(--navy);
      background: var(--white);
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      appearance: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: #a0aac4; }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(0,159,191,.12);
    }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .btn-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 15px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      margin-top: 6px;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 16px rgba(27,43,107,.3);
    }
    .btn-submit:hover {
      background: linear-gradient(135deg, var(--teal) 0%, #007a9a 100%);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,159,191,.35);
    }
    .form-note {
      text-align: center;
      margin-top: 10px;
      font-size: 11.5px;
      color: var(--text-soft);
    }
    .toast {
      display: none;
      background: #e6f9f2;
      border: 1.5px solid #34c785;
      border-radius: 4px;
      padding: 12px 16px;
      font-size: 13.5px;
      color: #1a6e40;
      font-weight: 600;
      margin-bottom: 16px;
      gap: 10px;
      align-items: center;
    }
    .toast.show { display: flex; }

    /* ── ANNIVERSARY STRIP ── */
    .strip {
      background: var(--navy);
      padding: 16px 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }
    .strip-icon { font-size: 24px; }
    .strip-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .strip-divider { width: 1px; height: 22px; background: rgba(255,255,255,.25); }
    .strip-sub { color: rgba(255,255,255,.75); font-size: 14px; font-weight: 400; }

    /* ── URGENCY BANNER ── */
    .urgency-banner {
      background: linear-gradient(90deg, var(--gold) 0%, #e6b830 50%, var(--gold) 100%);
      padding: 14px 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      text-align: center;
    }
    .urgency-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 17px;
      font-weight: 800;
      color: var(--navy-dark);
      letter-spacing: .05em;
      text-transform: uppercase;
    }
    .urgency-cta {
      background: var(--navy-dark);
      color: var(--white);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 7px 18px;
      border-radius: 2px;
      text-decoration: none;
      transition: background .2s;
      white-space: nowrap;
    }
    .urgency-cta:hover { background: var(--navy); }

    /* ── SECTION WRAPPER ── */
    .section { padding: 70px 40px; }
    .section-inner { max-width: 1120px; margin: 0 auto; }

    .section-tag {
      display: inline-block;
      background: var(--teal);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 2px;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      color: var(--navy);
      letter-spacing: .02em;
      margin-bottom: 8px;
    }
    .section-sub {
      color: var(--text-soft);
      font-size: 15.5px;
      line-height: 1.65;
      max-width: 560px;
      margin-bottom: 44px;
    }

    /* ── OFFER HIGHLIGHTS ── */
    .offers-bg { background: var(--white); }
    .offers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 22px;
    }
    .offer-card {
      border: 1.5px solid var(--gray);
      border-radius: 6px;
      padding: 28px 26px;
      background: var(--off-white);
      position: relative;
      overflow: hidden;
      transition: transform .25s, box-shadow .25s, border-color .25s;
    }
    .offer-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--teal) 0%, var(--navy) 100%);
    }
    .offer-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(27,43,107,.12);
      border-color: var(--teal);
    }
    .offer-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 48px;
      font-weight: 800;
      color: var(--gray);
      line-height: 1;
      position: absolute;
      top: 16px; right: 20px;
      user-select: none;
    }
    .offer-icon { font-size: 30px; margin-bottom: 14px; display: block; }
    .offer-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: .02em;
      margin-bottom: 8px;
    }
    .offer-desc { color: var(--text-soft); font-size: 14.5px; line-height: 1.6; }
    .offer-badge {
      display: inline-block;
      margin-top: 14px;
      background: var(--teal);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 2px;
    }
    .offer-cta-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      color: var(--teal);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      text-decoration: none;
      transition: gap .2s, color .2s;
    }
    .offer-cta-link:hover { gap: 10px; color: var(--navy); }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: linear-gradient(120deg, var(--navy-dark) 0%, #163060 50%, var(--teal) 100%);
      padding: 60px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '✈';
      position: absolute;
      font-size: 300px;
      right: -40px;
      top: -60px;
      opacity: .04;
      transform: rotate(10deg);
      pointer-events: none;
    }
    .cta-banner-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
    .cta-banner h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(30px, 4vw, 50px);
      font-weight: 800;
      color: var(--white);
      letter-spacing: .02em;
      margin-bottom: 14px;
      line-height: 1.1;
    }
    .cta-banner p {
      color: rgba(255,255,255,.78);
      font-size: 16px;
      line-height: 1.65;
      margin-bottom: 32px;
    }
    .cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ── NEW ROUTES BANNER ── */
    .routes-section { background: var(--navy); }
    .routes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
    .route-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 6px;
      padding: 32px;
      position: relative;
      overflow: hidden;
      transition: background .25s, border-color .25s;
    }
    .route-card::after {
      content: '✈';
      position: absolute;
      bottom: -10px; right: 20px;
      font-size: 90px;
      opacity: .06;
      transform: rotate(-20deg);
    }
    .route-card:hover { background: rgba(0,196,232,.1); border-color: var(--teal); }
    .route-from {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--teal-light);
    }
    .route-arrow { color: rgba(255,255,255,.35); font-size: 18px; margin: 0 10px; }
    .route-dest {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 38px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: .02em;
      margin: 8px 0;
      line-height: 1;
    }
    .route-date {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--gold);
      color: var(--navy-dark);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      padding: 4px 12px;
      border-radius: 2px;
      margin-top: 12px;
    }
    .route-sub { color: rgba(255,255,255,.6); font-size: 13.5px; margin-top: 10px; }
    .route-book-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      color: var(--teal-light);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      transition: gap .2s;
    }
    .route-book-link:hover { gap: 10px; }

    /* ── FIFA SECTION ── */
    .fifa-section { background: var(--off-white); }
    .fifa-card {
      background: linear-gradient(120deg, var(--navy) 0%, #1e5080 50%, var(--teal) 100%);
      border-radius: 8px;
      padding: 56px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      overflow: hidden;
      position: relative;
    }
    .fifa-card::before {
      content: '⚽';
      position: absolute;
      font-size: 260px;
      right: -30px;
      top: -40px;
      opacity: .06;
      pointer-events: none;
    }
    .fifa-left { flex: 1; }
    .fifa-left h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 800;
      color: var(--white);
      letter-spacing: .02em;
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .fifa-left p {
      color: rgba(255,255,255,.8);
      font-size: 15.5px;
      line-height: 1.65;
      max-width: 480px;
    }
    .fifa-left .fifa-btns { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
    .fifa-right { flex-shrink: 0; text-align: center; }
    .fifa-emblem {
      width: 140px; height: 140px;
      border-radius: 50%;
      background: rgba(255,255,255,.12);
      border: 3px solid var(--gold);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 48px rgba(201,168,76,.35);
    }
    .fifa-year {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 38px;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
    }
    .fifa-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      color: rgba(255,255,255,.8);
      text-transform: uppercase;
      margin-top: 4px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy-dark);
      color: rgba(255,255,255,.65);
      padding: 48px 40px 24px;
    }
    .footer-inner { max-width: 1120px; margin: 0 auto; }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand .logo-text { color: var(--white); margin-bottom: 12px; }
    .footer-brand p { font-size: 13.5px; line-height: 1.7; max-width: 260px; }
    .footer-col h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--teal-light);
      margin-bottom: 14px;
    }
    .footer-col a {
      display: block;
      color: rgba(255,255,255,.6);
      text-decoration: none;
      font-size: 13.5px;
      margin-bottom: 9px;
      transition: color .2s;
    }
    .footer-col a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 12.5px; }
    .footer-bottom a {
      color: rgba(255,255,255,.5);
      text-decoration: none;
      font-size: 12.5px;
      margin-left: 20px;
      transition: color .2s;
    }
    .footer-bottom a:hover { color: var(--white); }

    /* ── PHONE WRAP ── */
    .phone-wrap {
      display: flex;
      gap: 0;
      border: 1.5px solid #D4DAED;
      border-radius: 4px;
      overflow: hidden;
      transition: border-color .2s, box-shadow .2s;
    }
    .phone-wrap:focus-within {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(0,159,191,.12);
    }
    .phone-code-select {
      width: 110px !important;
      min-width: 110px;
      border: none !important;
      border-right: 1.5px solid #D4DAED !important;
      border-radius: 0 !important;
      background: #F0F3FA !important;
      font-size: 13px !important;
      padding: 11px 8px !important;
      color: var(--navy) !important;
      font-weight: 600;
      cursor: pointer;
      box-shadow: none !important;
      outline: none !important;
      flex-shrink: 0;
    }
    .phone-wrap input[type="tel"] {
      border: none !important;
      border-radius: 0 !important;
      flex: 1;
      box-shadow: none !important;
      outline: none !important;
    }

    /* ── HERO HIGHLIGHTS ── */
    .hero-highlights {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 30px;
    }
    .highlight-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 18px;
      border-radius: 4px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      width: fit-content;
      position: relative;
      overflow: hidden;
    }
    .highlight-pill::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: .12;
      background: linear-gradient(90deg, var(--white), transparent);
    }
    .highlight-pill-gold {
      background: linear-gradient(90deg, rgba(201,168,76,.22) 0%, rgba(201,168,76,.08) 100%);
      border: 1.5px solid var(--gold);
      color: var(--gold-light);
    }
    .highlight-pill-teal {
      background: linear-gradient(90deg, rgba(0,159,191,.22) 0%, rgba(0,159,191,.06) 100%);
      border: 1.5px solid var(--teal-light);
      color: var(--teal-light);
    }
    .highlight-pill-white {
      background: linear-gradient(90deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.04) 100%);
      border: 1.5px solid rgba(255,255,255,.35);
      color: rgba(255,255,255,.92);
    }
    .highlight-pill-icon {
      font-size: 18px;
      flex-shrink: 0;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1000px) {
      .hero-inner {
        grid-template-columns: 1fr;
        padding: 50px 28px;
        gap: 36px;
      }
      .hero-form-wrap { max-width: 520px; }
    }
    @media (max-width: 900px) {
      header { padding: 0 20px; }
      nav { display: none; }
      .section { padding: 50px 20px; }
      .routes-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .topbar { padding: 8px 20px; }
      .strip { flex-wrap: wrap; gap: 8px; padding: 14px 20px; }
      .fifa-card { flex-direction: column; padding: 36px 28px; }
      .urgency-banner { flex-direction: column; gap: 10px; }
    }
    @media (max-width: 560px) {
      .footer-top { grid-template-columns: 1fr; }
      .form-row-2 { grid-template-columns: 1fr; }
      .hero-form-card { padding: 24px 20px; }
    }


.text-center{
  text-align: center;
}