/* ══════════════════════════════════════════════════════════════
   TRIPNEXT — AIRLINES PAGE STYLESHEET
   Standalone CSS for /airlines.html
   Design system matches site tokens: --purple #5170ff / --orange #fd8f50
══════════════════════════════════════════════════════════════ */

:root {
    --purple: #5170ff;
    --purple-d: #3a5ae0;
    --orange: #fd8f50;
    --orange-d: #e07a3a;
    --dark: #1e293b;
    --mid: #33485d;
    --muted: #5a6a7e;
    --light: #f5f8ff;
    --border: #eef2f8;
    --white: #ffffff;
    --navy: #15233d;
    --navy-d: #1e3a5f;
    --gold: #f59e0b;
    --green: #27ae60;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, sans-serif;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.purple {
    color: var(--purple) !important;
}

.orange {
    color: var(--orange) !important;
}

.secondary {
    color: var(--orange) !important;
}

.al-section {
    padding: 80px 0;
}

.al-section--light {
    background: var(--light);
}

.al-section--white {
    background: var(--white);
}

.al-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

.al-header {
    text-align: center;
    margin-bottom: 50px;
}

.al-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple);
    background: rgba(81, 112, 255, .08);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.al-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.22;
    margin-bottom: 12px;
}

.al-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0 auto;
}

@media(max-width:600px) {
    .al-title {
        font-size: 23px !important;
    }
}

/* ── HERO — matches index.html / flights.html exactly ── */
.hero {
    position: relative;
    height: 100svh;
    height: 100vh;
    overflow: hidden;
    background: var(--navy);
}

.video-container {
    position: absolute;
    inset: 0;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .45) 60%, rgba(21, 35, 61, .85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px 80px;
    gap: 0;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--orange);
    opacity: .6;
}

.hero-content h1 {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.hero-content h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 10px;
    line-height: 1.6;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--purple), var(--purple-d));
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(81, 112, 255, .4);
    transition: transform .2s, box-shadow .2s;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(81, 112, 255, .5);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .35);
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(8px);
    transition: background .2s, transform .2s;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, .22);
    transform: translateY(-3px);
}

.google-tag {
    background: var(--orange);
    padding: 6px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.google-tag p {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: .4
    }

    50% {
        opacity: 1
    }
}

@media(max-width:600px) {
    .hero-content {
        padding: 0 16px 60px;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
    }
}

/* ── TRUST BAR ── */
.al-trust-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(81, 112, 255, .06);
}

.al-tb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.al-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 34px 22px;
    border-right: 1px solid var(--border);
    transition: background .2s;
}

.al-trust-item:last-child {
    border-right: none;
}

.al-trust-item:hover {
    background: var(--light);
}

.al-trust-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.al-trust-icon i {
    font-size: 21px;
}

.al-trust-icon.g {
    background: rgba(66, 133, 244, .1);
}

.al-trust-icon.g i {
    color: #4285f4;
}

.al-trust-icon.s {
    background: rgba(81, 112, 255, .1);
}

.al-trust-icon.s i {
    color: var(--purple);
}

.al-trust-icon.p {
    background: rgba(39, 174, 96, .1);
}

.al-trust-icon.p i {
    color: var(--green);
}

.al-trust-icon.a {
    background: rgba(253, 143, 80, .1);
}

.al-trust-icon.a i {
    color: var(--orange);
}

.al-tb-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.al-tb-sub {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 2px;
}

@media(max-width:900px) {
    .al-tb-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .al-trust-item:nth-child(2) {
        border-right: none;
    }

    .al-trust-item:nth-child(3) {
        border-top: 1px solid var(--border);
        border-right: 1px solid var(--border);
    }

    .al-trust-item:nth-child(4) {
        border-top: 1px solid var(--border);
        border-right: none;
    }
}

@media(max-width:480px) {
    .al-tb-inner {
        grid-template-columns: 1fr;
    }

    .al-trust-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
        padding: 20px;
    }

    .al-trust-item:last-child {
        border-bottom: none;
    }
}

/* ── FEATURED AIRLINE GUIDES (4 dedicated pages) ── */
.al-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.al-featured-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(30, 41, 59, .06);
    transition: transform .28s, box-shadow .28s;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.al-featured-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 44px rgba(81, 112, 255, .15);
}

.al-featured-logo-wrap {
    padding: 34px 20px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--light) 0%, #eef2fb 100%);
    position: relative;
}

.al-featured-logo-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
}

.al-featured-logo-wrap img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.al-featured-body {
    padding: 20px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.al-featured-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
}

.al-featured-tag {
    display: inline-block;
    align-self: center;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 20px;
    background: rgba(39, 174, 96, .1);
    color: var(--green);
    margin-bottom: 2px;
}

.al-featured-desc {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
}

.al-featured-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12.5px;
    color: var(--gold);
    font-weight: 700;
    margin-top: 4px;
}

.al-featured-rating span {
    color: var(--muted);
}

.al-featured-btn {
    display: block;
    margin-top: 14px;
    background: linear-gradient(135deg, var(--purple), var(--purple-d));
    color: #fff;
    text-align: center;
    padding: 11px 0;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 700;
    transition: opacity .2s;
}

.al-featured-btn:hover {
    opacity: .88;
}

@media(max-width:960px) {
    .al-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:480px) {
    .al-featured-grid {
        grid-template-columns: 1fr;
    }
}

/* ── ROUTES × AIRLINES ── */
.al-routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.al-route-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--purple);
    border-radius: 16px;
    padding: 26px 20px;
    transition: all .25s;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.al-route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(81, 112, 255, .12);
}

.al-route-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: rgba(81, 112, 255, .09);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.al-route-icon i {
    font-size: 20px;
    color: var(--purple);
}

.al-route-card h4 {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.35;
}

.al-route-card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 12px;
}

.al-route-pick {
    font-size: 11px;
    font-weight: 700;
    color: var(--purple);
    background: rgba(81, 112, 255, .08);
    padding: 5px 10px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 10px;
}

.al-route-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

@media(max-width:1100px) {
    .al-routes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:640px) {
    .al-routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:420px) {
    .al-routes-grid {
        grid-template-columns: 1fr;
    }
}

/* ── FULL AIRLINE SHOWCASE (reference grid) ── */
.al-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.al-airline-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: all .25s;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.al-airline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--orange));
}

.al-airline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(81, 112, 255, .12);
    border-color: rgba(81, 112, 255, .2);
}

.al-airline-logo {
    height: 36px;
    object-fit: contain;
}

.al-airline-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.al-airline-routes {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5;
}

.al-airline-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
}

.al-airline-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(39, 174, 96, .1);
    color: var(--green);
}

@media(max-width:900px) {
    .al-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:480px) {
    .al-showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* ── COMPARISON TABLE ── */
.al-table-wrap {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 18px rgba(30, 41, 59, .06);
}

.al-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    background: #fff;
}

.al-compare-table th,
.al-compare-table td {
    padding: 16px 18px;
    text-align: left;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
}

.al-compare-table thead th {
    background: linear-gradient(135deg, var(--navy), var(--navy-d));
    color: #fff;
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.al-compare-table thead th:first-child {
    border-top-left-radius: 18px;
}

.al-compare-table thead th:last-child {
    border-top-right-radius: 18px;
}

.al-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.al-compare-table tbody tr:hover {
    background: var(--light);
}

.al-compare-airline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--dark);
}

.al-compare-airline img {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.al-compare-rating {
    color: var(--gold);
    font-weight: 700;
}

.al-compare-baggage {
    font-weight: 700;
    color: var(--purple);
}

/* ── WHY BOOK AIRLINES WITH US ── */
.al-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.al-why-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: all .25s;
}

.al-why-card:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 12px 30px rgba(81, 112, 255, .1);
}

.al-why-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.al-why-icon i {
    font-size: 23px;
}

.al-wc1 {
    background: rgba(81, 112, 255, .1);
}

.al-wc1 i {
    color: var(--purple);
}

.al-wc2 {
    background: rgba(253, 143, 80, .1);
}

.al-wc2 i {
    color: var(--orange);
}

.al-wc3 {
    background: rgba(39, 174, 96, .1);
}

.al-wc3 i {
    color: var(--green);
}

.al-why-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.al-why-card p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.65;
}

@media(max-width:900px) {
    .al-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:540px) {
    .al-why-grid {
        grid-template-columns: 1fr;
    }
}

/* ── FAQ / PAA ACCORDION ── */
.al-faq-wrap {
    max-width: 1080px;
    margin: 0 auto;
}

.al-faq-intro-box {
    background: linear-gradient(135deg, rgba(81, 112, 255, .06), rgba(253, 143, 80, .06));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.al-faq-intro-box strong {
    color: var(--dark);
}

.al-faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.al-faq-item:hover {
    box-shadow: 0 6px 20px rgba(81, 112, 255, .08);
}

.al-faq-q {
    width: 100%;
    padding: 16px 20px;
    background: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    transition: background .2s;
}

.al-faq-q:hover {
    background: var(--light);
}

.al-faq-q i {
    font-size: 18px;
    color: var(--purple);
    transition: transform .3s;
    flex-shrink: 0;
}

.al-faq-q.open {
    background: var(--light);
}

.al-faq-q.open i {
    transform: rotate(180deg);
}

.al-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.al-faq-a-inner {
    padding: 4px 20px 18px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    border-top: 1px solid var(--border);
}

.al-faq-a-inner strong {
    color: var(--dark);
}

/* ── INTERNAL LINKS ── */
.al-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.al-link-pill {
    display: block;
    text-align: center;
    padding: 13px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: var(--purple);
    transition: all .22s;
}

.al-link-pill:hover {
    background: var(--purple-d);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(81, 112, 255, .28);
}

@media(max-width:900px) {
    .al-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px) {
    .al-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ── CTA ── */
.al-cta-section {
    padding: 90px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    margin: 24px;
    border-radius: 30px;
}

.al-cta-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(81, 112, 255, .18) 0%, transparent 65%);
    pointer-events: none;
}

.al-cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 143, 80, .12) 0%, transparent 65%);
    pointer-events: none;
}

.al-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.al-cta-inner h2 {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.al-cta-inner h2 .purple {
    color: #8eaaff !important;
}

.al-cta-inner p {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.65;
    margin-bottom: 36px;
}

.al-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.al-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--purple), var(--purple-d));
    color: #fff;
    padding: 15px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s;
}

.al-btn-call:hover {
    transform: translateY(-3px);
}

.al-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #25d366;
    color: #fff;
    padding: 15px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s;
}

.al-btn-wa:hover {
    transform: translateY(-3px);
}

.al-btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(8px);
    transition: all .2s;
}

.al-btn-quote:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-3px);
}

@media(max-width:600px) {
    .al-cta-section {
        margin: 12px;
    }

    .al-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .al-btn-call,
    .al-btn-wa,
    .al-btn-quote {
        justify-content: center;
    }
}

/* ── UTILITY ── */
.al-text-center {
    text-align: center;
}

.al-mt-16 {
    margin-top: 16px;
}

.al-section-note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 16px;
}