:root {
    --navy: #042C53;
    --navy-dark: #021c38;
    --blue: #185FA5;
    --blue-light: #E6F1FB;
    --amber: #EF9F27;
    --amber-dark: #BA7517;
    --amber-text: #412402;
    --green: #3B6D11;
    --red: #A32D2D;
    --text: #1a1a1a;
    --text-muted: #5F5E5A;
    --text-light: #888780;
    --bg: #ffffff;
    --bg-soft: #F7F6F2;
    --border: rgba(0, 0, 0, 0.08);
    --border-strong: rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
    .footer-part {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 14px 0;
    line-height: 1.6;
}
  /* ===== Top utility bar ===== */
  .utility-bar {
    background: var(--navy-dark);
    color: rgba(230, 241, 251, 0.9);
    font-size: 13px;
  }
  .utility-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    flex-wrap: wrap;
    gap: 8px;
  }
  .utility-left { display: flex; gap: 20px; flex-wrap: wrap; }
  .utility-left span svg { vertical-align: -3px; margin-right: 4px; }
  .utility-right { display: flex; gap: 14px; align-items: center; }
  .utility-right .label { opacity: 0.85; }
  .toll-pill {
    background: var(--amber);
    color: var(--amber-text);
    padding: 5px 14px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.15s;
  }
  .toll-pill:hover { background: #f5af3f; }

  /* ===== Header ===== */
  .header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 19px;
    color: var(--navy);
  }
  .logo-mark {
    width: 36px;
    height: 36px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
  }
  .nav {
    display: flex;
    gap: 28px;
    font-size: 15px;
    color: var(--text-muted);
  }
  .nav a { transition: color 0.15s; }
  .nav a:hover { color: var(--navy); }
  .header-cta {
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .mobile-toggle { display: none; background: none; }

  /* ===== Hero ===== */
  .hero {
    background:
      linear-gradient(135deg, var(--blue-light) 0%, #d9eaf8 100%);
    padding: 56px 0 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239, 159, 39, 0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }
  .hero h1 .highlight { color: var(--amber-dark); }
  .hero-sub {
    font-size: 17px;
    color: var(--blue);
    margin-bottom: 28px;
  }

  /* ===== Search box ===== */
  .search-box {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 20px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    text-align: left;
    position: relative;
    z-index: 2;
  }
  .trip-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }
  .trip-tab {
    padding: 8px 16px 12px;
    font-size: 14px;
    color: var(--text-muted);
    background: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .trip-tab.active {
    color: var(--navy);
    border-bottom-color: var(--amber);
  }

  .search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }
  .search-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }
  .field {
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    transition: border-color 0.15s, box-shadow 0.15s;
    cursor: pointer;
  }
  .field:hover { border-color: var(--blue); }
  .field-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }
  .field-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
  }
  .field-sub {
    font-size: 12px;
    color: var(--text-muted);
  }

  .search-btn {
    width: 100%;
    background: var(--amber);
    color: var(--amber-text);
    padding: 14px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    transition: background 0.15s, transform 0.05s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .search-btn:hover { background: #f5af3f; }
  .search-btn:active { transform: scale(0.99); }

  .call-note {
    font-size: 14px;
    color: var(--blue);
    margin-top: 18px;
  }
  .call-note strong {
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
  }

  /* ===== Airline logos strip ===== */
  .airlines {
    background: var(--bg);
    padding: 36px 0 32px;
    border-bottom: 1px solid var(--border);
  }
  .airlines-eyebrow {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .airline-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
 .airline-card {
    border-radius: var(--radius-md);
    padding: 18px 12px;
    text-align: center;
    transition: background 0.15s, transform 0.15s;
    cursor: pointer;
    box-shadow: 1px 2px 3px #eee, -1px -1px 3px #eee;
}
  .airline-card:hover {
    transform: translateY(-2px);
  }
  /* .airline-mark {
    font-size: 22px;
    margin-bottom: 4px;
    display: block;
  } */
  .airline-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
  }
.airline-mark img {
    width: 100%;
    height: auto;
}
  /* ===== Deals section ===== */
  .deals {
    background: var(--bg);
    padding: 48px 0;
  }
  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .section-head h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.3px;
  }
  .section-head .meta {
    font-size: 13px;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .live-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .deal-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    background: var(--bg);
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
    cursor: pointer;
  }
  .deal-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  .deal-route {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
  }
  .deal-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
  }
  .deal-price .from {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    margin-right: 4px;
  }
  .deal-save {
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .deal-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
  }

  /* ===== Why call us ===== */
  .why-call {
    background: var(--navy);
    color: #fff;
    padding: 56px 0;
  }
  .why-call-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .why-call h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
  }
  .why-call p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 24px;
    line-height: 1.6;
  }
  .big-toll {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--amber);
    color: var(--amber-text);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 22px;
    font-weight: 700;
    transition: background 0.15s;
  }
  .big-toll:hover { background: #f5af3f; }
  .big-toll .small {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
  }
  .why-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .why-point {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .why-point-icon {
    color: var(--amber);
    margin-bottom: 10px;
  }
  .why-point h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .why-point p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.5;
  }

  /* ===== Trust strip ===== */
  .trust {
    background: var(--blue-light);
    padding: 32px 0;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
  }
  .trust-item svg {
    color: var(--blue);
    margin-bottom: 8px;
  }
  .trust-item .title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
  }
  .trust-item .sub {
    font-size: 12px;
    color: var(--blue);
    margin-top: 2px;
  }

  /* ===== Footer ===== */
  .footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 48px 0 24px;
    font-size: 14px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
  }
  .footer h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .footer ul { list-style: none; }
  .footer ul li {
    margin-bottom: 8px;
  }
  .footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.15s;
    font-size: 13px;
  }
  .footer ul li a:hover { color: var(--amber); }
  .footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 14px 0;
    line-height: 1.6;
  }
  .footer-toll {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber);
    font-weight: 700;
    font-size: 18px;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }

  /* ===== Responsive ===== */
  @media (max-width: 900px) {
    .nav { display: none; }
    .mobile-toggle { display: flex; align-items: center; }
    .hero h1 { font-size: 32px; }
    .airline-grid { grid-template-columns: repeat(3, 1fr); }
    .deals-grid { grid-template-columns: 1fr; }
    .why-call-inner { grid-template-columns: 1fr; gap: 32px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .search-grid, .search-grid-3 { grid-template-columns: 1fr; }
    .utility-left { display: none; }
  }

  @media (max-width: 520px) {
    .hero { padding: 36px 0 44px; }
    .hero h1 { font-size: 26px; }
    .hero-sub { font-size: 15px; }
    .airline-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .header-cta span.cta-label { display: none; }
    .big-toll { font-size: 18px; padding: 12px 18px; }
  }