/* index.php — home page styles. Extracted 2026-05-20 from inline <style> blocks. */

/* === MAIN HOMEPAGE STYLES (was lines 52-1319) === */
/* Hide site-wide nav-gutter mask on homepage - hero image extends to top. */
body > div[aria-hidden="true"][style*="height: 145px"] { display: none !important; }
/* Hide global ambient-light glows - homepage owns its own backdrop. */
.ambient-light { display: none !important; }

/* ============ HERO ============ */
.home-hero {
    position: relative;
    /* Tall enough to show the full chauffeur image AND extend behind the
       booking widget that overlaps upward. Bottom ~120px of the section
       sits underneath the booking panel after the -94px margin pull. */
    min-height: 880px;
    background: #030303;
    overflow: hidden;
    isolation: isolate;
    padding-top: 140px;
    padding-bottom: 0;
}
@media (max-width: 1024px) {
    .home-hero { min-height: 680px; }
}
@media (max-width: 768px) {
    .home-hero { padding-top: 120px; padding-bottom: 0; min-height: auto; }
}
/* Booking widget - pulled up another 2cm on top of the 2.5cm baseline →
   total ~4.5cm (≈170px). Section bg transparent so the hero image stays
   visible around/behind the panel. */
.booking-widget { padding-top: 32px; padding-bottom: 60px; margin-top: -170px; position: relative; z-index: 12; background: transparent; }
@media (max-width: 768px) {
    .booking-widget { padding-top: 24px; padding-bottom: 40px; margin-top: -70px; }
}

.home-hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.6) 30%, #000 60%);
            mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.6) 30%, #000 60%);
}
@media (max-width: 1024px) {
    .home-hero-bg-img {
        width: 100%;
        opacity: 0.35;
        -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
                mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    }
}

.home-hero-content { position: relative; z-index: 2; }

.home-hero-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: #ffffff;
    max-width: 640px;
    margin: 0 0 22px 0;
}
.home-hero-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: #D4AF37;
    letter-spacing: 0.01em;
    margin: 0 0 28px 0;
}
.home-hero-desc {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 480px;
    margin: 0 0 36px 0;
}

.home-hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ BUTTONS ============ */
.aat-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 54px;
    padding: 0 28px;
    background: linear-gradient(135deg, #D4AF37 0%, #ebd573 100%);
    color: #0a0a0a;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212,175,55,0.18);
}
.aat-btn-primary:hover {
    background: linear-gradient(135deg, #ebd573 0%, #D4AF37 100%);
    box-shadow: 0 14px 40px rgba(212,175,55,0.32);
    transform: translateY(-1px);
}
.aat-btn-primary.is-disabled,
.aat-btn-primary[disabled] {
    background: linear-gradient(135deg, rgba(212,175,55,0.35) 0%, rgba(235,213,115,0.35) 100%);
    color: rgba(0,0,0,0.55);
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.7;
    transform: none;
}
.aat-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 54px;
    padding: 0 28px;
    background: transparent;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.aat-btn-outline:hover {
    border-color: #D4AF37;
    background: rgba(212,175,55,0.06);
}

/* ============ BOOKING WIDGET ============ */
.booking-widget {
    /* No solid bg here - hero image must be visible around the panel. */
    background: transparent;
    position: relative;
    z-index: 10;
}
.booking-widget-panel {
    /* Constrained max-width so the hero image shows on the sides on wide
       displays. Dark glass bg + blur keeps form fields legible over the image. */
    max-width: 1180px;
    margin: 0 auto;
    background: rgba(8,8,8,0.78);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 26px;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
@media (max-width: 768px) { .booking-widget-panel { padding: 22px; } }

.booking-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.booking-widget-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #D4AF37;
    margin: 0;
}

.booking-tabs { display: flex; gap: 28px; }
.booking-tab {
    background: transparent;
    border: 0;
    padding: 6px 0;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s ease;
    position: relative;
}
.booking-tab:hover { color: #cbd5e1; }
.booking-tab.is-active { color: #D4AF37; }
.booking-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -8px;
    height: 2px;
    background: #D4AF37;
}

/* Form field styling for the widget */
.bw-field {
    position: relative;
    background: rgba(10,10,10,0.6);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 12px 16px;
    transition: border-color 0.2s ease, background 0.2s ease;
    /* Flex layout: label spans full width on top; icon + input share a centred row below. */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 10px;
}
.bw-field:focus-within { border-color: rgba(212,175,55,0.5); background: rgba(10,10,10,0.85); }
.bw-field-label {
    flex-basis: 100%;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #D4AF37;
    margin: 0 0 4px 0;
}
.bw-field-input,
.bw-field select {
    flex: 1 1 0;
    min-width: 0;
    background: transparent;
    border: 0;
    outline: 0;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    line-height: 1.4;
}
.bw-field-input::placeholder { color: #4b5563; }
.bw-field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 24px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 14px;
}
.bw-field select option { background: #0a0a0a; color: #fff; }
.bw-field-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #D4AF37;
}

/* ---- Scrollable time picker (mirrors AAT.TimePicker from /booking) ---- */
.aat-tp-dropdown {
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    margin-top: 8px;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.30);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.aat-tp-dropdown.hidden { display: none; }
.aat-tp-head {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(212, 175, 55, 0.10);
}
.aat-tp-col-head {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    color: #D4AF37;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.aat-tp-col-head + .aat-tp-col-head { border-left: 1px solid rgba(255, 255, 255, 0.08); }
.aat-tp-body { display: flex; height: 224px; }
.aat-tp-col {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.30) transparent;
}
.aat-tp-col + .aat-tp-col { border-left: 1px solid rgba(255, 255, 255, 0.05); }
.aat-tp-col::-webkit-scrollbar { width: 4px; }
.aat-tp-col::-webkit-scrollbar-track { background: transparent; }
.aat-tp-col::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.30); border-radius: 8px; }
.aat-tp-cell {
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    color: #d6d6d6;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.aat-tp-cell:hover { background: rgba(212, 175, 55, 0.20); color: #fff; }
.aat-tp-cell.is-active {
    background: rgba(212, 175, 55, 0.20);
    color: #D4AF37;
    font-weight: 700;
}
.aat-tp-foot {
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.5);
}
.aat-tp-confirm {
    width: 100%;
    padding: 10px;
    background: #D4AF37;
    color: #000;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.aat-tp-confirm:hover { background: #ebd573; }

/* ---- Pickup/Dropoff popular-destinations dropdown ---- */
.hp-autocomplete-wrap { position: relative; }
.hp-ac-dropdown {
    position: absolute;
    top: 100%; left: 0; right: 0;
    margin-top: 6px;
    max-height: 280px;
    overflow-y: auto;
    background: rgba(10,10,10,0.97);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.85);
    z-index: 100;
    display: none;
}
.hp-ac-dropdown.is-open { display: block; }
.hp-ac-header {
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #D4AF37;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(212,175,55,0.04);
}
.hp-ac-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background-color 0.15s ease;
}
.hp-ac-item:last-child { border-bottom: 0; }
.hp-ac-item:hover { background: rgba(212,175,55,0.12); }
.hp-ac-item-main {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}
.hp-ac-item-sec {
    color: #6b7280;
    font-size: 11px;
    margin: 2px 0 0 0;
}
.hp-ac-dropdown::-webkit-scrollbar { width: 4px; }
.hp-ac-dropdown::-webkit-scrollbar-track { background: transparent; }
.hp-ac-dropdown::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); border-radius: 8px; }

/* ============ TRUST STRIP ============ */
.trust-strip {
    background: #030303;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 14px 0;
}
.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px 56px;
}
@media (max-width: 1024px) {
    .trust-grid { gap: 24px 40px; }
}
@media (max-width: 640px) {
    .trust-grid { gap: 20px 28px; }
}
.trust-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0;
}
/* Short vertical divider sitting centrally in the gap between items. */
.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.14);
    pointer-events: none;
}
@media (max-width: 1024px) {
    .trust-item:not(:last-child)::after { right: -20px; height: 32px; }
    .trust-item:nth-child(3n)::after { display: none; }
}
@media (max-width: 640px) {
    .trust-item:not(:last-child)::after { display: none; }
}
.trust-item-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.3);
    color: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-item-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D4AF37;
    margin: 0 0 2px 0;
}
.trust-item-value {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}
.trust-item-sub {
    font-size: 10px;
    color: #6b7280;
    margin: 2px 0 0 0;
}

/* ============ SECTION TITLES ============ */
.section-title-block { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #D4AF37;
    margin: 0 0 14px 0;
    display: block;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.005em;
}
.section-divider {
    width: 80px;
    height: 2px;
    background: #D4AF37;
    margin: 18px auto 0 auto;
    opacity: 0.6;
}

/* ============ WHY AAT + HOW IT WORKS (unified map-frame) ============ */
.why-how-section {
    position: relative;
    background-color: #030303;
    background-image: url('<?= img('bg_london_roads') ?>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}
.why-how-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #030303 0%, rgba(3,3,3,0.6) 5%, rgba(3,3,3,0) 12%, rgba(3,3,3,0) 88%, rgba(3,3,3,0.6) 95%, #030303 100%);
    pointer-events: none;
    z-index: 0;
}
.why-how-section > * { position: relative; z-index: 1; }

/* Unified map-frame wraps both Why AAT and How It Works */
.section-frame {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 56px 0 36px 0;
    box-shadow: none;
}
.section-frame > * { position: relative; z-index: 1; }
@media (max-width: 768px) {
    .section-frame { padding: 36px 0; }
}

/* Section heading block (used inside the frame, no eyebrow pip) */
.frame-heading-block { text-align: center; margin-bottom: 32px; }
.frame-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 10px 0;
}
.frame-subheading {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #9ca3af;
    margin: 0;
    letter-spacing: 0.02em;
}
@media (max-width: 768px) {
    .frame-heading { font-size: 16px; letter-spacing: 0.22em; }
    .frame-subheading { font-size: 12px; }
}

/* Solid hairline gold divider between Why AAT and How It Works */
.frame-divider {
    height: 1px;
    background: rgba(212,175,55,0.45);
    margin: 48px 0 40px 0;
}
@media (max-width: 768px) {
    .frame-divider { margin: 36px 0 28px 0; }
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
}
@media (max-width: 1280px) {
    .why-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
@media (max-width: 768px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
.why-card {
    text-align: center;
    padding: 22px 12px;
    background: rgba(8,8,8,0.92);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.why-card:hover { border-color: rgba(212,175,55,0.35); transform: translateY(-2px); background: rgba(8,8,8,0.98); }
.why-card-icon {
    width: 40px; height: 40px;
    margin: 0 auto 14px auto;
    border-radius: 50%;
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.3);
    color: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-card-title {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 10px 0;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-card-desc {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.55;
    margin: 0;
    font-weight: 300;
}

/* ============ HOW IT WORKS — horizontal inline row, no glass cards ============ */
.how-strip {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 8px 0;
}
@media (max-width: 1024px) { .how-strip { grid-template-columns: repeat(2, 1fr); row-gap: 28px; } }
@media (max-width: 640px)  { .how-strip { grid-template-columns: 1fr; row-gap: 24px; } }
.how-step {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 4px 18px;
    border-right: 1px solid rgba(212,175,55,0.12);
}
.how-step:last-child { border-right: none; }
@media (max-width: 1024px) {
    .how-step:nth-child(2n) { border-right: none; }
}
@media (max-width: 640px) {
    .how-step { border-right: none; border-bottom: 1px solid rgba(212,175,55,0.12); padding: 8px 0 18px; }
    .how-step:last-child { border-bottom: none; }
}
.how-step-num {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
    letter-spacing: 0.02em;
    padding-top: 2px;
}
.how-step-body { min-width: 0; }
.how-step-icon { color: #D4AF37; margin-bottom: 8px; display: flex; }
.how-step-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 8px 0;
}
.how-step-desc {
    color: #9ca3af;
    font-size: 12px;
    line-height: 1.55;
    margin: 0;
    font-weight: 300;
}

/* Corner sparkle dots on the bottom strip */
.how-strip-wrap { position: relative; padding: 14px 4px 4px; }
.how-strip-wrap::before,
.how-strip-wrap::after,
.how-strip-wrap > .spark-tl,
.how-strip-wrap > .spark-tr {
    content: '';
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #D4AF37;
    box-shadow: 0 0 8px rgba(212,175,55,0.7);
}
.how-strip-wrap::before { left: 0; bottom: 0; }
.how-strip-wrap::after  { right: 0; bottom: 0; }
.how-strip-wrap > .spark-tl { left: 0; top: 0; }
.how-strip-wrap > .spark-tr { right: 0; top: 0; }

/* ============ AIRPORT TRANSFER INTEL ============ */
.airport-section { background: #030303; padding: 80px 0; }
.airport-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
@media (max-width: 1024px) { .airport-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .airport-grid { grid-template-columns: 1fr; } }
.airport-card {
    background: rgba(13,13,13,0.55);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.airport-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-1px); }
.airport-card-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.3);
    color: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.airport-card-name {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 6px 0;
}
.airport-card-meet { color: #cbd5e1; font-size: 12px; line-height: 1.4; margin: 0 0 4px 0; font-weight: 500; }
.airport-card-time { color: #D4AF37; font-size: 11px; font-weight: 700; margin: 0; }

/* ============ CORPORATE / PRIVATE TWO-COLUMN ============ */
.solutions-section { background: #030303; padding: 80px 0; }
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
@media (max-width: 1024px) { .solutions-grid { grid-template-columns: 1fr; } }

.solution-card {
    background: rgba(13,13,13,0.55);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
@media (max-width: 768px) { .solution-card { grid-template-columns: 1fr; } }

.solution-body { padding: 32px; }
.solution-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #D4AF37;
    margin: 0 0 22px 0;
}
.solution-bullets { list-style: none; padding: 0; margin: 0 0 28px 0; }
.solution-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 12px;
    font-weight: 400;
}
.solution-bullets li::before {
    content: "";
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.4);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
}
.solution-learn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 22px;
    background: transparent;
    color: #D4AF37;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 10px;
    transition: all 0.3s ease;
}
.solution-learn:hover { background: rgba(212,175,55,0.08); border-color: #D4AF37; color: #ffffff; }

.solution-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 320px;
}
/* Per-card focal points so the subject never gets cropped out at the panel's
   2:3 aspect. Override `background-position` per image as needed. */
.solution-img.is-private-travel { background-position: 78% center; }
.solution-img.is-corporate      { background-position: 70% center; }
@media (max-width: 768px) { .solution-img { min-height: 240px; } }

/* ============ OUR CHAUFFEUR FLEET — tabbed featured + grid ============ */
.fleet-tabs-section { background: #030303; padding: 80px 0; }
.fleet-tabs-section .section-heading {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(28px, 4vw, 44px);
    color: #ffffff;
    margin: 6px 0 0;
    line-height: 1.15;
    text-align: center;
}
.fleet-tabs-section .section-heading em,
.fleet-tabs-section .section-heading i { font-style: italic; color: #fff; }

/* ----- Tab row ----- */
.fleet-tabs-nav {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    margin: 36px 0 28px;
    border-bottom: 1px solid rgba(212,175,55,0.18);
    flex-wrap: wrap;
}
.fleet-tab {
    flex: 1 1 0;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 14px;
    background: transparent;
    border: 0;
    color: rgba(255,255,255,0.65);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease;
}
.fleet-tab:hover { color: #ffffff; }
.fleet-tab.is-active { color: #D4AF37; }
.fleet-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 2px;
    background: #D4AF37;
}
.fleet-tab-ic {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212,175,55,0.5);
    border-radius: 50%;
    color: #D4AF37;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.fleet-tab.is-active .fleet-tab-ic { border-color: #D4AF37; }
.fleet-tab:not(.is-active) .fleet-tab-ic { border-color: rgba(212,175,55,0.32); }

@media (max-width: 768px) {
    .fleet-tab { flex: 1 0 50%; min-width: 0; padding: 14px 10px; gap: 8px; font-size: 11px; letter-spacing: 0.14em; }
    .fleet-tab-ic { width: 30px; height: 30px; }
}

/* ----- Panels ----- */
.fleet-panel:not(.is-active) { display: none; }
.fleet-panel-grid {
    display: grid;
    gap: 20px;
    align-items: stretch;
}
/* 1 vehicle: featured centred, ~980px max */
.fleet-panel-grid--solo {
    grid-template-columns: minmax(0, 1fr);
    max-width: 980px;
    margin: 0 auto;
}
/* 2 vehicles: two featured cards 50/50, with a larger image area each */
.fleet-panel-grid--duo {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.fleet-panel-grid--duo .fleet-feature {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr);
    min-height: 520px;
    padding: 32px 28px 32px 36px;
}
.fleet-panel-grid--duo .fleet-feature-imgwrap { min-height: 320px; }
.fleet-panel-grid--duo .fleet-feature-imgwrap img { max-height: 420px; }
@media (max-width: 1100px) {
    .fleet-panel-grid--duo .fleet-feature-imgwrap img { max-height: 360px; }
}
/* 3 vehicles: featured + 2 stacked-tall minis filling featured height */
.fleet-panel-grid--trio {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
}
.fleet-panel-grid--trio .fleet-mini-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}
.fleet-panel-grid--trio .fleet-mini {
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.fleet-panel-grid--trio .fleet-mini-imgwrap { flex: 0 0 48%; min-height: 0; }
.fleet-panel-grid--trio .fleet-mini-imgwrap img { max-height: 200px; }
.fleet-panel-grid--trio .fleet-mini-body { flex: 1 1 auto; display: flex; flex-direction: column; gap: 8px; }
/* 4+ vehicles: featured (+ 2 minis under) on left, 2-col mini grid on right */
.fleet-panel-grid--grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
}
.fleet-panel-grid--grid .fleet-grid-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fleet-panel-grid--grid .fleet-grid-left .fleet-mini-grid {
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 980px) {
    .fleet-panel-grid--duo,
    .fleet-panel-grid--trio,
    .fleet-panel-grid--grid { grid-template-columns: minmax(0, 1fr); }
    .fleet-panel-grid--trio .fleet-mini { flex-direction: column; align-items: stretch; }
    .fleet-panel-grid--trio .fleet-mini-imgwrap { flex: 1 1 auto; min-height: 110px; }
}

/* ----- Featured card ----- */
.fleet-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: center;
    /* Mirror the car-render's studio backdrop: #000 at the edges, #2a2a2a
       spotlight where the car sits, so the image's black edges dissolve
       into the card and the whole panel reads as one scene. */
    background:
        radial-gradient(ellipse 70% 55% at 72% 58%,
            #2a2a2a 0%,
            #161616 35%,
            #050505 70%,
            #000000 100%);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 18px;
    padding: 30px 30px 30px 36px;
    color: #ffffff;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease;
    min-height: 460px;
    overflow: hidden;
}
.fleet-feature:hover { border-color: rgba(212,175,55,0.22); transform: translateY(-2px); }
.fleet-feature-body { display: flex; flex-direction: column; gap: 14px; }
.fleet-feature-eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #D4AF37;
    font-weight: 600;
}
.fleet-feature-name {
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0;
    line-height: 1.1;
    color: #ffffff;
}
.fleet-feature-desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 4px;
    max-width: 38ch;
}
.fleet-feature-spec {
    list-style: none;
    padding: 0; margin: 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fleet-feature-spec li {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}
.fleet-feature-spec li picture.aat-icon,
.fleet-feature-spec li img { color: #D4AF37; }
.fleet-feature-spec li :is(picture, svg, img) { width: 18px; height: 18px; }
.fleet-feature-cta {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 10px 18px;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.25s ease, color 0.25s ease;
}
.fleet-feature:hover .fleet-feature-cta { background: #D4AF37; color: #030303; }
.fleet-feature-imgwrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 300px;
}
.fleet-feature-imgwrap img {
    width: 100%;
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 24px 30px rgba(0,0,0,0.6));
}

@media (max-width: 720px) {
    .fleet-feature { grid-template-columns: 1fr; padding: 24px; min-height: 0; }
    .fleet-feature-imgwrap { order: -1; min-height: 180px; }
    .fleet-feature-imgwrap img { max-height: 220px; }
}

/* ----- Mini grid (right side) ----- */
.fleet-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 16px;
}
@media (max-width: 520px) { .fleet-mini-grid { grid-template-columns: 1fr; } }

.fleet-mini {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Same studio-backdrop gradient as featured, slightly tighter so the
       smaller card still feels lit. */
    background:
        radial-gradient(ellipse 75% 60% at 50% 45%,
            #242424 0%,
            #141414 40%,
            #050505 75%,
            #000000 100%);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 18px 18px 16px;
    color: #ffffff;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}
.fleet-mini-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 0 auto;
}
.fleet-mini:hover { border-color: rgba(212,175,55,0.22); transform: translateY(-2px); }
.fleet-mini-imgwrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 170px;
}
.fleet-mini-imgwrap img {
    width: 100%;
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 16px 18px rgba(0,0,0,0.55));
}
.fleet-mini-name {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #ffffff;
    margin: 6px 0 0;
    line-height: 1.2;
}
.fleet-mini-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 700;
    margin: 0;
}
.fleet-mini-meta span { display: inline-flex; align-items: center; gap: 6px; }
.fleet-mini-meta picture.aat-icon,
.fleet-mini-meta svg,
.fleet-mini-meta img { color: #D4AF37; }
.fleet-mini-cta {
    margin-top: auto;
    color: #D4AF37;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============ TESTIMONIALS + FAQ side-by-side ============ */
.reviews-faq-section { background: #030303; padding: 80px 0 100px 0; }
.reviews-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}
@media (max-width: 1024px) {
    .reviews-faq-grid { grid-template-columns: 1fr; gap: 56px; }
}
/* FAQ-only variant: reviews half removed, FAQ centred in a readable column. */
.reviews-faq-grid-faqonly {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin: 0 auto;
}
.rf-header { margin-bottom: 28px; }
.rf-header .section-eyebrow { margin: 0; }
/* ============ TRUSTPILOT BAR ============ */
.tp-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 0 0 0;
    margin-top: 20px;
}
.tp-bar-label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}
.tp-bar-stars { display: inline-flex; gap: 3px; }
.tp-bar-stars > span {
    width: 22px; height: 22px;
    background: #00b67a;
    display: inline-block;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polygon points='12,2 14.6,8.6 22,9.3 16.3,14.1 18,21.2 12,17.3 6,21.2 7.7,14.1 2,9.3 9.4,8.6' fill='%23000'/></svg>") center / contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polygon points='12,2 14.6,8.6 22,9.3 16.3,14.1 18,21.2 12,17.3 6,21.2 7.7,14.1 2,9.3 9.4,8.6' fill='%23000'/></svg>") center / contain no-repeat;
}
.tp-bar-text {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 500;
}
.tp-bar-brand {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ============ FAQ ============ */
.faq-section { background: #030303; padding: 80px 0 100px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: rgba(13,13,13,0.55);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: rgba(212,175,55,0.3); }
.faq-summary {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: #D4AF37; }
.faq-summary-icon {
    color: #D4AF37;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item[open] .faq-summary-icon { transform: rotate(180deg); }
.faq-body {
    padding: 0 22px 22px 22px;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 300;
}
.faq-footer { text-align: center; margin-top: 28px; }
.faq-footer a {
    color: #D4AF37;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(212,175,55,0.4);
    padding-bottom: 4px;
    transition: all 0.2s ease;
}
.faq-footer a:hover { color: #ffffff; border-color: #ffffff; }

/* === VEHICLE FINDER (was lines 1844-1886) === */
    .finder-section { background: #0a0a0a; padding: 80px 0 90px; position: relative; }
    .finder-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at top, rgba(212,175,55,0.06), transparent 60%); pointer-events: none; }
    .finder-wrap { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
    .finder-head { text-align: center; margin-bottom: 30px; }
    .finder-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,175,55,0.14); border: 1px solid rgba(212,175,55,0.38); border-radius: 999px; padding: 6px 18px; margin-bottom: 14px; }
    .finder-eyebrow span { color: #D4AF37; font-weight: 800; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; }
    .finder-head h2 { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 36px; line-height: 1.12; margin: 0 0 10px; }
    .finder-head h2 em { font-style: italic; background: linear-gradient(135deg, #f7e7a8, #D4AF37); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .finder-head p { color: rgba(255,255,255,0.72); font-size: 15px; max-width: 580px; margin: 0 auto; line-height: 1.55; }
    @media (max-width: 720px) { .finder-head h2 { font-size: 26px; } }

    .finder-panel { background: rgba(13,13,13,0.6); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 32px 28px; backdrop-filter: blur(6px); }
    .finder-progress { display: flex; gap: 5px; justify-content: center; margin-bottom: 22px; }
    .finder-dot { width: 28px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.14); }
    .finder-dot.is-on { background: #D4AF37; }

    .finder-step { display: none; }
    .finder-step.is-active { display: block; }
    .finder-step h3 { color: #fff; font-size: 18px; font-weight: 700; margin: 0 0 18px; text-align: center; letter-spacing: 0.01em; }
    .finder-opts { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
    .finder-opt { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px 12px; color: #fff; font-size: 13.5px; font-weight: 600; cursor: pointer; text-align: center; transition: all 0.18s ease; }
    .finder-opt:hover { border-color: #D4AF37; color: #D4AF37; background: rgba(212,175,55,0.04); }

    .finder-results { display: none; }
    .finder-results.is-active { display: block; }
    .finder-results h3 { color: #fff; font-size: 18px; font-weight: 700; margin: 0 0 6px; text-align: center; }
    .finder-results .sub { color: rgba(255,255,255,0.65); font-size: 13px; text-align: center; margin: 0 0 22px; }
    .finder-cards { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
    .finder-card { background: linear-gradient(180deg, #1a1a1a, #050505); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 18px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .finder-card img { max-height: 110px; width: auto; object-fit: contain; }
    .finder-card-name { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 15px; line-height: 1.2; }
    .finder-card-meta { color: rgba(255,255,255,0.62); font-size: 12px; letter-spacing: 0.04em; }
    .finder-card-badge { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #D4AF37; font-weight: 700; }
    .finder-card-cta { display: inline-flex; gap: 6px; align-items: center; padding: 8px 14px; background: #D4AF37; color: #000; border-radius: 999px; font-weight: 700; font-size: 12px; text-decoration: none; margin-top: 4px; }
    .finder-card-cta:hover { background: #f7e7a8; }

    .finder-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 26px; }
    .finder-action { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.72); font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer; background: transparent; border: 0; padding: 8px 4px; }
    .finder-action:hover { color: #D4AF37; }
    .finder-action.is-primary { padding: 9px 18px; border: 1px solid #D4AF37; border-radius: 999px; color: #D4AF37; }
    .finder-action.is-primary:hover { background: #D4AF37; color: #000; }

/* === SERVICES TABS (was lines 2234-2276) === */
    .services-tabs-section { background: #050505; padding: 80px 0 90px; }
    .services-tabs-section .section-heading { text-align: center; margin-bottom: 18px; }
    .services-tabs-section .section-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,175,55,0.14); border: 1px solid rgba(212,175,55,0.38); border-radius: 999px; padding: 6px 18px; margin-bottom: 14px; color: #D4AF37; font-weight: 800; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; }
    .services-tabs-section h2 { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 36px; line-height: 1.12; margin: 0 0 8px; }
    .services-tabs-section h2 em { font-style: italic; background: linear-gradient(135deg, #f7e7a8, #D4AF37); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .services-tabs-section .section-lede { color: rgba(255,255,255,0.7); font-size: 15px; max-width: 640px; margin: 0 auto 28px; line-height: 1.55; text-align: center; }
    @media (max-width: 720px) { .services-tabs-section h2 { font-size: 26px; } }

    .stab-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 28px; }
    .stab-tab { background: transparent; border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.85); padding: 10px 22px; border-radius: 999px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.18s ease; }
    .stab-tab:hover { border-color: #D4AF37; color: #D4AF37; }
    .stab-tab.is-active { background: #D4AF37; color: #000; border-color: #D4AF37; }

    .stab-pane { display: none; }
    .stab-pane.is-active { display: block; }
    .stab-eyebrow { text-align: center; color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }

    .stab-grid {
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(4, 1fr);
        max-width: 1180px;
        margin: 0 auto;
        justify-content: center;
    }
    @media (max-width: 1100px) { .stab-grid { grid-template-columns: repeat(3, 1fr); max-width: 880px; } }
    @media (max-width: 760px)  { .stab-grid { grid-template-columns: repeat(2, 1fr); max-width: 580px; } }
    @media (max-width: 480px)  { .stab-grid { grid-template-columns: 1fr; max-width: 320px; } }
    .stab-card { position: relative; display: block; border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; text-decoration: none; isolation: isolate; transition: transform 0.25s ease; border: 1px solid rgba(255,255,255,0.08); }
    .stab-card:hover { transform: translateY(-3px); }
    .stab-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; z-index: -2; }
    .stab-card:hover .stab-card-bg { transform: scale(1.06); }
    .stab-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.92) 100%); z-index: -1; }
    .stab-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 18px 20px; }
    .stab-card-name { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 17px; line-height: 1.18; margin: 0 0 6px; }
    .stab-card-desc { color: rgba(255,255,255,0.78); font-size: 12.5px; line-height: 1.45; margin: 0 0 10px; }
    .stab-card-cta { color: #D4AF37; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 4px; }
    .stab-card:hover .stab-card-cta { color: #f7e7a8; }
    .stab-calendar-strip { text-align: center; margin-top: 22px; }
    .stab-calendar-link { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; background: transparent; border: 1px solid #D4AF37; color: #D4AF37; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-decoration: none; transition: all 0.2s ease; }
    .stab-calendar-link:hover { background: #D4AF37; color: #000; }
