   @font-face {
  font-family: 'AirWales1';
  src: url('AirWales1_Reg.woff2') format('woff2'),
       url('AirWales1_Reg.woff')  format('woff'),
       url('AirWales1_Reg.ttf')   format('truetype');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AirWales1';
  src: url('AirWales1_Bold.woff2') format('woff2'),
       url('AirWales1_Bold.woff')  format('woff'),
       url('AirWales1_Bold.ttf')   format('truetype');
  font-style: normal;
  font-display: swap;
}

   
   /* ── Reset ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --red:      #832425;
      --red-dark: #5e0b0c;
      --bg:       #191e25 ;
      --bg-card:  #313a46 ;
      --line:     rgba(255,255,255,0.06);
      --white:    #ffffff;
      --font-display_1: 'AirWales1', sans-serif;
      --font-display: 'Montserrat', sans-serif;
      --font-body: 'Southwest Sans', sans-serif;
      --font-body_1:    'Quicksand', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--white);
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
    }

    /* ────────────────────────────────
       NAVBAR — ghost, transparent
    ──────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      padding-top: 1%;
      height: 60px;
      background: linear-gradient(to bottom, rgba(5,7,12,0.55) 0%, rgba(5,7,12,0) 100%);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
    }

    .nav-bar {
      width: 2px;
      height: 15px;
      background: rgba(192,57,43,0.65);
      border-radius: 99px;
      flex-shrink: 0;
    }


    .nav-logo-img {
  height: 44px;       /* adjust to taste — 28–36px works well in a 54px navbar */
  width: auto;        /* keeps aspect ratio */
  object-fit: contain;
  display: block;
}

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-links a {
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: rgba(255, 255, 255, 0.774);
      text-decoration: none;
      transition: color 0.25s;
    }

    .nav-links a:hover { color: rgba(255,255,255,0.72); }

    .nav-links a.nav-cta { color: #d18d8e; }
    .nav-links a.nav-cta:hover { color: rgba(192,57,43,1); }

    /* ────────────────────────────────
       HERO
    ──────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 54px 40px 110px;
      overflow: hidden;
    }


    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../img/bg_2026.png');
      background-size: cover;
      background-position: center 42%;
      filter: blur(5px);
      transform: scale(1.05);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(5,7,12,0.60)  0%,
        rgba(5,7,12,0.28) 30%,
        rgba(5,7,12,0.45) 65%,
        rgba(5,7,12,0.95) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-size: 15x;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(105, 15, 8, 0.911);
      margin-bottom: 20px;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      display: block;
      width: 22px;
      height: 1px;
      background: rgba(192,57,43,0.35);
    }

    .hero-we-are {
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.89);
      letter-spacing: 0.30em;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .hero-name {
      font-family: var(--font-display);
      font-size: clamp(38px, 6.5vw, 68px);
      font-weight: 800;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      line-height: 1.0;
      background: linear-gradient(95deg, #ffffff 0%, #ececec 55%, #c0392b 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 22px;
    }

    .hero-sub {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.699);
      line-height: 1.72;
      margin-bottom: 34px;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-btn {
      display: inline-block;
      padding: 12px 36px;
      background: var(--red);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 99px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(192,57,43,0.30);
    }

    .hero-btn:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(192,57,43,0.42);
    }

    /* ────────────────────────────────
       STATS
    ──────────────────────────────── */
    .stats-wrap {
      position: relative;
      z-index: 3;
      margin-top: -42px;
      padding: 0;
      display: flex;
      gap: 12px;
      justify-content: center;
    }

    .stat-pill {
      background: var(--bg-card);
      border: 0.5px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      padding: 16px 30px;
      text-align: center;
      flex: 1;
      max-width: 180px;
    }

    .stat-num {
      font-family: var(--font-body);
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
    }

    .stat-num span { color: var(--red); }

    .stat-lbl {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 500;
      color: rgba(255,255,255,0.32);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 4px;
    }

    /* ────────────────────────────────
       AIRLINES
    ──────────────────────────────── */
    .opcos-wrap {
      padding: 32px 0 0;
    }

    .section-label {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.14em;
      color: rgba(255, 255, 255, 0.329);
      text-transform: uppercase;
      margin-bottom: 13px;
    }

    .opcos-list {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .opco-pill {
      background: rgba(255,255,255,0.035);
      border: 0.5px solid rgba(255,255,255,0.08);
      border-radius: 99px;
      padding: 7px 18px;
      display: flex;
      align-items: center;
      gap: 9px;
      transition: background 0.2s;
    }

    .opco-pill:hover { background: rgba(255,255,255,0.065); }

    .opco-code {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
    }

    .opco-sep {
      width: 1px;
      height: 13px;
      background: rgba(255, 255, 255, 0.2);
    }

    .opco-name {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 400;
      color: rgba(255,255,255,0.40);
    }

    /* ────────────────────────────────
       FEATURES
    ──────────────────────────────── */
    .features-wrap {
      padding: 28px 0 32px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .feat-card {
      background: rgba(255,255,255,0.025);
      border: 0.5px solid rgba(255,255,255,0.07);
      border-radius: 14px;
      padding: 22px 20px;
      transition: background 0.2s;
    }

    .feat-card:hover { background: rgba(255,255,255,0.045); }

    .feat-dot {
      width: 22px;
      height: 3px;
      background: var(--red);
      border-radius: 99px;
      margin-bottom: 13px;
      opacity: 0.85;
    }

    .feat-title {
      font-family: var(--font-body);
      font-size: 17px;
      font-weight: 700;
      color: rgba(255,255,255,0.9);
      margin-bottom: 6px;
    }

    .feat-desc {
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 400;
      color: rgba(255,255,255,0.45);
      line-height: 1.65;
    }

    /* ────────────────────────────────
       FOOTER
    ──────────────────────────────── */
    .footer {
      margin: 0 0 24px;
      padding-top: 18px;
      border-top: 0.5px solid rgba(255,255,255,0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-txt {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.38);
    }

    .footer-social {
      display: flex;
      gap: 20px;
    }

    .footer-social a {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.05em;
      color: rgba(255,255,255,0.20);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-social a:hover { color: rgba(255,255,255,0.55); }

    /* ────────────────────────────────
       ANIMATIONS
    ──────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-eyebrow { animation: fadeUp 0.7s ease both; animation-delay: 0.08s; }
    .hero-we-are  { animation: fadeUp 0.7s ease both; animation-delay: 0.20s; }
    .hero-name    { animation: fadeUp 0.7s ease both; animation-delay: 0.32s; }
    .hero-sub     { animation: fadeUp 0.7s ease both; animation-delay: 0.44s; }
    .hero-btn     { animation: fadeUp 0.7s ease both; animation-delay: 0.56s; }

    /* ────────────────────────────────
       CONTAINER — 75% centred on desktop
    ──────────────────────────────── */
    .container {
      max-width: 60%;
      margin: 0 auto;
    }

    /* ────────────────────────────────
       RESPONSIVE
    ──────────────────────────────── */
    @media (max-width: 900px) {
      .features-wrap { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav { padding: 0 24px; }
      .nav-links { gap: 18px; }
      .hero { padding: 54px 24px 100px; min-height: 90vh; }
      .stats-wrap { flex-wrap: wrap; margin-top: -32px; }
      .stat-pill  { max-width: none; flex: 1 1 42%; }
      .opcos-wrap    { padding: 26px 0 0; }
      .features-wrap { grid-template-columns: 1fr; padding: 22px 0 28px; }
      .footer        { margin: 0 0 20px; }
      .container     { max-width: 90%; }
    }

    @media (max-width: 520px) {
      .nav-links a:not(.nav-cta) { display: none; }
      .stat-pill { flex: 1 1 100%; }
      .hero-name { font-size: 36px; }
    }