/* ==========================================================================
   FLIGHTS PAGE — FIXED / SCOPED CSS
   ملاحظات على التعديلات موجودة في الرد المرفق معاك في الشات.
   ========================================================================== */

@font-face {
    font-family: "Airline Sans";
    src:
        url("/assets/fonts/IBMPlexSansArabic-Regular.woff2") format("woff2"),
        url("/assets/fonts/IBMPlexSansArabic-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Airline Sans";
    src:
        url("/assets/fonts/IBMPlexSansArabic-Medium.woff2") format("woff2"),
        url("/assets/fonts/IBMPlexSansArabic-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Airline Sans";
    src:
        url("/assets/fonts/IBMPlexSansArabic-SemiBold.woff2") format("woff2"),
        url("/assets/fonts/IBMPlexSansArabic-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Airline Kufi";
    src:
        url("/assets/fonts/NotoKufiArabic-Regular.woff2") format("woff2"),
        url("/assets/fonts/NotoKufiArabic-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Airline Kufi";
    src:
        url("/assets/fonts/NotoKufiArabic-SemiBold.woff2") format("woff2"),
        url("/assets/fonts/NotoKufiArabic-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.flights-page {
    --navy: #082B49;
    --navy-2: #0D3D63;
    --blue: #1769AA;
    --sky: #EAF5FB;
    --gold: #D8A83E;
    --gold-soft: #F7E9C6;
    --ink: #102A43;
    --muted: #62758A;
    --line: #DCE6EE;
    --surface: #FFFFFF;
    --surface-2: #F5F8FB;
    --success: #16825D;
    --shadow-sm: 0 8px 24px rgba(8, 43, 73, .07);
    --shadow-lg: 0 24px 60px rgba(8, 43, 73, .16);
    --radius: 22px;
    --container: 1180px;

    /* FIX: aliases for variables used by the header partial (nav-wrap/brand-text/
     header-phone/header-cta) that were referenced but never defined anywhere
     in this file (--orange, --orange-dark, --ink-soft, --cream-2). Mapped
     onto the existing navy/gold palette so the header matches the rest of
     the page instead of pulling in an unrelated orange theme. */
    --orange: var(--gold);
    --orange-dark: #C78F24;
    --ink-soft: var(--muted);
    --cream-2: var(--sky);
}

.flights-page,
.flights-page * {
    box-sizing: border-box;
}

.flights-page {
    scroll-behavior: smooth;
    margin: 0;
    color: var(--ink);
    background: var(--surface-2);
    font-family: "Airline Sans", Tahoma, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.flights-page a {
    color: inherit;
    text-decoration: none;
}

.flights-page img {
    max-width: 100%;
    display: block;
}

.flights-page .container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}

.flights-page .skip-link {
    position: fixed;
    inset-inline-start: 16px;
    top: -80px;
    z-index: 9999;
    padding: 10px 16px;
    background: var(--navy);
    color: #fff;
    border-radius: 10px;
}

.flights-page .skip-link:focus {
    top: 16px;
}

/* ==========================================================================
   HEADER
   FIX: this is the single "pill" header system (nav-wrap). The old
   site-header/header-inner/main-nav system has been removed because it
   duplicated/conflicted with this one — if the flights-header partial
   actually renders that markup instead, send it over and this block gets
   swapped, not merged.
   ========================================================================== */
.flights-page header {
    position: sticky;
    top: 16px;
    z-index: 200;
    /* wider side margin so the pill doesn't crowd the screen edges */
    padding: 0 clamp(16px, 4vw, 40px);
}

.flights-page .nav-wrap {
    max-width: calc(var(--container) - 40px);
    margin: 0 auto;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 43, 73, .06);
    border-radius: 100px;
    padding: 10px 12px 10px 26px;
    box-shadow: 0 12px 32px -14px rgba(6, 42, 77, .22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: box-shadow .3s ease, background .3s ease;
}

.flights-page header.scrolled .nav-wrap {
    background: #fff;
    box-shadow: 0 16px 40px -14px rgba(6, 42, 77, .32);
}

.flights-page .brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: max-content;
}

.flights-page .brand img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.flights-page .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 5px;
}

.flights-page .brand-text b {
    font-family: "Airline Kufi", sans-serif;
    color: var(--navy);
    font-size: 16.5px;
    line-height: 1;
}

.flights-page .brand-text span {
    color: var(--gold);
    font-size: 9.5px;
    letter-spacing: 1.5px;
    font-weight: 700;
    line-height: 1;
}

.flights-page nav ul {
    display: flex;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.flights-page nav a {
    position: relative;
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
    padding: 9px 18px;
    border-radius: 100px;
    transition: color .2s ease, background .2s ease;
}

.flights-page nav a:hover {
    background: var(--sky);
    color: var(--navy);
}

.flights-page nav a.active,
.flights-page nav a[aria-current="page"] {
    color: var(--navy);
    background: var(--gold-soft);
}

.flights-page .mobile-nav a.active {
    color: var(--gold);
}

.flights-page .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flights-page .header-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--navy);
    font-weight: 700;
    font-size: 13.5px;
    background: var(--sky);
    padding: 10px 16px;
    border-radius: 100px;
    transition: background .2s ease;
}

.flights-page .header-phone:hover {
    background: var(--gold-soft);
}

.flights-page .header-phone svg {
    width: 15px;
    height: 15px;
    fill: var(--gold);
}

.flights-page .header-cta {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    background: linear-gradient(135deg, var(--gold), #C78F24);
    padding: 11px 20px;
    border-radius: 100px;
    box-shadow: 0 10px 22px -8px rgba(216, 168, 62, .55);
    transition: box-shadow .2s ease, transform .2s ease;
}

.flights-page .header-cta:hover {
    box-shadow: 0 12px 26px -6px rgba(216, 168, 62, .65);
    transform: translateY(-1px);
}

.flights-page .header-cta svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}

.flights-page .menu-toggle {
    display: none;
    background: var(--sky);
    border: none;
    color: var(--navy);
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s ease;
}

.flights-page .menu-toggle:hover {
    background: var(--gold-soft);
}

.flights-page .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 2px;
    background: #fff;
    margin: 10px clamp(16px, 4vw, 40px) 0;
    border-radius: 20px;
    padding: 14px 18px 18px;
    box-shadow: 0 16px 36px -16px rgba(6, 42, 77, .28);
}

.flights-page .mobile-nav a {
    color: var(--navy);
    padding: 12px 6px;
    border-bottom: 1px solid var(--sky);
    font-weight: 600;
    font-size: 14.5px;
}

.flights-page .mobile-nav.open {
    display: flex;
}

@media (max-width: 980px) {

    .flights-page nav ul,
    .flights-page .header-phone {
        display: none;
    }

    .flights-page .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .flights-page header {
        padding: 0 12px;
    }

    .flights-page .nav-wrap {
        padding: 8px 8px 8px 18px;
    }
}

/* Hero */
.flights-page .hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* FIX: the page image + gradient overlay were split across two conflicting
   `.hero` rules (one scoped with only a CSS gradient, one unscoped with the
   real background-image) — the scoped one always won on specificity, so the
   photo never rendered. The markup already has a dedicated .hero-media
   wrapper with an <img> in it (better for eager/fetchpriority loading than
   a CSS background), so this styles THAT as the full-bleed photo layer and
   puts the gradient on top of it as an overlay. */
.flights-page .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.flights-page .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.flights-page .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 20, 38, .55) 0%, rgba(4, 22, 42, .68) 45%, rgba(3, 15, 29, .92) 100%),
        radial-gradient(circle at 15% 20%, rgba(216, 168, 62, .20), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(60, 164, 220, .18), transparent 30%);
}

.flights-page .hero::before {
    content: "";
    position: absolute;
    inset: auto -10% -45% 25%;
    height: 500px;
    z-index: 1;
    background: radial-gradient(circle, rgba(255, 255, 255, .09), transparent 62%);
    pointer-events: none;
}

.flights-page .hero-inner {
    position: relative;
    z-index: 2;
    min-height: 570px;
    padding: 86px 0 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
    align-items: center;
    gap: 65px;
}

.flights-page .hero-copy {
    max-width: 730px;
}

.flights-page .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
}

.flights-page .eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 20px;
    background: currentColor;
}

.flights-page .hero h1 {
    margin: 0;
    max-width: 760px;
    font-family: "Airline Kufi", sans-serif;
    font-size: clamp(32px, 4.3vw, 58px);
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -.03em;
}

.flights-page .hero .lead {
    max-width: 690px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .80);
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 2;
}

.flights-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.flights-page .btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 20px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
}

.flights-page .btn:hover {
    transform: translateY(-2px);
}

.flights-page .btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #D8A83E, #C78F24);
    box-shadow: 0 12px 28px rgba(216, 168, 62, .22);
}

.flights-page .btn-primary:hover {
    box-shadow: 0 16px 34px rgba(216, 168, 62, .32);
}

.flights-page .btn-light {
    color: var(--navy);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.flights-page .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .30);
    background: rgba(255, 255, 255, .06);
}

.flights-page .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 25px;
    margin-top: 32px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.flights-page .hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.flights-page .hero-trust i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(216, 168, 62, .10);
}

.flights-page .hero-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .20);
    backdrop-filter: blur(14px);
}

.flights-page .hero-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 19px;
    margin-bottom: 19px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.flights-page .hero-card-title {
    font-family: "Airline Kufi", sans-serif;
    font-size: 17px;
    font-weight: 600;
}

.flights-page .hero-card-badge {
    padding: 5px 9px;
    color: #FFE9AC;
    background: rgba(216, 168, 62, .13);
    border: 1px solid rgba(216, 168, 62, .28);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
}

.flights-page .route-box {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .07);
}

.flights-page .route-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
}

.flights-page .airport strong {
    display: block;
    font-family: "Airline Kufi", sans-serif;
    font-size: 22px;
}

.flights-page .airport span {
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
}

.flights-page .airport:last-child {
    text-align: left;
}

.flights-page .plane-line {
    width: 85px;
    height: 1px;
    position: relative;
    background: rgba(255, 255, 255, .30);
}

.flights-page .plane-line::after {
    content: "✈";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -56%);
    padding: 0 8px;
    color: #FFE09A;
    background: rgba(18, 67, 98, .95);
    font-size: 16px;
}

.flights-page .hero-card-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
}

.flights-page .hero-card-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
}

.flights-page .hero-card-list span {
    color: rgba(255, 255, 255, .64);
}

.flights-page .hero-card-list b {
    font-weight: 500;
}

/* General sections */
.flights-page .section {
    padding: 82px 0;
}

.flights-page .section-alt {
    background: #fff;
    border-block: 1px solid var(--line);
}

.flights-page .section-head {
    max-width: 720px;
    margin-bottom: 34px;
}

.flights-page .section-head .eyebrow {
    color: var(--blue);
}

.flights-page .section-head h2 {
    margin: 0;
    color: var(--navy);
    font-family: "Airline Kufi", sans-serif;
    font-size: clamp(24px, 3vw, 35px);
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: -.02em;
}

.flights-page .section-head p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 16px;
}

/* Value strip */
.flights-page .value-strip {
    margin-top: -1px;
    position: relative;
    z-index: 3;
}

.flights-page .value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--line);
    box-shadow: var(--shadow-lg);
}

.flights-page .value-item {
    min-height: 130px;
    padding: 24px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.flights-page .value-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: var(--sky);
    border-radius: 14px;
    font-size: 20px;
}

.flights-page .value-item strong {
    display: block;
    color: var(--navy);
    font-family: "Airline Kufi", sans-serif;
    font-size: 14px;
}

.flights-page .value-item span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

/* Service card */
.flights-page .service-card {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 38px;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.flights-page .service-intro h3 {
    margin: 0;
    color: var(--navy);
    font-family: "Airline Kufi", sans-serif;
    font-size: 22px;
    line-height: 1.6;
}

.flights-page .service-intro p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.flights-page .service-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.flights-page .service-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--surface-2);
    color: #35546C;
    font-size: 13px;
}

.flights-page .check {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--success);
    font-size: 12px;
    line-height: 1;
}

/* Flight types */
.flights-page .flight-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.flights-page .flight-type-card {
    position: relative;
    min-height: 225px;
    padding: 25px 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.flights-page .flight-type-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--gold);
}

.flights-page .flight-type-number {
    color: #B8C7D2;
    font-family: "Airline Kufi", sans-serif;
    font-size: 13px;
}

.flights-page .flight-type-card h3 {
    margin: 15px 0 8px;
    color: var(--navy);
    font-family: "Airline Kufi", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.flights-page .flight-type-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}

/* Benefits */
.flights-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.flights-page .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.flights-page .benefit-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--blue);
    background: var(--sky);
    font-size: 18px;
}

.flights-page .benefit-item h3 {
    margin: 0;
    color: var(--navy);
    font-family: "Airline Kufi", sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

.flights-page .benefit-item p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}

.flights-page .text-link {
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(23, 105, 170, .25);
    text-underline-offset: 4px;
}

/* Steps */
.flights-page .steps-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.flights-page .step {
    position: relative;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.flights-page .step-num {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 13px;
    color: #fff;
    background: var(--navy);
    font-family: "Airline Kufi", sans-serif;
    font-size: 14px;
}

.flights-page .step h3 {
    margin: 0;
    color: var(--navy);
    font-family: "Airline Kufi", sans-serif;
    font-size: 15px;
}

.flights-page .step p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}

.flights-page .notice {
    margin-top: 22px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #E8D39E;
    border-radius: 16px;
    background: #FFFBF0;
}

.flights-page .notice strong {
    display: block;
    color: var(--navy);
    font-family: "Airline Kufi", sans-serif;
    font-size: 14px;
}

.flights-page .notice p {
    margin: 4px 0 0;
    color: #6B5A35;
    font-size: 12px;
}

.flights-page .notice .btn-primary {
    min-width: 150px;
}

/* FAQ */
.flights-page .faq-list {
    max-width: 900px;
    display: grid;
    gap: 10px;
}

.flights-page .faq-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.flights-page .faq-item summary {
    position: relative;
    padding: 18px 48px 18px 20px;
    color: var(--navy);
    font-family: "Airline Kufi", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.flights-page .faq-item summary::-webkit-details-marker {
    display: none;
}

.flights-page .faq-item summary::before {
    content: "+";
    position: absolute;
    inset-inline-end: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue);
    font-size: 20px;
    font-weight: 400;
}

.flights-page .faq-item[open] summary::before {
    content: "−";
}

.flights-page .faq-item p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.95;
}

/* CTA */
.flights-page .contact-cta {
    position: relative;
    overflow: hidden;
    padding: 48px;
    color: #fff;
    border-radius: 26px;
    background:
        radial-gradient(circle at 85% 10%, rgba(216, 168, 62, .20), transparent 25%),
        linear-gradient(135deg, #082B49, #0D476E);
    box-shadow: var(--shadow-lg);
}

.flights-page .contact-cta .section-head {
    margin-bottom: 12px;
}

.flights-page .contact-cta .section-head .eyebrow {
    color: var(--gold);
}

.flights-page .contact-cta .section-head h2 {
    color: #fff;
}

.flights-page .contact-cta>p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 15px;
}

.flights-page .contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.flights-page .cross-links {
    margin: 24px 0 0 !important;
    color: rgba(255, 255, 255, .62) !important;
    font-size: 12px !important;
}

.flights-page .cross-links a {
    color: #FFE19A;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Footer */
.flights-page footer {
    margin-top: 0;
    color: rgba(255, 255, 255, .68);
    background: #061F36;
}

.flights-page .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 50px;
    padding: 60px 0 45px;
}

.flights-page .footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #fff;
}

.flights-page .footer-brand img {
    width: 42px;
    height: 56px;
    object-fit: contain;
}

.flights-page .footer-brand b {
    font-family: "Airline Kufi", sans-serif;
    font-size: 15px;
}

.flights-page .footer .desc {
    max-width: 420px;
    margin: 15px 0 0;
    font-size: 12px;
    line-height: 2;
}

.flights-page footer h4 {
    margin: 0 0 14px;
    color: #fff;
    font-family: "Airline Kufi", sans-serif;
    font-size: 14px;
}

.flights-page footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 7px;
    font-size: 12px;
}

.flights-page footer li a:hover {
    color: #fff;
}

.flights-page .footer-bottom {
    padding: 20px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    text-align: center;
    font-size: 11px;
    line-height: 2;
}

.flights-page .legal-line {
    color: rgba(255, 255, 255, .46);
}

/* Floating buttons (WhatsApp / Call)
   FIX: this used to be defined three separate times (two standalone
   .wa-float blocks plus a third inside .floating-buttons, with slightly
   different rules each time) and referenced `animation: pulse` even though
   `@keyframes pulse` didn't exist anywhere in the file. Consolidated into
   one definition with the keyframes actually added. */
.flights-page .floating-buttons {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 9999;
    display: flex;
    gap: 12px;
}

.flights-page .call-float,
.flights-page .wa-float {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2.4s infinite;
}

.flights-page .call-float {
    background: #0d6efd;
    box-shadow: 0 12px 28px -6px rgba(13, 110, 253, .5);
}

.flights-page .wa-float {
    background: #25D366;
    box-shadow: 0 12px 28px -6px rgba(37, 211, 102, .6);
}

.flights-page .call-float svg,
.flights-page .wa-float svg {
    width: 27px;
    height: 27px;
    fill: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .35);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 980px) {
    .flights-page .hero-inner {
        grid-template-columns: 1fr;
        gap: 35px;
        min-height: auto;
    }

    .flights-page .hero-card {
        max-width: 620px;
    }

    .flights-page .flight-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flights-page .service-card {
        grid-template-columns: 1fr;
    }

    .flights-page .steps-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .flights-page .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .flights-page .brand img {
        height: 32px;
    }

    .flights-page .hero-inner {
        padding: 58px 0 48px;
    }

    .flights-page .hero h1 {
        font-size: 31px;
    }

    .flights-page .hero .lead {
        font-size: 15px;
    }

    .flights-page .hero-card {
        padding: 20px;
    }

    .flights-page .section {
        padding: 60px 0;
    }

    .flights-page .value-grid {
        grid-template-columns: 1fr;
    }

    .flights-page .value-item {
        min-height: 100px;
    }

    .flights-page .service-card {
        padding: 23px;
    }

    .flights-page .service-points {
        grid-template-columns: 1fr;
    }

    .flights-page .flight-types-grid,
    .flights-page .benefits-grid {
        grid-template-columns: 1fr;
    }

    .flights-page .notice {
        align-items: stretch;
        flex-direction: column;
    }

    .flights-page .contact-cta {
        padding: 30px 22px;
    }

    .flights-page .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 45px 0 35px;
    }
}

@media (max-width: 480px) {

    .flights-page .hero-actions,
    .flights-page .contact-methods {
        display: grid;
    }

    .flights-page .hero-actions .btn,
    .flights-page .contact-methods .btn {
        width: 100%;
    }

    .flights-page .route-line {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .flights-page .airport:last-child {
        text-align: center;
    }

    .flights-page .plane-line {
        width: 100%;
        margin: 4px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .flights-page {
        scroll-behavior: auto;
    }

    .flights-page,
    .flights-page *,
    .flights-page *::before,
    .flights-page *::after {
        transition: none !important;
        animation: none !important;
    }
}

/* Final collision guards */
.flights-page .container {
    padding-inline: 0;
}

.flights-page button,
.flights-page input,
.flights-page select,
.flights-page textarea {
    font: inherit;
}

.flights-page ul,
.flights-page ol {
    margin: 0;
    padding: 0;
}