/*
 * AirJetCharter theme — FOOTER (footer grid, social, payments, bottom bar).
 * Extracted 1:1 from Archive.zip index.html. Loaded after header.
 */
  /* ==========================================================================
     FOOTER
     ========================================================================== */
  .site-footer {
    background: var(--c-navy);
    color: #fff;
    padding: 60px 0 24px;
    position: relative;
    overflow: hidden;
  }
  .site-footer::before {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -50px;
    width: 460px;
    height: 360px;
    background: url('images/air-jet-charter-mark.svg') no-repeat right bottom;
    background-size: contain;
    opacity: .08;
    filter: brightness(0) invert(1);
    pointer-events: none;
  }
  .site-footer .container { position: relative; z-index: 1; }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 32px;
  }
  .logo.light img { filter: brightness(0) invert(1); width: 160px; }

  .footer-tagline {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    max-width: 420px;
    margin: 0;
  }

  .footer-grid {
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }
  .footer-grid h4 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
  .footer-grid li { margin-bottom: 10px; }
  .footer-grid a { color: #cbd5e1; font-size: 14px; transition: color .2s var(--ease); }
  .footer-grid a:hover { color: #fff; }

  .footer-side {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
  }
  .social { display: flex; flex-wrap: nowrap; gap: 14px; }
  .social a {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: background .18s var(--ease);
  }
  .social a:hover { background: rgba(255,255,255,.08); }
  .social img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
  .nbaa { width: 110px; opacity: .85; }

  .footer-bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }
  .payments img { height: 26px; width: auto; }
  .payments img:first-child { height: 22px; }
  .copyright { font-size: 12px; color: #94a3b8; margin: 0; }

