/* ==========================================================================
   CUSTOM STYLESHEET — LOREM IPSUM AIRPORT
   Theme:       Zakra Child Theme
   Description: Consolidated, optimized styles covering the homepage,
                inner pages, blog, and all shared components.
                No inline or internal styles — single source of truth.
   Grid:        Bootstrap 3 (col-md-*, col-sm-*, col-xs-*)
   Fonts:       Montserrat via Google Fonts
   Sections:
     0.  CSS Variables & Root
     1.  Base Reset & Global Typography
     2.  Utility Classes
     3.  Layout & Sections
     4.  Banner / Hero Section
     5.  Service Cards
     6.  About Section (Glass Card)
     7.  History Section
     8.  TSA / Wait Time Section
     9.  Insights / Feature Cards
    10.  Airline Cards
    11.  FAQ Accordion
    12.  CTA Banner
    13.  Blog Cards
    14.  Buttons
    15.  Modals
    16.  Footer
    17.  Inner / Child Pages
    18.  Sidebar Widgets
    19.  Responsive Overrides
   ========================================================================== */


/* ==========================================================================
   0. CSS VARIABLES & ROOT
   ========================================================================== */
:root {
    /* ==========================================================================
       TWO-COLOUR SYSTEM: Primary #1E40AF (Deep Blue) + Secondary #FBBF24 (Amber)
       ALL colours on this site derive from these two only. No red, no green,
       no purple. Status colours use tints of the two brand colours.
       ========================================================================== */

    /* ── PRIMARY: Deep Blue ─────────────────────────────────────────────── */
    --brand:            #1E40AF;   /* Main – CTAs, headers, active states    */
    --brand-light:      #3B82F6;   /* Hover / lighter interactions           */
    --brand-dark:       #1E3A8A;   /* Pressed / deep backgrounds             */
    --brand-subtle:     #EFF6FF;   /* Very light tint – section backgrounds  */
    --brand-muted:      #BFDBFE;   /* Muted tint – borders, chips            */

    /* ── SECONDARY: Amber / Gold ────────────────────────────────────────── */
    --accent:           #FBBF24;   /* Highlights, badges, eyebrows, accents  */
    --accent-light:     #FDE68A;   /* Light tint – tag backgrounds           */
    --accent-dark:      #D97706;   /* Hover / pressed amber                  */
    --accent-subtle:    #FFFBEB;   /* Very light – section backgrounds       */
    --accent-muted:     #FEF3C7;   /* Muted – borders, chips                 */

    /* ── ALIASES (component compat — all map to brand or accent) ─────── */
    --atl-navy:         #1E40AF;   /* = --brand                              */
    --atl-navy-dark:    #1E3A8A;   /* = --brand-dark                         */
    --atl-amber:        #FBBF24;   /* = --accent                             */
    --atl-red:          #FBBF24;   /* ← was red → now ACCENT (amber)         */
    --atl-red-dark:     #D97706;   /* ← was red-dark → now ACCENT-DARK       */
    --atl-green:        #3B82F6;   /* ← was green → now BRAND-LIGHT (blue)   */
    --atl-green-light:  #EFF6FF;   /* ← was green-light → BRAND-SUBTLE       */

    /* ── STATUS BADGES (brand-only palette) ────────────────────────────── */
    --status-open-bg:   #EFF6FF;   /* Blue tint  – open / active             */
    --status-open-text: #1E3A8A;   /* Dark blue text                         */
    --status-closed-bg: #FEF3C7;   /* Amber tint – closed / attention        */
    --status-closed-text: #D97706; /* Dark amber text                        */
    --status-limited-bg:  #FFFBEB; /* Light amber – limited                  */
    --status-limited-text: #92400E;/* Deep amber text                        */

    /* ── NEUTRALS ──────────────────────────────────────────────────────── */
    --atl-dark:         #111827;
    --atl-light:        #F8FAFC;
    --atl-border:       #E2E8F0;
    --atl-white:        #ffffff;
    --white:            #ffffff;
    --atl-text:         #1E293B;
    --atl-text-mid:     #475569;
    --atl-muted:        #94A3B8;
    --text-dark:        #1E293B;
    --text-muted:       #475569;
    --border:           #E2E8F0;
    --bg-soft:          #F0F4FF;

    /* ── TYPOGRAPHY ─────────────────────────────────────────────────────── */
    --font-main:        'Montserrat', sans-serif;
    --font-display:     'Montserrat', sans-serif;
    --font-primary:     'Montserrat', sans-serif;
    --font-secondary:   'Montserrat', sans-serif;

    /* ── TYPE SCALE ──────────────────────────────────────────────────────── */
    --fs-h1:     38px;
    --fs-h2:     28px;
    --fs-h3:     22px;
    --fs-h4:     19px;
    --fs-h5:     16px;
    --fs-body:   15px;
    --fs-small:  13px;
    --fs-xs:     11px;

    /* ── WEIGHT SCALE ────────────────────────────────────────────────────── */
    --fw-bold:   700;
    --fw-semi:   600;
    --fw-normal: 400;

    /* ── LINE HEIGHTS ────────────────────────────────────────────────────── */
    --lh-heading: 1.25;
    --lh-body:    1.7;

    /* ── SPACING & RADIUS ────────────────────────────────────────────────── */
    --radius:          12px;
    --atl-radius:       6px;
    --atl-radius-lg:   10px;
    --atl-section-py:  72px;

    /* ── SHADOWS ─────────────────────────────────────────────────────────── */
    --shadow-sm:        0 2px 8px rgba(30, 64, 175, 0.10);
    --shadow-md:        0 8px 32px rgba(30, 64, 175, 0.18);
    --shadow-lg:        0 16px 48px rgba(30, 64, 175, 0.22);
    --atl-shadow-sm:    0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --atl-shadow-md:    0 4px 16px rgba(0, 0, 0, 0.10);
    --atl-shadow-lg:    0 10px 40px rgba(0, 0, 0, 0.14);
    --atl-shadow-xl:    0 20px 60px rgba(0, 0, 0, 0.20);

    /* ── TRANSITIONS ─────────────────────────────────────────────────────── */
    --atl-transition:   all 0.22s ease;
}

@media (max-width: 991px) {
    :root {
        --fs-h1: 32px;
        --fs-h2: 24px;
        --fs-h3: 20px;
    }
}

@media (max-width: 767px) {
    :root {
        --fs-h1: 26px;
        --fs-h2: 21px;
        --fs-h3: 18px;
        --fs-h4: 17px;
        --fs-h5: 15px;
    }
}


/* ==========================================================================
   1. BASE RESET & GLOBAL TYPOGRAPHY
   ========================================================================== */

/* Global box-sizing & image reset */
img {
    max-width: 100%;
    height: auto;
}

/* Focus styles */
a:focus {
    outline: none !important;
    outline-offset: unset !important;
}

/* Thin scrollbar */
::-webkit-scrollbar               { width: 8px; height: 2px; }
::-webkit-scrollbar-track         { background: var(--atl-light); border-radius: 10px; }
::-webkit-scrollbar-thumb         { background: #888; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover   { background: #555; }
.table-responsive                 { scrollbar-color: var(--accent) #f1f1f18a; }

/* Heading system */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary), sans-serif !important;
}

h1 { font-size: var(--fs-h1) !important; font-weight: var(--fw-bold);   line-height: var(--lh-heading); margin-bottom: 16px; }
h2 { font-size: var(--fs-h2) !important; font-weight: var(--fw-bold);   line-height: var(--lh-heading); margin-bottom: 12px; }
h3 { font-size: var(--fs-h3) !important; font-weight: var(--fw-semi);   line-height: var(--lh-heading); margin-bottom: 10px; }
h4 { font-size: var(--fs-h4) !important; font-weight: var(--fw-semi);   line-height: var(--lh-heading); margin-bottom: 8px; }
h5 { font-size: var(--fs-h5) !important; font-weight: var(--fw-semi);   line-height: var(--lh-heading); margin-bottom: 6px; }
h6 { font-size: var(--fs-small) !important; font-weight: var(--fw-semi); line-height: var(--lh-heading); margin-bottom: 4px; }

h5.card-title {
    font-size: var(--fs-h5) !important;
    font-weight: var(--fw-semi);
}

/* Body and paragraphs */
body {
    font-family: var(--font-secondary), sans-serif !important;
}

p {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--atl-text-mid);
    margin-bottom: 12px;
}

/* Tables */
tbody, td, tfoot, th, thead, tr {
    border-color: var(--atl-navy);
    border: 1px solid;
}


/* ==========================================================================
   2. UTILITY CLASSES
   ========================================================================== */

/* -- Theme Colour Helpers -- */
.theme-bg            { background-color: var(--brand) !important; }
.theme-bg:hover      { background-color: var(--brand-light) !important; }
.theme-color         { color: var(--brand) !important; }
.badge-theme-bg      { background-color: var(--brand); }
.badge-bg            { background-color: var(--accent); color: black; font-weight: 700; }
.green-bg            { background-color: var(--brand); }
.red-bg              { background-color: var(--accent); }
.text-primary        { color: var(--brand-light) !important; }
.text-brand-success  { color: var(--brand) !important; }
.bg-info             { background-color: var(--brand-light) !important; }
.txt-white           { color: #fff !important; }
span.mia-minutes     { color: #fff !important; }

/* -- Display & Flex Utilities -- */
.d-flex                  { display: flex !important; }
.d-block                 { display: block !important; }
.flex-column             { flex-direction: column !important; }
.flex-wrap               { flex-wrap: wrap !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center  { justify-content: center !important; }
.align-items-center      { align-items: center !important; }
.align-items-start       { align-items: flex-start !important; }
.align-self-center       { align-self: center !important; }

@media (min-width: 768px) {
    .d-md-flex  { display: flex !important; }
    .d-md-block { display: block !important; }
}

/* -- Spacing Utilities -- */
.mb-0  { margin-bottom: 0 !important; }
.mb-2  { margin-bottom: 10px !important; }
.mb-3  { margin-bottom: 15px !important; }
.mb-4  { margin-bottom: 20px !important; }
.mb-5  { margin-bottom: 30px !important; }
.mt-2  { margin-top: 10px !important; }
.mt-3  { margin-top: 15px !important; }
.mt-4  { margin-top: 20px !important; }
.mt-5  { margin-top: 30px !important; }
.ml-3  { margin-left: 15px !important; }
.ml-auto { margin-left: auto !important; }
.mx-2  { margin-left: 10px !important; margin-right: 10px !important; }
.my-2  { margin-top: 10px !important; margin-bottom: 10px !important; }
.my-3  { margin-top: 15px !important; margin-bottom: 15px !important; }
.my-4  { margin-top: 20px !important; margin-bottom: 20px !important; }
.my-5  { margin-top: 30px !important; margin-bottom: 30px !important; }
.p-0   { padding: 0 !important; }
.p-1   { padding: 5px !important; }
.p-2   { padding: 10px !important; }
.p-3   { padding: 15px !important; }
.p-4   { padding: 20px !important; }
.p-5   { padding: 30px !important; }
.py-5  { padding-top: 30px !important; padding-bottom: 30px !important; }
.px-3  { padding-left: 15px !important; padding-right: 15px !important; }

@media (min-width: 768px) {
    .p-sm-3  { padding: 15px !important; }
    .p-sm-5  { padding: 30px !important; }
    .p-md-5  { padding: 30px !important; }
}

/* -- Sizing Utilities -- */
.h-100      { height: 100% !important; }
.w-100      { width: 100% !important; }
.min-vh-100 { min-height: 100vh !important; }

@media (min-width: 992px) {
    .h-md-100  { height: 100% !important; }
    .w-lg-25   { width: 45% !important; }
}

@media (max-width: 767px) {
    .w-lg-25   { width: 100% !important; }
}

/* -- Position Utilities -- */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }

/* -- Border & Radius Utilities -- */
.border-0     { border: none !important; }
.rounded      { border-radius: 4px !important; }
.rounded-0    { border-radius: 0 !important; }
.rounded-2    { border-radius: 6px !important; }
.rounded-3    { border-radius: 8px !important; }
.rounded-pill { border-radius: 50rem !important; }

/* -- Misc Utilities -- */
.text-decoration-none  { text-decoration: none !important; }
.object-fit-cover      { object-fit: cover !important; }
.text-center           { text-align: center; }
.atl-text-center       { text-align: center; }
.atl-mt-24             { margin-top: 24px; }
.atl-mt-32             { margin-top: 32px; }
.atl-mb-0              { margin-bottom: 0; }
.arrow                 { display: inline-block; transition: transform 0.2s ease; }
a:hover .arrow         { transform: translateX(4px); }
.mob-button            { display: inline-block; }

/* -- Search Input Height -- */
.search-input-height,
.search-input-height .form-control,
.search-input-height .btn {
    height: 48px;
    border-radius: 0;
}


/* ==========================================================================
   3. LAYOUT & SECTION SYSTEM
   ========================================================================== */

/* Uniform section spacing */
.section-wrap {
    padding: 60px 40px;
}

.section-wrap--fullbleed {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Centred inner container */
.section-inner {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* Alternate background for zebra sections */
.section-alt-bg {
    background: var(--bg-soft);
}

/* Section heading block */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    margin-bottom: 10px;
    color: var(--atl-navy);
}

.section-title p {
    color: var(--text-muted);
    font-size: var(--fs-body);
    margin-bottom: 0;
}

/* ATL section system */
.atl-section        { padding: var(--atl-section-py) 0; }
.atl-section-light  { background: var(--atl-light); }
.atl-section-dark   { background: var(--atl-dark); }
.atl-section-navy   { background: var(--atl-navy); }

.atl-section-header            { margin-bottom: 48px; }
.atl-section-header--center    { text-align: center; }

.atl-section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--atl-red);
    margin-bottom: 10px;
}

.atl-section-title {
    font-family: var(--font-primary), sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--atl-navy);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 14px;
    line-height: 1.15;
}

.atl-section-subtitle {
    font-size: 16px;
    color: var(--atl-text-mid);
    margin: 0;
    line-height: 1.7;
    max-width: 580px;
}

.atl-section-header--center .atl-section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Accent rule */
.atl-rule {
    width: 40px;
    height: 3px;
    background: var(--atl-red);
    margin: 0 0 18px;
    border: none;
    display: block;
}

.atl-rule--center {
    margin-left: auto;
    margin-right: auto;
}

/* Animated geometric texture background */
.geometric-texture {
    animation: textureMove 25s ease-in-out infinite;
    background: linear-gradient(135deg, var(--bg-soft) 25%, var(--brand-subtle) 50%, var(--bg-soft) 75%);
    background-size: 200% 200%;
}

@keyframes textureMove {
    0%, 100% { background-position: 0 0; }
    25%       { background-position: 50px 25px; }
    50%       { background-position: 100px 50px; }
    75%       { background-position: 150px 25px; }
}


/* ==========================================================================
   4. BANNER / HERO SECTION  (Redesigned)
   ========================================================================== */

/* ── Section shell ───────────────────────────────────────────── */
.banner-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            rgba(17, 24, 39, 0.97) 0%,
            rgba(30, 58, 138, 0.92) 45%,
            rgba(30, 64, 175, 0.75) 100%
        ),
        url('/wp-content/uploads/2026/06/laxairportterminal_banner.webp')
        center center / cover no-repeat;
}

/* Bottom red accent line */
.banner-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--brand) 60%, transparent 100%);
    pointer-events: none;
    z-index: 3;
}

/* Animated runway light strips */
.banner-runway {
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    height: 2px;
    display: flex;
    gap: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.banner-runway span {
    flex: 1;
    background: rgba(251, 191, 36, 0.6);
    animation: runwayBlink 2.4s linear infinite;
}

.banner-runway span:nth-child(2)  { animation-delay: 0.24s; }
.banner-runway span:nth-child(3)  { animation-delay: 0.48s; }
.banner-runway span:nth-child(4)  { animation-delay: 0.72s; }
.banner-runway span:nth-child(5)  { animation-delay: 0.96s; }
.banner-runway span:nth-child(6)  { animation-delay: 1.20s; }
.banner-runway span:nth-child(7)  { animation-delay: 1.44s; }
.banner-runway span:nth-child(8)  { animation-delay: 1.68s; }
.banner-runway span:nth-child(9)  { animation-delay: 1.92s; }
.banner-runway span:nth-child(10) { animation-delay: 2.16s; }

@keyframes runwayBlink {
    0%, 45%, 100% { opacity: 0.12; }
    50%            { opacity: 1; }
}

/* ── Inner two-column flex ────────────────────────────────────── */
.banner-section__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 48px;
    width: 100%;
}

/* Tagline column left, card column right */
.banner-col--tagline { flex: 1; min-width: 0; order: 1; }
.banner-col--card    { flex: 0 0 420px; max-width: 420px; order: 2; }

/* ── Headline column ──────────────────────────────────────────── */
.banner-tagline {
    color: #fff;
    animation: bFadeUp 0.65s ease both;
}

@keyframes bFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Eyebrow */
.banner-tagline .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.50);
    margin-bottom: 20px;
}

.eyebrow__dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--atl-red);
    animation: dotPulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.60); }
    50%       { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0); }
}

.banner-tagline h1 {
    font-size: clamp(32px, 4vw, 54px) !important;
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 22px;
    color: #fff;
    letter-spacing: -1px;
}

.banner-tagline h1 span { color: var(--atl-red); }

.banner-tagline .banner-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 36px;
}

/* ── Stats glass strip ────────────────────────────────────────── */
.banner-stats {
    display: flex;
    align-items: stretch;
    margin-bottom: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    width: fit-content;
    max-width: 100%;
}

.stat-item {
    padding: 20px 28px;
    text-align: center;
    flex-shrink: 0;
}

.stat-item .stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-item .stat-num sup {
    font-size: 14px;
    font-weight: 700;
    vertical-align: super;
    color: var(--atl-red);
}

.stat-item .stat-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 6px;
}

.stat-divider {
    flex-shrink: 0;
    width: 1px;
    background: rgba(255,255,255,0.15);
    align-self: stretch;
    margin: 14px 0;
}

/* ── CTA buttons ──────────────────────────────────────────────── */
.banner-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.banner-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--atl-red);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.22s, box-shadow 0.22s;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.25);
}

.banner-cta-primary:hover {
    background: var(--atl-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(251, 191, 36, 0.35);
    text-decoration: none;
    color: #fff !important;
}

.banner-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.30);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.22s;
}

.banner-cta-ghost:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.55);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff !important;
}

/* ── Search card ──────────────────────────────────────────────── */
.search-card {
    background: #fff;
    border-radius: 16px;
    box-shadow:
        0 32px 80px rgba(0,0,0,0.45),
        0 8px 24px rgba(0,0,0,0.20);
    overflow: hidden;
    animation: bFadeUp 0.5s 0.08s ease both;
    width: 100%;
}

/* Card header bar */
.card-header-bar {
    background: linear-gradient(105deg, var(--atl-dark) 0%, var(--brand-dark) 60%, var(--brand) 100%);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid var(--atl-red);
}

.card-header-bar__left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-header-bar__left i {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.card-header-bar h2 {
    font-size: 14px !important;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.3px;
}

.weather-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 50px;
    padding: 5px 11px;
}

.weather-badge .weather-icon { font-size: 13px; }
.weather-badge .weather-text {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

/* Card body */
.card-body-inner { padding: 20px 22px 22px; }

/* ── Flight Tabs ──────────────────────────────────────────────── */
.flight-tabs {
    display: flex;
    border-bottom: 2px solid var(--atl-border);
    margin-bottom: 18px;
}

.flight-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 11px 0;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    color: var(--atl-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.flight-tab-btn i { font-size: 12px; }
.flight-tab-btn.active             { color: var(--brand); border-bottom-color: var(--brand); }
.flight-tab-btn:hover:not(.active) { color: var(--atl-red); border-bottom-color: var(--atl-red); }

/* Tab panes */
.tab-pane        { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.25s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Flight Search Form ───────────────────────────────────────── */
.flight-search { margin-top: 2px; }

.flight-search__form {
    width: 100%;
    margin: 0;
    padding: 0;
}

.flight-search__row {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    background: var(--atl-light);
    border: 2px solid var(--atl-border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
}

.flight-search__row:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(1,90,156,0.12);
    background: #fff;
}

/* Left search icon */
.flight-search__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 100%;
    color: var(--atl-muted);
    font-size: 14px;
    pointer-events: none;
    background: transparent;
    transition: color 0.22s;
}

.flight-search__row:focus-within .flight-search__icon { color: var(--brand); }

/* Text input */
.flight-search__input {
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    font-size: 13px;
    font-family: var(--font-main);
    font-weight: 500;
    color: var(--text-dark);
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    border-radius: 0;
    -webkit-search-decoration: none;
    -webkit-search-cancel-button: none;
    -webkit-search-results-button: none;
}

.flight-search__input::placeholder { color: var(--atl-muted); font-weight: 400; }
.flight-search__input::-webkit-search-cancel-button { display: none; }
.flight-search__input:focus { outline: none; box-shadow: none; border: none; }

/* Submit button */
.flight-search__btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--brand);
    border: none;
    border-radius: 0;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.flight-search__btn:hover { background: var(--brand-dark); }

/* ── View-all link ────────────────────────────────────────────── */
.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--brand);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
}

.view-all-link:hover { color: var(--atl-red); gap: 10px; text-decoration: none; }
.view-all-link i     { font-size: 10px; }

/* ── Card quick-links row ─────────────────────────────────────── */
.card-quicklinks {
    display: flex;
    gap: 6px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--atl-border);
    flex-wrap: wrap;
}

.card-quicklink {
    flex: 1;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 6px;
    background: var(--atl-light);
    border: 1px solid var(--atl-border);
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--atl-text);
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
    white-space: nowrap;
}

.card-quicklink i { font-size: 11px; color: var(--brand); }

.card-quicklink:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    text-decoration: none;
}

.card-quicklink:hover i { color: #fff; }

/* Hide some table columns on small screens */
.hide-sm { display: none; }

/* ==========================================================================
   5. QUICK SERVICES (QS) — SECTION 2  (Redesigned — Horizontal Cards)
   ========================================================================== */

.qs-section {
    background: #fff;
    padding: 0;
    border-bottom: 1px solid var(--atl-border);
}

.qs-section__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 56px 48px;
}

/* ── Header row ──────────────────────────────────────────────── */
.qs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.qs-header__left { flex: 1; min-width: 0; }

.qs-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--atl-red);
    margin-bottom: 8px;
}

.qs-title {
    font-size: var(--fs-h2) !important;
    font-weight: 800;
    color: var(--brand-dark);
    margin: 0 0 4px;
    letter-spacing: -0.3px;
    line-height: 1.15;
}

.qs-subtitle {
    font-size: 14px;
    color: var(--atl-text-mid);
    margin: 0;
}

.qs-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--brand);
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
    flex-shrink: 0;
    padding-bottom: 4px;
}

.qs-view-all i { font-size: 11px; transition: transform 0.2s; }
.qs-view-all:hover { color: var(--atl-red); gap: 10px; text-decoration: none; }
.qs-view-all:hover i { transform: translateX(3px); }

/* ── Grid — 3 columns, 2 rows ────────────────────────────────── */
.qs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* ── Individual card ─────────────────────────────────────────── */
.qs-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border: 1.5px solid var(--atl-border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--atl-text);
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s, background 0.22s;
    position: relative;
    overflow: hidden;
}

/* Subtle left accent line */
.qs-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--brand);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s ease;
    border-radius: 0 2px 2px 0;
}

.qs-card:hover {
    border-color: var(--brand);
    box-shadow: 0 6px 28px rgba(1,90,156,0.14);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--atl-text);
    background: var(--brand-subtle);
}

.qs-card:hover::before { transform: scaleY(1); }

/* Icon bubble */
.qs-card__icon-wrap {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--brand-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--brand);
    transition: background 0.22s, color 0.22s, transform 0.22s;
}

.qs-card:hover .qs-card__icon-wrap {
    background: var(--brand);
    color: #fff;
    transform: scale(1.08);
}

/* Text content */
.qs-card__content { flex: 1; min-width: 0; }

.qs-card__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--atl-text);
    margin: 0 0 2px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qs-card__desc {
    font-size: 11px;
    color: var(--atl-text-mid);
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Chevron */
.qs-card__chevron {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--atl-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--atl-muted);
    transition: border-color 0.22s, background 0.22s, color 0.22s, transform 0.22s;
}

.qs-card:hover .qs-card__chevron {
    border-color: var(--atl-red);
    background: var(--atl-red);
    color: #fff;
    transform: translateX(3px);
}

/* Legacy classes kept for compatibility */
.qs-card__bg,
.qs-card__overlay,
.qs-card__body,
.qs-card__icon,
.qs-card__arrow { display: none; }

/* Legacy ATL service cards */
.atl-service-card {
    flex: 1;
    min-width: 200px;
    background: var(--atl-white);
    border: 1px solid var(--atl-border);
    border-radius: var(--atl-radius-lg);
    padding: 28px 22px;
    text-decoration: none;
    color: var(--atl-text);
    transition: var(--atl-transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--atl-shadow-sm);
}

.atl-service-card:hover {
    border-color: var(--atl-navy);
    box-shadow: var(--atl-shadow-md);
    transform: translateY(-3px);
    text-decoration: none;
    color: var(--atl-text);
}

.atl-service-card-icon {
    width: 48px;
    height: 48px;
    background: var(--atl-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.atl-service-card:hover .atl-service-card-icon { background: rgba(30, 64, 175, 0.08); }
.atl-service-card-icon svg                      { width: 26px; height: 26px; fill: var(--atl-navy); }

.atl-service-card-title {
    font-family: var(--font-primary), sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--atl-navy);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
}

.atl-service-card-desc {
    font-size: 14px;
    color: var(--atl-text-mid);
    line-height: 1.6;
    margin: 0;
}

.atl-service-card-link {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--atl-red);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.atl-service-card-link svg             { width: 14px; height: 14px; fill: var(--atl-red); transition: transform 0.2s; }
.atl-service-card:hover .atl-service-card-link svg { transform: translateX(3px); }

/* Services tabs bar */
.atl-services-tabs-bar {
    display: flex;
    border-bottom: 2px solid var(--atl-border);
    margin-bottom: 32px;
    overflow-x: auto;
}

.atl-services-tab {
    padding: 12px 22px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: var(--font-secondary), sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--atl-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--atl-transition);
}

.atl-services-tab.atl-active,
.atl-services-tab:hover { color: var(--atl-navy); border-bottom-color: var(--atl-navy); }

.atl-services-panel         { display: none; }
.atl-services-panel.atl-active { display: block; }
.atl-service-cards          { display: flex; flex-wrap: wrap; gap: 20px; }


/* ==========================================================================
   6. ABOUT SECTION  — Immersive Full-Bleed Redesign
   ========================================================================== */

/* ── Section: dark overlay on full image background ── */
.about-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: var(--brand-dark);
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(30, 58, 138, 0.97) 0%,
            rgba(30, 64, 175, 0.90) 42%,
            rgba(30, 64, 175, 0.55) 100%
        );
    z-index: 1;
    pointer-events: none;
}

/* Animated dot-grid texture overlay */
.about-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(251,191,36,0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 1;
    pointer-events: none;
}

/* BG image injected via inline style on the element */
.about-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    z-index: 0;
    transform: scale(1.04);
    transition: transform 12s ease;
}

.about-section:hover .about-bg-img { transform: scale(1.00); }

/* ── Inner wrapper ── */
.about-inner {
    position: relative;
    z-index: 2;
    max-width: 1260px;
    margin: 0 auto;
    padding: 100px 48px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

/* ── LEFT: Content block ── */
.about-content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Eyebrow pill */
.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
    padding: 6px 16px 6px 6px;
    border: 1px solid rgba(251,191,36,0.30);
    border-radius: 100px;
    width: fit-content;
    background: rgba(251,191,36,0.08);
}

.about-eyebrow::before {
    content: '';
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    flex-shrink: 0;
}

/* Main headline */
.about-title {
    font-size: clamp(32px, 3.6vw, 52px) !important;
    font-weight: 800;
    color: var(--atl-white);
    line-height: 1.08;
    margin-bottom: 0;
    letter-spacing: -1.5px;
}

.about-title span {
    color: var(--accent);
    display: block;
}

/* Accent rule */
.about-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 3px;
    margin: 24px 0;
    display: block;
    border: none;
}

/* Body text */
.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.72);
    margin-bottom: 12px;
    max-width: 540px;
}

/* Feature pills row */
.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}

.about-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.3px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s;
}

.about-feature-pill:hover {
    background: rgba(251,191,36,0.12);
    border-color: rgba(251,191,36,0.40);
    color: var(--accent);
}

.about-feature-pill i {
    font-size: 11px;
    color: var(--accent);
}

/* CTA group */
.about-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* Primary CTA */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    background: var(--accent);
    color: var(--brand-dark) !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(251, 191, 36, 0.40);
    transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
}

.about-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(251, 191, 36, 0.50);
    text-decoration: none;
    color: var(--atl-white) !important;
}

.about-cta i { font-size: 12px; transition: transform 0.22s ease; }
.about-cta:hover i { transform: translateX(5px); }

/* Ghost CTA */
.about-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.28);
    color: rgba(255,255,255,0.90) !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.22s, border-color 0.22s, transform 0.22s;
}

.about-cta-ghost:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.55);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff !important;
}

/* ── RIGHT: Stats panel card ── */
.about-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Big counter card at top */
.about-hero-stat {
    background: var(--accent);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.30);
    position: relative;
    overflow: hidden;
}

.about-hero-stat::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(30, 64, 175, 0.12);
    pointer-events: none;
}

.about-hero-stat__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(30, 58, 138, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--brand-dark);
    flex-shrink: 0;
}

.about-hero-stat__num {
    font-size: 42px;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1;
    letter-spacing: -2px;
}

.about-hero-stat__num sup {
    font-size: 16px;
    letter-spacing: 0;
    vertical-align: super;
}

.about-hero-stat__lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(30, 58, 138, 0.70);
    margin-top: 3px;
}

/* 2×2 glass stat grid */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 0;
}

.about-stat {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 20px 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.22s, border-color 0.22s, transform 0.22s;
    position: relative;
    overflow: hidden;
}

.about-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.about-stat:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(251,191,36,0.25);
    transform: translateY(-3px);
}

.about-stat:hover::before { transform: scaleX(1); }

.about-stat__num {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--atl-white);
    line-height: 1;
    letter-spacing: -1px;
}

.about-stat__num sup {
    font-size: 13px;
    color: var(--accent);
    font-weight: 700;
    vertical-align: super;
    letter-spacing: 0;
}

.about-stat__lbl {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 6px;
}

/* Since-badge at bottom of panel */
.about-since-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 16px 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-since-badge__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(251,191,36,0.22);
    animation: sincePulse 2s ease-in-out infinite;
}

@keyframes sincePulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(251,191,36,0.22); }
    50%       { box-shadow: 0 0 0 8px rgba(251,191,36,0.08); }
}

.about-since-badge__text {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.60);
    letter-spacing: 0.3px;
}

.about-since-badge__text strong {
    color: var(--atl-white);
    font-weight: 800;
}

/* ── Responsive: About ── */
@media (max-width: 1100px) {
    .about-inner {
        grid-template-columns: 1fr 360px;
        gap: 52px;
        padding: 80px 32px;
    }
}

@media (max-width: 991px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 72px 28px;
    }
    .about-panel {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .about-hero-stat { grid-column: 1 / -1; }
    .about-since-badge { grid-column: 1 / -1; }
    .about-stats { grid-template-columns: repeat(4, 1fr); }
    .about-title { font-size: clamp(28px, 5vw, 40px) !important; }
    .about-text  { max-width: 100%; }
}

@media (max-width: 767px) {
    .about-inner { padding: 56px 20px; gap: 40px; }
    .about-panel { grid-template-columns: 1fr; }
    .about-hero-stat { grid-column: auto; }
    .about-since-badge { grid-column: auto; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .about-hero-stat__num { font-size: 34px; }
    .about-cta-group { flex-direction: column; }
    .about-cta,
    .about-cta-ghost { justify-content: center; text-align: center; }
}


/* ==========================================================================
   7. HISTORY SECTION  (Redesigned)
   ========================================================================== */

.history-section {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.history-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 60px solid rgba(30, 64, 175, 0.06);
    pointer-events: none;
}

.history-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 40px solid rgba(251, 191, 36, 0.08);
    pointer-events: none;
}

/* Inner container */
.history-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ── Section header ── */
.history-header {
    text-align: center;
    margin-bottom: 56px;
}

.history-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 5px 16px;
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 20px;
}

.history-eyebrow i { font-size: 10px; }

.history-title {
    font-size: clamp(24px, 3vw, 32px) !important;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.history-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Alternating timeline ── */
.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: start;
    min-height: 120px;
}

/* Cards (left and right) */
.timeline-item-content {
    background: var(--atl-white);
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.09);
    border: 1px solid var(--atl-border);
    margin: 8px 16px;
    position: relative;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.timeline-item-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(30, 64, 175, 0.16);
}

/* Hide the empty ghost card */
.timeline-item-content--empty {
    visibility: hidden;
    pointer-events: none;
}

/* Arrow connectors */
.timeline-item-content--left::after {
    content: '';
    position: absolute;
    top: 24px;
    right: -9px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 9px solid var(--atl-white);
    filter: drop-shadow(2px 0 3px rgba(0, 0, 0, 0.06));
}

.timeline-item-content--right::after {
    content: '';
    position: absolute;
    top: 24px;
    left: -9px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 9px solid var(--atl-white);
    filter: drop-shadow(-2px 0 3px rgba(0, 0, 0, 0.06));
}

/* Ensure empty ghosts have no arrows */
.timeline-item-content--empty::after { display: none; }

/* Centre node column */
.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    position: relative;
}

.tl-year {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--brand);
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 4px;
    line-height: 1;
}

.tl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.30);
    margin: 6px 0;
    flex-shrink: 0;
}

/* Special "today" dot */
.tl-dot--accent {
    background: var(--brand);
    box-shadow: 0 0 0 6px rgba(30, 64, 175, 0.20);
    width: 18px;
    height: 18px;
}

.tl-line {
    width: 2px;
    flex: 1;
    background: rgba(30, 64, 175, 0.15);
    min-height: 40px;
}

/* Timeline card content styles */
.tl-content-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(251, 191, 36, 0.10);
    border-radius: 4px;
    padding: 3px 8px;
    margin-bottom: 8px;
}

.tl-content-badge--present {
    color: var(--brand);
    background: rgba(30, 64, 175, 0.09);
}

.tl-content-heading {
    font-size: 15px !important;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 6px;
    line-height: 1.35;
}

.tl-content-body {
    font-size: 13px;
    line-height: 1.7;
    color: var(--atl-text-mid);
    margin-bottom: 0;
}

/* ── Pillar stats strip ── */
.history-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.history-pillar {
    background: var(--atl-white);
    border-radius: 14px;
    padding: 28px 24px;
    border-top: 3px solid var(--brand);
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.08);
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.history-pillar--red   { border-top-color: var(--accent); }
.history-pillar--green { border-top-color: var(--atl-green); }

.history-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.14);
}

.history-pillar__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--brand-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--brand);
    margin: 0 auto 16px;
}

.history-pillar--red   .history-pillar__icon { background: var(--accent-muted); color: var(--accent); }
.history-pillar--green .history-pillar__icon { background: var(--atl-green-light); color: var(--atl-green); }

.history-pillar__num {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1;
    display: block;
}

.history-pillar__num sup {
    font-size: 14px;
    color: var(--accent);
    vertical-align: super;
}

.history-pillar__lbl {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--atl-muted);
    margin-top: 6px;
}

/* ── Responsive: History ── */
@media (max-width: 991px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .timeline-item-content { margin: 6px 0; }
    .timeline-item-content--empty { display: none; }
    .timeline-item-content--left::after,
    .timeline-item-content--right::after { display: none; }

    .timeline-node {
        flex-direction: row;
        padding: 8px 0;
        gap: 10px;
    }

    .tl-line { min-height: 2px; width: 40px; height: 2px; flex: 1; }

    .history-pillars { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .history-header   { margin-bottom: 36px; }
    .history-pillars  { grid-template-columns: 1fr; gap: 14px; }
    .history-pillar   { padding: 22px 20px; }
    .history-pillar__num { font-size: 26px; }
    .history-section  { padding: 40px 16px; }
}


/* ==========================================================================
   8. TSA / WAIT TIME SECTION — SECTION 5
   ========================================================================== */

.tsa-section {
    position: relative;
    background:
        linear-gradient(160deg, rgba(1,25,55,0.96) 0%, rgba(1,63,110,0.93) 50%, rgba(1,90,156,0.90) 100%),
        url('https://images.unsplash.com/photo-1530521954074-e64f6810b32d?w=1400&q=80') center / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.tsa-section__bg-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.015) 40px,
        rgba(255,255,255,0.015) 80px
    );
    pointer-events: none;
}

.tsa-section__inner {
    position: relative;
    z-index: 2;
}

/* Header */
.tsa-header {
    text-align: center;
    margin-bottom: 48px;
}

.tsa-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    padding: 5px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.tsa-eyebrow i { font-size: 11px; color: var(--atl-red); }

.tsa-title {
    font-size: clamp(26px, 3.5vw, 40px) !important;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
}

.tsa-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.62);
    margin: 0;
}

/* Stats row */
.tsa-stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tsa-stat-card {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 22px 24px;
    backdrop-filter: blur(10px);
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.tsa-stat-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.tsa-stat-card--precheck { border-left: 3px solid var(--atl-amber); }
.tsa-stat-card--wait     { border-left: 3px solid var(--atl-green); }
.tsa-stat-card--update   { border-left: 3px solid var(--brand-light); }

.tsa-stat-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.tsa-stat-card--precheck .tsa-stat-card__icon { background: rgba(251, 191, 36, 0.18); color: var(--atl-amber); }
.tsa-stat-card--wait .tsa-stat-card__icon     { background: rgba(30, 64, 175, 0.10); color: var(--atl-green); }
.tsa-stat-card--update .tsa-stat-card__icon   { background: rgba(44,126,203,0.15); color: var(--brand-light); }

.tsa-stat-card__label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 4px;
}

.tsa-stat-card__value {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.tsa-stat-card__value span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    margin-left: 4px;
}

.tsa-stat-card__sub {
    font-size: 11px;
    color: rgba(255,255,255,0.42);
    margin-top: 4px;
}

/* Tables row */
.tsa-tables-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tsa-table-panel {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.tsa-table-panel__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 22px;
    background: rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.tsa-table-panel__header i {
    color: var(--atl-amber);
    font-size: 16px;
}

.tsa-table-panel__header h3 {
    font-size: 13px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.88);
    margin: 0;
}

.tsa-table-panel__body { padding: 0; }

.wait-table-scroll {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}

/* TSA Table */
.tsa-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.tsa-table thead th {
    padding: 11px 18px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border: none;
    white-space: nowrap;
}

.tsa-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.18s;
}

.tsa-table tbody tr:last-child { border-bottom: none; }
.tsa-table tbody tr:hover { background: rgba(255,255,255,0.05); }

.tsa-table tbody td {
    padding: 13px 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.80);
    border: none;
    vertical-align: middle;
}

/* TSA Badges */
.tsa-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.tsa-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tsa-badge--open    { background: rgba(30, 64, 175, 0.12); color: var(--brand-muted); }
.tsa-badge--open::before { background: var(--atl-green); }
.tsa-badge--closed  { background: rgba(251, 191, 36, 0.15); color: var(--atl-red); }
.tsa-badge--closed::before { background: var(--atl-red); }
.tsa-badge--limited { background: rgba(245,158,11,0.18); color: var(--accent-light); }
.tsa-badge--limited::before { background: var(--atl-amber); }

/* Keep old classes working for backward compat */
.parking-back { background: var(--brand-dark); }
.tsa-table-wrap { background: rgba(255,255,255,0.08); padding: 20px; }
.status-badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 12px; font-weight: 600; color: #fff; }
.status-open { background: var(--atl-green); }
.status-closed { background: var(--atl-red); }
.status-reservation { background: var(--accent); color: #000; }

/* ATL status badge variant */
.atl-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.atl-status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.atl-status-open             { background: var(--status-open-bg); color: var(--status-open-text); }
.atl-status-open::before     { background: var(--atl-green); }
.atl-status-closed           { background: var(--status-closed-bg); color: var(--status-closed-text); }
.atl-status-closed::before   { background: var(--atl-red); }
.atl-status-reservation      { background: var(--accent-muted); color: var(--accent-dark); }
.atl-status-reservation::before { background: var(--atl-amber); }

/* Checkpoint tables */
.atl-checkpoint-table {
    width: 100%;
    border-collapse: collapse;
}

.atl-checkpoint-table thead th {
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.atl-checkpoint-table tbody tr { transition: background 0.18s ease; }
.atl-checkpoint-table tbody tr:hover { background: rgba(255, 255, 255, 0.06); }
.atl-checkpoint-table tbody td { padding: 13px 20px; color: rgba(255, 255, 255, 0.80); }

/* Subsection title */
.atl-subsection-title {
    font-family: var(--font-primary), sans-serif;
    font-size: 20px;
    color: var(--atl-navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 32px 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.atl-subsection-title svg { width: 22px; height: 22px; fill: var(--atl-navy); }


/* ==========================================================================
   9. INSIGHTS / FEATURE CARDS
   ========================================================================== */

.insight-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--atl-shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
}

.insight-card:hover {
    box-shadow: var(--atl-shadow-md);
    transform: translateY(-4px);
}

.myimage3 {
    position: relative;
    overflow: hidden;
}

.myimage3 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.myimage3:hover img { transform: scale(1.06); }

.helpful-font {
    display: block;
    width: 100%;
    padding: 16px 20px 0;
    text-decoration: none;
    color: var(--atl-red) !important;
    font-weight: var(--fw-bold);
    font-size: 18px;
}

.insight-desc {
    padding: 8px 20px 16px;
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin: 0;
}

.btn-size-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}


/* ==========================================================================
   10. AIRLINE CARDS
   ========================================================================== */

.airline-card {
    background: #fff;
    border: 1px solid var(--atl-border);
    border-radius: var(--atl-radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: var(--atl-transition);
    box-shadow: var(--atl-shadow-sm);
    height: 100%;
}

.airline-card:hover {
    box-shadow: var(--atl-shadow-md);
    transform: translateY(-3px);
    border-color: var(--atl-navy);
}

.airline-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--brand);
    font-size: 22px;
    transition: background 0.2s;
}

.airline-card:hover .airline-icon { background: rgba(30, 64, 175, 0.08); }

.airline-card h5 {
    font-size: var(--fs-h5) !important;
    font-weight: var(--fw-bold);
    color: var(--text-dark);
    margin-bottom: 6px;
}

.airline-card p {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 12px;
}

.airline-link {
    font-size: var(--fs-small);
    font-weight: var(--fw-semi);
    color: var(--brand);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.airline-link:hover { color: var(--atl-red); text-decoration: none; }


/* ==========================================================================
   11. FAQ ACCORDION — SECTION 8
   ========================================================================== */

.faq-section {
    background: var(--bg-soft);
}

/* Two-column layout */
.faq-section__layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

/* Aside */
.faq-section__aside {
    position: sticky;
    top: 100px;
    padding-right: 20px;
}

.faq-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--atl-red);
    padding: 4px 14px;
    border: 1.5px solid var(--atl-red);
    border-radius: 20px;
    margin-bottom: 20px;
}

.faq-section__title {
    font-size: clamp(28px, 3vw, 40px) !important;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 0 0 20px;
}

.faq-section__desc {
    font-size: 14px;
    color: var(--atl-text-mid);
    line-height: 1.75;
    margin-bottom: 28px;
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 14px rgba(1,90,156,0.3);
}

.faq-contact-link:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff !important;
}

.faq-section__deco {
    margin-top: 40px;
    font-size: 100px;
    color: rgba(1,90,156,0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Accordion list */
.faq-section__accordion { min-width: 0; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item:hover {
    border-color: rgba(1,90,156,0.25);
    box-shadow: 0 4px 20px rgba(1,90,156,0.10);
}

.faq-item.is-open {
    border-color: var(--brand);
    box-shadow: 0 6px 28px rgba(1,90,156,0.14);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--atl-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s, background 0.2s;
    font-family: var(--font-main);
    line-height: 1.45;
}

.faq-question:hover { color: var(--brand); }
.faq-item.is-open .faq-question {
    color: var(--brand);
    background: rgba(1,90,156,0.03);
    border-bottom: 1px solid var(--border);
}

.faq-toggle-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 13px;
    transition: background 0.25s, border-color 0.25s, transform 0.3s;
}

.faq-item:hover .faq-toggle-icon {
    background: rgba(1,90,156,0.08);
    border-color: var(--brand);
}

.faq-item.is-open .faq-toggle-icon {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
    background: #fff;
}

.faq-answer-content {
    padding: 18px 24px 22px;
    color: var(--atl-text-mid);
    font-size: 14px;
    line-height: 1.8;
}

.faq-answer-content strong { color: var(--brand-dark); }

.faq-item.is-open .faq-answer { max-height: 500px; }

/* Legacy .faq-icon kept for backward compat */
.faq-icon { display: none; }

/* ATL FAQ variant */
.atl-faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.atl-faq-item {
    border: 1px solid var(--atl-border);
    border-radius: var(--atl-radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
    background: var(--atl-white);
}

.atl-faq-item.atl-open {
    box-shadow: var(--atl-shadow-md);
    border-color: rgba(30, 64, 175, 0.20);
}

.atl-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-secondary), sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--atl-text);
    cursor: pointer;
    transition: color 0.2s;
}

.atl-faq-question:hover { color: var(--atl-navy) !important; }

.atl-faq-item.atl-open .atl-faq-question {
    color: var(--atl-navy);
    border-bottom: 1px solid var(--atl-border);
}

.atl-faq-icon {
    width: 28px;
    height: 28px;
    background: var(--atl-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.25s;
}

.atl-faq-icon svg { width: 14px; height: 14px; fill: var(--atl-navy); }

.atl-faq-item.atl-open .atl-faq-icon     { background: var(--atl-navy); transform: rotate(45deg); }
.atl-faq-item.atl-open .atl-faq-icon svg { fill: var(--atl-white); }

.atl-faq-answer {
    display: none;
    padding: 18px 22px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--atl-text-mid);
}

.atl-faq-item.atl-open .atl-faq-answer { display: block; }


/* ==========================================================================
   12. CTA BANNER
   ========================================================================== */

.banner766 {
    height: 24em;
    background:
        linear-gradient(135deg, rgba(30, 64, 175, 0.92), rgba(30, 64, 175, 0.88)),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&q=80') center / cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-width { width: 60%; }
.help-width .text-light { color: #fff; }


/* ==========================================================================
   13. BLOG CARDS
   ========================================================================== */

/* -- Section heading -- */
.blog-section-heading {
    position: relative;
    color: var(--atl-navy);
    margin: 15px 0;
    text-align: center;
}

/* -- Featured blog card (left, large) -- */
.blog-featured-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-featured-card:hover {
    box-shadow: 0 10px 36px rgba(251, 191, 36, 0.15);
    transform: translateY(-4px);
}

/* Red/blue gradient stripe */
.blog-featured-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--brand));
    z-index: 2;
}

.blog-feat-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
    flex-shrink: 0;
}

.blog-feat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-featured-card:hover .blog-feat-img-wrap img { transform: scale(1.05); }

.blog-feat-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-feat-category {
    display: inline-block;
    background: var(--atl-red);
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 12px;
    width: fit-content;
}

.blog-feat-title {
    font-size: var(--fs-h3) !important;
    font-weight: var(--fw-bold);
    color: var(--text-dark);
    line-height: var(--lh-heading);
    margin-bottom: 10px;
}

.blog-feat-excerpt {
    font-size: var(--fs-body);
    color: var(--text-muted);
    line-height: var(--lh-body);
    flex: 1;
    margin-bottom: 16px;
}

.blog-feat-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--fs-small);
    color: var(--text-muted);
    border-top: 1px solid var(--atl-border);
    padding-top: 12px;
    margin-top: auto;
}

.meta-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-read-link {
    margin-left: auto;
    font-size: var(--fs-small);
    font-weight: var(--fw-bold);
    color: var(--atl-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.blog-read-link:hover { color: var(--atl-red); }

/* -- Secondary blog cards (right column, stacked) -- */
.blog-secondary-card {
    display: flex;
    align-items: stretch;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    border-left: 3px solid transparent;
}

.blog-secondary-card:hover {
    box-shadow: 0 6px 24px rgba(30, 64, 175, 0.12);
    transform: translateY(-3px);
    border-left-color: var(--atl-navy);
}

.blog-secondary-card .blog-thumb {
    width: 130px;
    min-width: 130px;
    flex-shrink: 0;
    overflow: hidden;
}

.blog-secondary-card .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.blog-secondary-card:hover .blog-thumb img { transform: scale(1.07); }

.blog-secondary-card .card-body {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-secondary-card .card-title {
    font-size: var(--fs-small) !important;
    font-weight: var(--fw-bold);
    margin-bottom: 5px;
    line-height: 1.35;
    color: var(--text-dark);
}

.blog-secondary-card .blog-excerpt {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.55;
}

.blog-badge-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-soft);
    color: var(--atl-navy);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    padding: 2px 8px;
    border-radius: 3px;
    border: 1px solid var(--border);
    max-width: fit-content;
}

/* "View All" button area */
.blog-readmore-wrap { padding: 0 40px 60px; }

/* ATL blog card variant */
.atl-blog-card {
    background: var(--atl-white);
    border: 1px solid var(--atl-border);
    border-radius: var(--atl-radius-lg);
    overflow: hidden;
    transition: var(--atl-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--atl-shadow-sm);
}

.atl-blog-card:hover,
a:hover .atl-blog-card {
    box-shadow: var(--atl-shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(30, 64, 175, 0.16);
}

.atl-blog-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: var(--atl-light);
}

.atl-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.atl-blog-card:hover .atl-blog-card-img img,
a:hover .atl-blog-card .atl-blog-card-img img { transform: scale(1.04); }

.atl-blog-card-date {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--atl-navy);
    color: var(--atl-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.atl-blog-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.atl-blog-card-body h3 {
    font-family: var(--font-primary), sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--atl-navy);
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.atl-blog-card-body p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--atl-text-mid);
    margin: 0 0 16px;
    flex: 1;
}

.atl-blog-read-more {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--atl-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap 0.2s;
}

.atl-blog-read-more svg    { width: 14px; height: 14px; fill: var(--atl-red); }
.atl-blog-read-more:hover  { text-decoration: none; color: var(--atl-navy); gap: 10px; }
.atl-blog-read-more:hover svg { fill: var(--atl-navy); }


/* ==========================================================================
   14. BUTTONS
   ========================================================================== */

/* -- Shared base -- */
.btn-size {
    font-size: var(--fs-body);
    border-radius: 0;
    padding: 10px 18px;
    color: #fff;
}

/* Primary filled */
.btn-custom {
    border: 1px solid var(--brand);
    background-color: var(--brand);
    color: #fff !important;
}

.btn-custom:hover {
    background-color: var(--brand-light);
    color: #fff !important;
}

/* Outline */
.btn-default {
    border: 1px solid var(--brand);
    background-color: transparent;
    color: var(--brand) !important;
}

.btn-default:hover {
    background-color: var(--brand);
    color: #fff !important;
}

/* Success / CTA */
.btn-mysuccess {
    background: var(--brand);
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
}

.btn-mysuccess:hover {
    background: var(--brand-light);
    border: 2px solid #ffffff;
    color: #ffffff !important;
}

/* ATL button system */
.atl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--atl-radius);
    font-family: var(--font-secondary), sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--atl-transition);
    cursor: pointer;
    border: none;
    line-height: 1;
}

.atl-btn-primary {
    background: var(--atl-navy);
    color: var(--atl-white);
    box-shadow: 0 2px 10px rgba(30, 64, 175, 0.25);
}

.atl-btn-primary:hover {
    background: var(--atl-navy-dark);
    color: var(--atl-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.30);
}

.atl-btn-red {
    background: var(--atl-red);
    color: var(--atl-white);
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.30);
}

.atl-btn-red:hover {
    background: var(--atl-red-dark);
    color: var(--atl-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.35);
}

.atl-btn-outline-navy {
    border: 2px solid var(--atl-navy);
    color: var(--atl-navy);
    background: transparent;
}

.atl-btn-outline-navy:hover {
    background: var(--atl-navy);
    color: var(--atl-white);
    text-decoration: none;
    transform: translateY(-1px);
}

.atl-btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.30);
    color: var(--atl-white);
    backdrop-filter: blur(4px);
}

.atl-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.20);
    color: var(--atl-white);
    text-decoration: none;
}

/* SVG icons inside ATL buttons */
.atl-btn svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }


/* ==========================================================================
   15. MODALS
   ========================================================================== */

.atl-modal-overlay,
.atl-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.atl-modal-overlay.atl-open,
.atl-overlay.atl-overlay-show { display: flex; }

.atl-modal {
    background: var(--atl-white);
    border-radius: var(--atl-radius-lg);
    overflow: hidden;
    max-width: 680px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--atl-shadow-xl);
    position: relative;
}

.atl-modal-left {
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.atl-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(251, 191, 36, 0.10);
    color: var(--atl-red);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    width: fit-content;
}

.atl-modal-headline {
    font-family: var(--font-primary), sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--atl-navy);
    margin: 0 0 8px;
}

.atl-modal-sub {
    font-size: 14px;
    color: var(--atl-text-mid);
    line-height: 1.6;
    margin: 0 0 24px;
}

.atl-modal-services {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.atl-modal-services li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--atl-text);
    font-weight: 500;
}

.atl-modal-services li svg {
    width: 16px; height: 16px;
    fill: none;
    stroke: var(--atl-navy);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.atl-check-dot {
    width: 22px;
    height: 22px;
    background: rgba(30, 64, 175, 0.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.atl-modal-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--atl-navy);
    border-radius: var(--atl-radius);
    color: var(--atl-white);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-secondary), sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    padding: 15px 28px;
    cursor: pointer;
    transition: var(--atl-transition);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.25);
}

.atl-modal-cta-btn:hover {
    background: var(--atl-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.35);
    color: var(--atl-white);
    text-decoration: none;
}

.atl-modal-cta-btn svg { width: 18px; height: 18px; fill: var(--atl-white); }

.atl-modal-disclaimer {
    margin-top: 14px;
    font-size: 11px;
    color: var(--atl-muted);
    line-height: 1.5;
}

.atl-modal-right {
    position: relative;
    overflow: hidden;
    background: var(--atl-navy);
    min-height: 280px;
}

.atl-modal-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.atl-modal-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);
    color: var(--atl-white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--atl-transition);
    line-height: 1;
}

.atl-modal-close-btn:hover {
    background: var(--atl-red);
    transform: rotate(90deg);
}


/* ==========================================================================
   16. FOOTER
   ========================================================================== */

footer#colophon.site-footer {
    background-color: var(--atl-navy) !important;
    background-image: none;
    padding: 64px 0 0;
    position: relative;
}

/* Gradient top border */
footer#colophon.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-dark), var(--accent), var(--brand-dark));
    display: block !important;
}

footer#colophon.site-footer::after { display: none; }

.pre-footer { padding-bottom: 48px; }

.menu-head {
    font-family: var(--font-primary), sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--atl-white) !important;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}

.menu-new ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.menu-new ul li           { margin-bottom: 10px; }

.menu-new ul li a {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 14px;
    font-family: var(--font-secondary), sans-serif;
    text-decoration: none !important;
    transition: color 0.2s;
}

.menu-new ul li a:hover   { color: var(--atl-white) !important; }
.menu-new ul.children     { margin-top: 10px !important; }

/* Disclaimer bar */
.disc__main           { background-color: var(--brand); }

.disc__main .container {
    padding: 20px 15px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
}

.disc__main p {
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1.7;
    margin: 0 !important;
}

.disc__main p strong  { color: #fff !important; }

/* Copyright bar */
.site-info             { background-color: var(--brand-dark); }

.site-info .container {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.site-info p {
    color: rgba(255, 255, 255, 0.50) !important;
    font-size: 13px !important;
    margin: 0 !important;
    line-height: 1.8;
    text-align: center;
}

/* Footer nav */
ul.menu-new-footer {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end !important;
}

ul.menu-new-footer li a {
    color: rgba(255, 255, 255, 0.50) !important;
    font-size: 13px;
    font-family: var(--font-secondary), sans-serif;
    text-decoration: none !important;
    transition: color 0.2s;
}

ul.menu-new-footer li a:hover { color: var(--atl-white) !important; }


/* ==========================================================================
   17. INNER / CHILD PAGES
   ========================================================================== */

/* -- Inner banner -- */
.inner-wrapper {
    padding: 48px 0 40px;
    background: var(--atl-navy);
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Diagonal stripe texture */
.inner-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 40px,
        rgba(255, 255, 255, 0.028) 40px,
        rgba(255, 255, 255, 0.028) 80px
    );
    pointer-events: none;
}

/* Red accent bottom border */
.inner-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--atl-red) 0%, rgba(251, 191, 36, 0.15) 100%);
}

.inner-title h1 {
    font-family: var(--font-primary), sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--atl-white);
    margin: 0 0 12px;
    letter-spacing: 0.03em;
    line-height: 1.2;
    padding-left: 16px;
    border-left: 4px solid var(--atl-red);
}

.inner-title p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    margin: 8px 0 0;
    padding-left: 20px;
}

/* Breadcrumbs (Yoast) */
.inner-wrapper .brcr,
.child_banner .brcr {
    margin-top: 4px;
    padding-left: 20px;
}

.inner-wrapper .brcr #breadcrumbs,
.inner-wrapper .brcr p,
.child_banner .brcr #breadcrumbs,
.child_banner .brcr p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.52);
    margin: 0;
    line-height: 1.6;
}

.inner-wrapper .brcr #breadcrumbs a,
.inner-wrapper .brcr p a,
.child_banner .brcr #breadcrumbs a,
.child_banner .brcr p a {
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    transition: color 0.2s;
}

.inner-wrapper .brcr #breadcrumbs a:hover,
.child_banner .brcr #breadcrumbs a:hover { color: var(--atl-white); }

.inner-wrapper .brcr #breadcrumbs span.breadcrumb_last,
.child_banner .brcr #breadcrumbs span.breadcrumb_last { color: rgba(255, 255, 255, 0.40); }

/* Legacy breadcrumb class */
.breadcrumb-atl {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.breadcrumb-atl a              { color: rgba(255, 255, 255, 0.70); text-decoration: none; }
.breadcrumb-atl a:hover        { color: var(--atl-white); }
.breadcrumb-atl span           { color: var(--atl-red); }

.inner-page   { padding: 40px 0 60px; }

.child-banner img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: var(--atl-radius-lg);
    margin-bottom: 28px;
    box-shadow: var(--atl-shadow-md);
}

.child-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--atl-text-mid);
}

.child-content h2 {
    font-family: var(--font-primary), sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--atl-navy);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 36px 0 14px;
}

.child-content h3 {
    font-family: var(--font-primary), sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--atl-navy);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 28px 0 12px;
}

.child-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--atl-text);
    margin: 22px 0 10px;
}

.child-content ul,
.child-content ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.child-content li           { margin-bottom: 8px; }

.child-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 24px 0;
    box-shadow: var(--atl-shadow-sm);
    border-radius: var(--atl-radius);
    overflow: hidden;
}

.child-content table th {
    background: var(--atl-navy);
    color: var(--atl-white);
    padding: 12px 16px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-align: left;
}

.child-content table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--atl-border);
}

.child-content table tr:nth-child(even) td { background: var(--atl-light); }

/* Sidebar */
.sidebar { padding-left: 24px; }

a.side-a {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--atl-border);
    transition: opacity 0.2s;
}

a.side-a:hover { opacity: 0.8; }


/* ==========================================================================
   18. SIDEBAR WIDGETS
   ========================================================================== */

.atl-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.atl-sidebar-widget {
    background: var(--atl-white);
    border: 1px solid var(--atl-border);
    border-radius: var(--atl-radius-lg);
    overflow: hidden;
    box-shadow: var(--atl-shadow-sm);
    margin-bottom: 28px;
    transition: box-shadow 0.22s ease;
}

.atl-sidebar-widget:last-child  { margin-bottom: 0; }
.atl-sidebar-widget:hover       { box-shadow: var(--atl-shadow-md); }

.atl-sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    margin: 0;
    font-family: var(--font-primary), sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--atl-text);
    background: var(--atl-light);
    border-bottom: 1px solid var(--atl-border);
    line-height: 1.3;
}

/* Red left accent */
.atl-sidebar-title::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 16px;
    background: var(--atl-red);
    border-radius: 2px;
    flex-shrink: 0;
}

.atl-sidebar-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.atl-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--atl-border);
    transition: background 0.18s ease;
}

.atl-sidebar-list li:last-child { border-bottom: none; }
.atl-sidebar-list li:hover      { background: var(--atl-light); }

.atl-sidebar-list li img {
    width: 54px;
    height: 42px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
    background: var(--atl-light);
    display: block;
}

.atl-sidebar-list li > div {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.atl-sidebar-list li a {
    font-family: var(--font-secondary), sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--atl-text);
    text-decoration: none;
    line-height: 1.35;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.18s ease;
}

.atl-sidebar-list li a:hover,
.atl-sidebar-list li:hover a    { color: var(--atl-text); }

.atl-sidebar-list li span {
    font-size: 11px;
    color: var(--atl-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
    display: block;
}

/* Chevron arrow */
.atl-sidebar-list li::after {
    content: '›';
    font-size: 18px;
    color: var(--atl-muted);
    flex-shrink: 0;
    line-height: 1;
    margin-left: auto;
    padding-left: 6px;
    transition: transform 0.18s ease, color 0.18s ease;
}

.atl-sidebar-list li:hover::after { color: var(--atl-text); transform: translateX(3px); }

/* No-thumbnail list items */
.atl-sidebar-list li:not(:has(img))       { gap: 0; }
.atl-sidebar-list li:not(:has(img)) > div { padding-right: 4px; }

/* Waiting lot / info strip */
.atl-waiting-lot {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--atl-white);
    border: 1px solid var(--atl-border);
    border-left: 4px solid var(--atl-amber);
    border-radius: var(--atl-radius);
    padding: 20px 24px;
    box-shadow: var(--atl-shadow-sm);
}

.atl-waiting-lot-icon { width: 44px; height: 44px; fill: var(--atl-amber); flex-shrink: 0; }

.atl-waiting-lot-text h4 {
    font-family: var(--font-primary), sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--atl-navy);
    margin: 0 0 4px;
}

.atl-waiting-lot-text p { font-size: 14px; color: var(--atl-text-mid); margin: 0; line-height: 1.5; }


/* ==========================================================================
   19. RESPONSIVE OVERRIDES
   ========================================================================== */

/* -- Tablet (≤991px) -- */
@media (max-width: 991px) {
    .section-wrap          { padding: 50px 24px; }
    .section-wrap--fullbleed { padding-top: 40px; padding-bottom: 40px; }

    /* Hero */
    .banner-section__inner { flex-direction: column; padding: 50px 24px; gap: 32px; }
    .banner-col--tagline   { order: 1; text-align: center; }
    .banner-col--card      { order: 2; flex: none; max-width: 100%; width: 100%; }
    .banner-tagline > p    { max-width: 100%; }
    .banner-stats          { justify-content: center; margin: 0 auto 28px; }
    .banner-cta-group      { justify-content: center; }
    .banner-tagline .eyebrow { justify-content: center; }

    /* Services */
    .qs-section__inner     { padding: 44px 24px; }
    .qs-grid               { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .qs-header             { flex-direction: column; align-items: flex-start; }
    .qs-view-all           { align-self: flex-start; }

    /* TSA */
    .tsa-tables-row        { grid-template-columns: 1fr; }
    .tsa-stats-row         { flex-direction: column; }

    /* FAQ */
    .faq-section__layout   { grid-template-columns: 1fr; gap: 32px; }
    .faq-section__aside    { position: static; padding-right: 0; text-align: center; }
    .faq-section__deco     { display: none; }

    .card-header-bar       { flex-direction: row; flex-wrap: wrap; }
    .image-container       { min-height: 400px; }
    .content-section       { padding: 2rem; }
    .blog-readmore-wrap    { padding: 0 24px 50px; }
    .atl-sidebar           { padding-left: 0; margin-top: 40px; }
    .atl-sidebar-widget    { margin-bottom: 20px; }
}

/* -- Mobile (≤767px) -- */
@media (max-width: 767px) {
    .section-wrap          { padding: 40px 16px; }

    /* Hero */
    .banner-section        { min-height: auto; }
    .banner-section__inner { padding: 40px 16px; }

    /* Services */
    .qs-section__inner     { padding: 36px 16px; }
    .qs-grid               { grid-template-columns: 1fr; gap: 10px; }
    .qs-card               { padding: 14px 16px; gap: 14px; }
    .qs-card__icon-wrap    { width: 40px; height: 40px; font-size: 16px; border-radius: 8px; }

    /* TSA */
    .tsa-stat-card         { min-width: 100%; }
    .tsa-section           { background-attachment: scroll; padding: 30px 10px;}

    /* FAQ */
    .faq-question          { padding: 16px 18px; font-size: 14px; }
    .faq-answer-content    { padding: 14px 18px 18px; }

    .flight-tab-btn        { font-size: 11px; padding: 10px 0; }
    .image-container       { min-height: 400px; height: auto; }
    .content-section       { padding: 1.5rem; }
    .history-section       { padding: 30px 10px; }
    .myimage3 img          { height: 184px; }
    .parking-back          { padding-top: 55px !important; background-attachment: scroll; }
    .banner766             { background-attachment: scroll; height: auto; min-height: 260px; }
    .help-width            { width: 100%; }
    .faq-list              { padding: 0; }
    .blog-readmore-wrap    { padding: 0 16px 40px; }
    .blog-feat-img-wrap    { height: 200px; }
    .blog-secondary-card .blog-thumb { width: 100px; min-width: 100px; }
    .mob-button            { display: block; text-align: center; margin-bottom: 10px; width: 100%; }
    .atl-sidebar-widget    { margin-bottom: 16px; }
    .atl-sidebar-list li img { width: 46px; height: 36px; }
    .atl-sidebar-title     { font-size: 11px; }
    .atl-modal             { grid-template-columns: 1fr; }
    .atl-modal-right       { display: none; }
    .overlay               { left: 70px; }
    .banner-stats          { width: 100%; }
    .card-quicklinks       { flex-wrap: nowrap; }
    .card-quicklink        { font-size: 9px; padding: 7px 4px; }
}

/* -- Small mobile (≤480px) -- */
@media (max-width: 480px) {
    .card-body-inner       { padding: 16px 14px; }
    .qs-grid               { grid-template-columns: 1fr; gap: 10px; }
    .tsa-stat-card         { padding: 16px 18px; }
    .stat-item             { padding: 14px 18px; }
    .stat-item .stat-num   { font-size: 22px; }
    .card-quicklinks       { gap: 4px; }
}

.zak-primary-nav li a{
	font-weight:600!important;
}

.zak-header-builder .zak-header-main-row{
	padding:unset!important;
}