/* --- CRITICAL HEADER STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* --- Z-INDEX LAYER FIX --- */
.overlay {
    z-index: 1100;
}

.site-header {
    z-index: 1101;
}

/* SETTINGS DRAWER */
.settings-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    z-index: 1200;
    transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 40px 24px;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.settings-drawer.open {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.drawer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--accent-color);
}

.close-drawer {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.control-group h4 {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.mode-toggle-box {
    display: flex;
    background: var(--bg-tertiary);
    padding: 4px;
    border-radius: 10px;
}

.mode-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.2s;
}

.mode-btn.active {
    background: var(--bg-card);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ui-ico {
    width: 16px;
    height: 16px;
    display: inline-block;
    flex-shrink: 0;
    opacity: .9
}

.dropdown-toggle .chev {
    width: 18px;
    height: 18px;
    opacity: .7;
    transition: transform .2s ease
}

.nav-item.open .dropdown-toggle .chev {
    transform: rotate(180deg)
}

.accent-grid {
    display: flex;
    gap: 15px;
}

.accent-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.accent-btn:hover {
    transform: scale(1.1);
}

.accent-btn.selected {
    border-color: var(--text-primary);
    transform: scale(1.15);
    box-shadow: 0 0 15px var(--accent-bg);
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border-bottom: 1px solid var(--border-color);
    height: 74px;
    transition: background .4s ease, border-color .4s ease, height .3s ease;
}

.site-header.scrolled {
    height: 64px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .005em;
    color: var(--text-primary);
    text-decoration: none;
    z-index: 1002;
    transition: color .25s ease;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent-color, #D4AF37) 0%, color-mix(in srgb, var(--accent-color, #D4AF37) 65%, #000) 100%);
    color: #0B0B0D;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -.02em;
    box-shadow: 0 6px 16px color-mix(in srgb, var(--accent-color, #D4AF37) 32%, transparent), inset 0 1px 0 rgba(255, 255, 255, .35);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

html[data-accent="green"] .logo-mark {
    color: #fff
}

html[data-accent="orange"] .logo-mark {
    color: #fff
}

.logo:hover .logo-mark {
    transform: rotate(-8deg) scale(1.06);
}

.logo-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text b {
    font-weight: 600;
    font-size: 17px;
}

.logo-text small {
    font-size: 9px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 3px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.logo:hover {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-link,
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 999px;
    transition: color .2s, background .2s;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover,
.nav-item.open .dropdown-toggle {
    color: var(--text-primary);
    background: var(--hover-bg);
}

.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1005;
}

@media (min-width: 901px) {
    .has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-link {
    display: block;
    padding: 10px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
}

.dropdown-link:hover {
    background: var(--hover-bg);
    color: var(--accent-color);
}

.gear-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: 0.35s cubic-bezier(.16, 1, .3, 1);
    margin-left: 8px;
}

.gear-btn:hover {
    background: var(--hover-bg);
    color: var(--accent-color);
    transform: rotate(90deg);
    border-color: var(--accent-color);
}

/* Book Now pill */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--accent-color, #D4AF37) 0%, color-mix(in srgb, var(--accent-color, #D4AF37) 65%, #000) 100%) !important;
    color: #0B0B0D !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: .02em;
    box-shadow: 0 6px 18px color-mix(in srgb, var(--accent-color, #D4AF37) 32%, transparent);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--accent-color, #D4AF37) 48%, transparent);
}

html[data-accent="green"] .nav-cta,
html[data-accent="orange"] .nav-cta {
    color: #fff !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 30px;
    transition: opacity .25s ease;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile close button */
.mobile-close {
    display: none;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.mobile-close:hover {
    background: var(--hover-bg);
    color: var(--accent-color);
}

.mobile-close svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 900px) {
    .mobile-toggle {
        display: flex;
    }

    .mobile-close {
        display: flex;
    }

    .logo-text small {
        display: none;
    }

    .logo-text b {
        font-size: 15px;
    }

    .logo-mark {
        width: 30px;
        height: 30px;
        font-size: 17px;
    }

    .header-container {
        padding: 0 18px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 40px;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--border-color);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link,
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        font-size: 17px;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        background: var(--bg-tertiary);
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 5px;
        border-radius: 12px;
        padding: 8px;
        margin-bottom: 8px;
    }

    .nav-item.open .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .nav-menu .gear-btn {
        display: none;
    }

    /* Hide hamburger when menu open so only the in-drawer X remains (no double X) */
    body.menu-open .mobile-toggle {
        opacity: 0;
        pointer-events: none;
    }

    body.menu-open .gear-btn {
        opacity: 0;
        pointer-events: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================================
       SITE-WIDE WHATSAPP FLOATING BUTTON
       ============================================ */
.wa-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1030;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
    animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.wa-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: waRing 2.5s ease-out infinite;
}

@keyframes waFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes waRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .wa-float {
        width: 54px;
        height: 54px;
        bottom: 16px;
        left: 16px;
    }

    .wa-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Hide legacy VIP request placeholder cards (replaced by inline booker) */
.booking-widget-wrapper.fake-booking,
.vip-request-card {
    display: none !important;
}

.hero-section .booking-widget-wrapper {
    display: flex !important;
}

.site-footer {
    position: relative;
    z-index: 10;
    padding: 72px 0 28px;
    background: linear-gradient(180deg, #0B0B0D 0%, #050506 100%);
    color: #fff;
    width: 100%;
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--accent-color, #D4AF37) 55%, transparent) 50%, transparent 100%);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Top brand rail */
.footer-brand-rail {
    display: grid;
    grid-template-columns: 1.3fr auto;
    align-items: center;
    gap: 32px;
    padding-bottom: 40px;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
}

.footer-brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent-color, #D4AF37) 0%, color-mix(in srgb, var(--accent-color, #D4AF37) 65%, #000) 100%);
    color: #0B0B0D;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 26px;
    box-shadow: 0 8px 22px color-mix(in srgb, var(--accent-color, #D4AF37) 32%, transparent), inset 0 1px 0 rgba(255, 255, 255, .3);
}

html[data-accent="green"] .footer-brand-mark,
html[data-accent="orange"] .footer-brand-mark {
    color: #fff;
}

.footer-brand-text b {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}

.footer-brand-text span {
    display: block;
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-top: 6px;
    font-weight: 500;
}

.footer-brand-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-brand-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s;
}

.footer-brand-cta a.primary {
    background: linear-gradient(135deg, var(--accent-color, #D4AF37), color-mix(in srgb, var(--accent-color, #D4AF37) 65%, #000));
    color: #0B0B0D;
    box-shadow: 0 8px 22px color-mix(in srgb, var(--accent-color, #D4AF37) 32%, transparent);
}

html[data-accent="green"] .footer-brand-cta a.primary,
html[data-accent="orange"] .footer-brand-cta a.primary {
    color: #fff;
}

.footer-brand-cta a.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px color-mix(in srgb, var(--accent-color, #D4AF37) 48%, transparent);
}

.footer-brand-cta a.ghost {
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
}

.footer-brand-cta a.ghost:hover {
    border-color: var(--accent-color, #D4AF37);
    color: var(--accent-color, #D4AF37);
}

.footer-brand-cta svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .footer-brand-rail {
        grid-template-columns: 1fr;
        text-align: left;
        padding-bottom: 32px;
        margin-bottom: 36px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 44px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-color, #D4AF37);
    margin-bottom: 22px;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a:not(.social-icon):not(.footer-cta-btn) {
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: color .25s ease, transform .25s ease;
}

.footer-section a:not(.social-icon):not(.footer-cta-btn):hover {
    color: var(--accent-color, #D4AF37);
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-color, #D4AF37);
    flex-shrink: 0;
}

.footer-contact-item a {
    margin: 0;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact-item:hover a {
    color: var(--accent-color, #D4AF37);
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-color, #D4AF37), #b8941f);
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, .85);
    transition: all 0.35s cubic-bezier(.16, 1, .3, 1);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--accent-color, #D4AF37), color-mix(in srgb, var(--accent-color, #D4AF37) 65%, #000));
    color: #0B0B0D;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-color, #D4AF37) 38%, transparent);
}

html[data-accent="green"] .social-icon:hover,
html[data-accent="orange"] .social-icon:hover {
    color: #fff;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-bottom a {
    color: var(--accent-color, #D4AF37);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.service-areas {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

.vip-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vip-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.vip-modal-card {
    background: #0a0a0a;
    border: 1px solid var(--accent-color, #D4AF37);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

.vip-modal-overlay.active .vip-modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
}

.modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--accent-color, #D4AF37);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color, #D4AF37);
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.modal-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-call {
    background: linear-gradient(135deg, #00C853, #00E676);
    color: #fff;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 200, 83, 0.4);
}

.btn-text {
    background: linear-gradient(135deg, #2979FF, #448AFF);
    color: #fff;
}

.btn-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(41, 121, 255, 0.4);
}

.btn-email {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Light theme fix: keep email button readable */
[data-theme="light"] .btn-email {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.18);
    color: #111;
}

[data-theme="light"] .btn-email:hover {
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}


.btn-email:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-color, #D4AF37);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .site-footer {
        padding: 50px 0 25px;
    }

    .footer-container {
        padding: 0 16px;
    }

    .footer-section h4 {
        font-size: 17px;
    }

    .social-row {
        justify-content: center;
    }
}

.content-section {
    border-left: 3px solid #c8a96a;
    padding-left: 24px;
    margin-bottom: 40px;
}

.article-hero {
    border-radius: 20px;
}

.seo-article h2 {
    margin-bottom: 18px;
}

.content-section ul li {
    margin-bottom: 12px;
}

.article-cta-final {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 35px;
}

/* ===== HEADER IMPROVEMENT ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    width: 110px !important;
    height: auto !important;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* NAV spacing */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

/* Links */
.nav-link,
.dropdown-toggle {
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #eaeaea;
    transition: all 0.25s ease;
}

.nav-link:hover,
.dropdown-toggle:hover {
    color: #ffffff;
    opacity: 0.85;
}

/* CTA button */
.nav-cta {
    background: linear-gradient(135deg, #d4af37, #b88a2a);
    padding: 8px 14px;
    border-radius: 8px;
    color: #111 !important;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
    transition: transform 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
}

/* Dropdown */
.dropdown-menu {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Mobile button */
.mobile-toggle span {
    background: #fff;
    height: 2px;
    border-radius: 2px;
}

/* Gear button */
.gear-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 8px;
    transition: all 0.25s ease;
}

.gear-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(15deg);
}

/* Verified Blue Badge — Google-indexable, WCAG-compliant */
.bhlr-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    line-height: 1
}

.bhlr-verified-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.bhlr-verified-icon svg {
    display: block
}

.bhlr-verified-icon circle {
    fill: #1D9BF0
}

.bhlr-verified-icon path {
    fill: #FFFFFF;
    stroke: #FFFFFF;
    stroke-width: 0.8
}

.bhlr-verified.is-inline {
    font-size: 14px;
    color: inherit
}

.bhlr-verified.is-inline .bhlr-verified-icon {
    width: 18px;
    height: 18px
}

.bhlr-verified.is-compact .bhlr-verified-icon {
    width: 16px;
    height: 16px
}

.bhlr-verified.is-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(29, 155, 240, 0.08);
    border: 1px solid rgba(29, 155, 240, 0.3);
    border-radius: 999px;
    font-size: 13px;
    color: #1D9BF0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700
}

.bhlr-verified.is-hero .bhlr-verified-icon {
    width: 20px;
    height: 20px
}

[data-theme="dark"] .bhlr-verified.is-hero,
.bhlr-verified.is-hero {
    background: rgba(29, 155, 240, 0.12);
    color: #5BB8F5
}

.bhlr-verified.is-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.02em
}

.bhlr-verified.is-trust .bhlr-verified-icon {
    width: 18px;
    height: 18px
}

.bhlr-verified.is-trust a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s
}

.bhlr-verified.is-trust a:hover {
    color: #E8C558
}

[data-theme="light"] .bhlr-verified.is-trust {
    color: rgba(10, 10, 10, 0.75)
}

[data-theme="light"] .bhlr-verified.is-trust a {
    color: #8B6914
}

@media (max-width: 600px) {
    .bhlr-verified.is-trust {
        font-size: 12px
    }

    .bhlr-verified.is-hero {
        font-size: 11px;
        padding: 6px 14px
    }
}

/* ===== MODERN LUXURY FOOTER RE-DESIGN ===== */

.site-footer {
    background: radial-gradient(circle at top, #111 0%, #050505 60%, #000 100%);
    color: #eaeaea;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Container spacing */
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BRAND ROW ===== */
.footer-brand-rail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img {
    width: 170px !important;
    transition: 0.3s ease;
}

.footer-brand img:hover {
    transform: scale(1.05);
}

/* CTA buttons cleaner layout */
.footer-brand-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-brand-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    transition: 0.25s ease;
}

/* Primary CTA */
.footer-brand-cta a.primary {
    background: linear-gradient(135deg, #d4af37, #b88a2a);
    color: #111;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.footer-brand-cta a.primary:hover {
    transform: translateY(-2px);
}

/* Ghost CTA */
.footer-brand-cta a.ghost {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.footer-brand-cta a.ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ===== GRID CLEAN LAYOUT ===== */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    padding-top: 40px;
}

/* Section styling */
.footer-section h4 {
    font-size: 14px;
    margin-bottom: 14px;
    color: #fff;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-section h4::after {
    content: "";
    width: 32px;
    height: 2px;
    background: #d4af37;
    display: block;
    margin-top: 6px;
}

/* Links */
.footer-section a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 7px 0;
    transition: 0.2s ease;
}

.footer-section a:hover {
    color: #fff;
    transform: translateX(4px);
}

/* Contact items */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    font-size: 13px;
}

/* Social */
.social-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: 0.25s ease;
}

.social-icon:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: #d4af37;
    transform: translateY(-3px);
}

/* ===== BOTTOM SECTION ===== */
.footer-bottom {
    margin-top: 50px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
}

/* ========================================
   BEST CAR SERVICE LAX TO BEVERLY HILLS
   MEGA SEO LANDING PAGE
   Light theme overrides + floating bar
   ======================================== */

:root {
    --gold: #D4AF37;
    --gold-light: #E8D48B;
    --gray-light: rgba(255, 255, 255, 0.75);
    --gray-muted: rgba(255, 255, 255, 0.5);
    --black: var(--bg-primary, #0a0a0a);
    --white: var(--text-primary, #fff);
}

html[data-theme="light"] body {
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

html[data-theme="light"] .floating-bar {
    background: rgba(255, 255, 255, 0.92) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18) !important;
}

html[data-theme="light"] .floating-btn.email {
    background: #fff !important;
    color: #D93025 !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
}

html[data-theme="light"] .floating-btn.call {
    filter: saturate(1.05);
}

html[data-theme="light"] .content-block {
    background: rgba(0, 0, 0, 0.025);
    border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .content-block h3 {
    color: var(--text-primary);
}

html[data-theme="light"] .content-block p,
html[data-theme="light"] .content-block li {
    color: var(--text-secondary, #555);
}

html[data-theme="light"] .stat-card {
    background: rgba(0, 0, 0, 0.025);
    border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .stat-label {
    color: var(--text-secondary, #666);
}

html[data-theme="light"] .hero-desc {
    color: var(--text-secondary, #555);
}

html[data-theme="light"] .faq-item {
    border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .faq-question {
    color: var(--text-primary);
}

html[data-theme="light"] .faq-answer {
    color: var(--text-secondary, #555);
}

html[data-theme="light"] .faq-toggle {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

html[data-theme="light"] .related-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
    color: var(--text-primary);
}

html[data-theme="light"] .related-card:hover {
    background: rgba(212, 175, 55, 0.04);
    border-color: rgba(212, 175, 55, 0.2);
}

html[data-theme="light"] .hotel-pill {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--text-secondary, #555);
}

html[data-theme="light"] .hotel-pill:hover {
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--text-primary);
}

html[data-theme="light"] .testimonial-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .testimonial-text {
    color: var(--text-secondary, #555);
}

html[data-theme="light"] .pricing-row {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .step-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.route-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 25% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* HERO */
.hero {
    padding: 100px 0 60px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 24px;
}

.badge-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.badge-icon {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 7vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-gradient {
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html[data-theme="light"] .title-gradient {
    background: linear-gradient(135deg, #111 0%, #8B7A2E 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray-light);
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-desc strong {
    color: var(--white);
    font-weight: 500;
}

html[data-theme="light"] .hero-desc strong {
    color: var(--text-primary);
}

/* ROUTE STATS */
.route-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
}

.stat-card {
    padding: 20px 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-muted);
    margin-bottom: 8px;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

/* SECTIONS */
.section {
    padding: 60px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
    text-align: center;
}

.section-sub {
    text-align: center;
    font-size: 16px;
    color: var(--gray-light);
    max-width: 700px;
    margin: -10px auto 40px;
    line-height: 1.7;
}

/* CONTENT BLOCKS */
.content-block {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.content-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.content-block p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 16px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block ul {
    list-style: none;
    padding: 0;
}

.content-block li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: var(--gray-light);
}

.content-block li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.content-block a {
    color: var(--gold);
    text-decoration: none;
}

.content-block a:hover {
    text-decoration: underline;
}

/* DIFFERENTIATORS GRID */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.diff-card {
    padding: 28px 24px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s;
}

.diff-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.12);
}

html[data-theme="light"] .diff-card {
    background: rgba(212, 175, 55, 0.03);
    border-color: rgba(212, 175, 55, 0.2);
}

html[data-theme="light"] .diff-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.diff-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    margin-bottom: 14px;
}

.diff-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

html[data-theme="light"] .diff-title {
    color: var(--text-primary);
}

.diff-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--gray-light);
    margin: 0;
}

html[data-theme="light"] .diff-text {
    color: var(--text-secondary, #666);
}

/* PRICING TABLE */
.pricing-table {
    max-width: 700px;
    margin: 0 auto 40px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 10px;
    transition: all 0.3s;
}

.pricing-row:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.pricing-vehicle {
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
}

html[data-theme="light"] .pricing-vehicle {
    color: var(--text-primary);
}

.pricing-capacity {
    font-size: 13px;
    color: var(--gray-muted);
}

html[data-theme="light"] .pricing-capacity {
    color: var(--text-secondary, #888);
}

.pricing-price {
    font-weight: 700;
    color: var(--gold);
    font-size: 17px;
}

/* STEP CARDS */
.steps-grid {
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 14px;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-weight: 700;
    font-size: 16px;
    color: var(--gold);
}

.step-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 6px 0;
}

html[data-theme="light"] .step-content h4 {
    color: var(--text-primary);
}

.step-content p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--gray-light);
    margin: 0;
}

html[data-theme="light"] .step-content p {
    color: var(--text-secondary, #666);
}

/* FLEET SHOWCASE */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.fleet-card {
    text-align: center;
    padding: 28px 20px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s;
}

.fleet-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

html[data-theme="light"] .fleet-card {
    background: rgba(212, 175, 55, 0.03);
    border-color: rgba(212, 175, 55, 0.2);
}

html[data-theme="light"] .fleet-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.fleet-badge {
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.12);
    border-radius: 20px;
}

.fleet-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 6px 0;
}

html[data-theme="light"] .fleet-name {
    color: var(--text-primary);
}

.fleet-specs {
    font-size: 13px;
    color: var(--gray-muted);
    margin: 0 0 10px 0;
}

html[data-theme="light"] .fleet-specs {
    color: var(--text-secondary, #888);
}

.fleet-desc {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}

html[data-theme="light"] .fleet-desc {
    color: var(--text-secondary, #666);
}

/* HOTEL PILLS */
.hotel-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.hotel-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--gray-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
}

.hotel-pill:hover {
    border-color: var(--gold);
    color: var(--white);
    background: rgba(212, 175, 55, 0.08);
}

.hotel-pill svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

/* TESTIMONIALS */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.testimonial-card {
    padding: 28px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-light);
    margin: 0 0 14px 0;
    font-style: italic;
}

.testimonial-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

html[data-theme="light"] .testimonial-author {
    color: var(--text-primary);
}

.testimonial-meta {
    font-size: 12px;
    color: var(--gray-muted);
}

html[data-theme="light"] .testimonial-meta {
    color: var(--text-secondary, #888);
}

/* FINAL CTA */
.final-cta {
    text-align: center;
    padding: 60px 20px;
    margin: 40px 0 0;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #000;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 56px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

html[data-theme="light"] .btn-secondary {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(212, 175, 55, 0.4);
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    background: rgba(0, 200, 83, 0.12);
    color: #00C853;
    border: 1px solid rgba(0, 200, 83, 0.3);
    transition: all 0.3s;
}

.btn-call:hover {
    background: rgba(0, 200, 83, 0.2);
    border-color: #00C853;
    transform: translateY(-2px);
}

.btn-primary svg,
.btn-secondary svg,
.btn-call svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--gold);
    transition: all 0.3s ease;
}

.faq-toggle::before {
    width: 12px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 12px;
}

details[open] .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 16px 0 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-light);
}

.faq-answer a {
    color: var(--gold);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* RELATED ROUTES */
.related-routes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.related-card {
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.related-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
}

.related-card h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-light);
    margin: 0;
}

/* FLOATING BAR */
.floating-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 100px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-btn.call {
    background: linear-gradient(135deg, #00C853, #00E676);
    color: #fff;
}

.floating-btn.call:hover {
    transform: translateY(-2px);
}

.floating-btn.email {
    background: #fff;
    color: #D93025;
}

.floating-btn.email:hover {
    transform: translateY(-2px);
}

.floating-btn svg {
    width: 16px;
    height: 16px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .route-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        width: 100%;
        max-width: 300px;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cta-row {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary,
    .btn-call {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .floating-bar {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
    }

    .floating-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .hero {
        padding: 70px 0 30px;
    }

    .hero-title {
        font-size: 30px;
    }
}

html {
    scroll-behavior: smooth;
}


/* ========================================
   BEVERLY HILLS AIRPORT SERVICE - MEGA LANDING PAGE
   Ultra-Luxury Design - Matches Homepage
   ======================================== */

.lbc-wrap {
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

/* ===== VERIFIED BADGE ===== */
.lbc-verified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
}

.lbc-verified-name {
    font-weight: 700;
    color: var(--accent-color, #D4AF37);
    text-decoration: none;
}

.lbc-verified-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #1877F2;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.lbc-verified-check svg {
    width: 12px;
    height: 12px;
    color: #fff;
}

.lbc-verified-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    backdrop-filter: blur(12px);
    transition: all 0.25s cubic-bezier(.25, .8, .25, 1);
    z-index: 100;
}

[data-theme="light"] .lbc-verified-tooltip {
    background: rgba(255, 255, 255, 0.96);
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lbc-verified-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.92);
}

[data-theme="light"] .lbc-verified-tooltip::after {
    border-top-color: rgba(255, 255, 255, 0.96);
}

.lbc-verified:hover .lbc-verified-tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
}

/* ===== HERO ===== */
.lbc-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 140px 20px 80px;
    overflow: hidden;
}

.lbc-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.lbc-hero-glow--left {
    top: -250px;
    left: -250px;
    background: rgba(212, 175, 55, 0.3);
}

.lbc-hero-glow--right {
    bottom: -250px;
    right: -250px;
    background: rgba(50, 100, 200, 0.15);
}

[data-theme="light"] .lbc-hero-glow--left {
    background: rgba(212, 175, 55, 0.15);
}

[data-theme="light"] .lbc-hero-glow--right {
    background: rgba(50, 100, 200, 0.08);
}

.lbc-hero-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color, #D4AF37);
    margin-bottom: 24px;
    font-weight: 600;
}

.lbc-hero-label svg {
    width: 16px;
    height: 16px;
}

.lbc-h1 {
    position: relative;
    z-index: 1;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 600;
    line-height: 1.08;
    margin: 0 0 16px 0;
    max-width: 900px;
}

[data-theme="dark"] .lbc-h1 {
    background: linear-gradient(135deg, #fff 30%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .lbc-h1 {
    background: linear-gradient(135deg, #000 30%, rgba(0, 0, 0, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lbc-h1 em {
    font-style: normal;
    -webkit-text-fill-color: var(--accent-color, #D4AF37);
}

.lbc-hero-sub {
    position: relative;
    z-index: 1;
    font-size: clamp(15px, 2.5vw, 18px);
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 750px;
    line-height: 1.7;
    margin: 0 auto 12px;
}

.lbc-hero-sub strong {
    color: var(--text-primary);
    font-weight: 500;
}

.lbc-powered {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

/* ===== CTA ROW ===== */
.lbc-cta-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.lbc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.lbc-cta--primary {
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #000;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lbc-cta--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 56px rgba(212, 175, 55, 0.4);
}

.lbc-cta--secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

[data-theme="light"] .lbc-cta--secondary {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.lbc-cta--secondary:hover {
    border-color: var(--accent-color, #D4AF37);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.lbc-cta--call {
    background: rgba(0, 200, 83, 0.12);
    color: #00C853;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.lbc-cta--call:hover {
    background: rgba(0, 200, 83, 0.2);
    border-color: #00C853;
    transform: translateY(-2px);
}

.lbc-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.lbc-hero-chips {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.lbc-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 12px;
    color: var(--text-secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
}

.lbc-hero-chip svg {
    width: 14px;
    height: 14px;
    color: var(--accent-color, #D4AF37);
}

/* ===== SECTIONS ===== */
.lbc-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.lbc-section--alt {
    background: rgba(255, 255, 255, 0.02);
}

[data-theme="light"] .lbc-section--alt {
    background: rgba(0, 0, 0, 0.015);
}

.lbc-section--full {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.lbc-section--full>* {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.lbc-h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.lbc-h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.lbc-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color, #D4AF37);
    margin-bottom: 12px;
}

.lbc-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0 0 20px 0;
}

.lbc-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.lbc-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.lbc-section-sub {
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--text-secondary);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== GRID CARDS ===== */
.lbc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lbc-card {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

[data-theme="light"] .lbc-card {
    background: rgba(0, 0, 0, 0.025);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.lbc-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color, #D4AF37);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.12);
}

[data-theme="light"] .lbc-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.lbc-card-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-color, #D4AF37);
    margin-bottom: 16px;
}

.lbc-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}

.lbc-card-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== TWO COLUMN LAYOUT ===== */
.lbc-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.lbc-two-col--reverse {
    direction: rtl;
}

.lbc-two-col--reverse>* {
    direction: ltr;
}

/* ===== FLEET SECTION ===== */
.lbc-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lbc-fleet-card {
    text-align: center;
    padding: 24px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    transition: all 0.4s;
}

[data-theme="light"] .lbc-fleet-card {
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.lbc-fleet-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color, #D4AF37);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

[data-theme="light"] .lbc-fleet-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.lbc-fleet-badge {
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color, #D4AF37);
    background: rgba(212, 175, 55, 0.12);
    border-radius: 20px;
}

.lbc-fleet-img {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.lbc-fleet-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    transition: transform 0.5s;
}

[data-theme="light"] .lbc-fleet-img img {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.lbc-fleet-card:hover .lbc-fleet-img img {
    transform: scale(1.06);
}

.lbc-fleet-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px 0;
}

.lbc-fleet-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ===== AREAS SERVED ===== */
.lbc-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.lbc-area-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--text-secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
}

.lbc-area-pill:hover {
    border-color: var(--accent-color, #D4AF37);
    color: var(--text-primary);
    background: rgba(212, 175, 55, 0.08);
}

.lbc-area-pill svg {
    width: 14px;
    height: 14px;
    color: var(--accent-color, #D4AF37);
}

/* ===== WHY SECTION ===== */
.lbc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lbc-why-card {
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    transition: all 0.4s;
}

[data-theme="light"] .lbc-why-card {
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.lbc-why-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color, #D4AF37);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

[data-theme="light"] .lbc-why-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.lbc-why-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-color, #D4AF37);
    margin-bottom: 16px;
}

.lbc-why-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}

.lbc-why-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
    flex-grow: 1;
}

/* ===== FAQ ===== */
.lbc-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.lbc-faq-item {
    margin-bottom: 14px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(212, 175, 55, 0.04);
    transition: all 0.3s;
}

[data-theme="light"] .lbc-faq-item {
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.03);
}

.lbc-faq-item:hover {
    border-color: var(--accent-color, #D4AF37);
    background: rgba(212, 175, 55, 0.08);
}

.lbc-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 15px;
    font-family: inherit;
    gap: 12px;
}

.lbc-faq-q:hover {
    color: var(--accent-color, #D4AF37);
}

.lbc-faq-toggle {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color, #D4AF37);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.lbc-faq-item.open .lbc-faq-toggle {
    transform: rotate(180deg);
}

.lbc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.lbc-faq-item.open .lbc-faq-a {
    max-height: 600px;
    padding: 0 20px 16px 20px;
}

.lbc-faq-a-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.lbc-faq-a-text a {
    color: var(--accent-color, #D4AF37);
    text-decoration: none;
}

/* ===== MID CTA ===== */
.lbc-mid-cta {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

[data-theme="light"] .lbc-mid-cta {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.04) 0%, rgba(212, 175, 55, 0.01) 100%);
}

.lbc-mid-cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}

.lbc-mid-cta-sub {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0 0 28px 0;
}

/* ===== INTERNAL LINKS ===== */
.lbc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.lbc-link {
    padding: 10px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.lbc-link:hover {
    border-color: var(--accent-color, #D4AF37);
    color: var(--text-primary);
    background: rgba(212, 175, 55, 0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .lbc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lbc-fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lbc-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lbc-two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lbc-two-col--reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .lbc-hero {
        padding: 120px 16px 60px;
    }

    .lbc-section {
        padding: 60px 16px;
    }

    .lbc-grid {
        grid-template-columns: 1fr;
    }

    .lbc-fleet-grid {
        grid-template-columns: 1fr;
    }

    .lbc-why-grid {
        grid-template-columns: 1fr;
    }

    .lbc-cta-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .lbc-cta {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .lbc-hero-chips {
        gap: 8px;
    }

    .lbc-hero-chip {
        padding: 8px 12px;
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .lbc-hero {
        padding: 100px 12px 50px;
    }

    .lbc-h1 {
        font-size: 30px;
    }

    .lbc-card {
        padding: 22px 18px;
    }
}

.about-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
    background:
        linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .75)),
        url("../about-us.png") center/cover;
}

.hero-content {
    max-width: 850px;
}

.hero-label {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    margin: 20px 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.trust-cards {
    max-width: 1200px;
    margin: -70px auto 100px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-card,
.service-item {
    background: #111;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 32px;
}

.split-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.reverse {
    direction: rtl;
}

.reverse>* {
    direction: ltr;
}

.split-image img {
    width: 100%;
    border-radius: 28px;
    display: block;
}

.services-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-highlight,
.coverage-section,
.about-cta {
    text-align: center;
    padding: 100px 20px;
}

@media(max-width:900px) {

    .trust-cards,
    .split-section,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .trust-cards {
        margin-top: 40px;
    }
}

.airport-luxury {
    background: #080808;
    color: #fff;
}

/* HERO */

.hero-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 8%;
    background: url("../lax\ los\ angles.png") center/cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .88) 25%,
            rgba(0, 0, 0, .45) 100%);
}

.hero-content {
    position: relative;
    max-width: 650px;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(212, 175, 55, .15);
    color: #d4af37;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(54px, 8vw, 100px);
    line-height: 1;
    margin-bottom: 24px;
}

.hero-content p {
    max-width: 550px;
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
    line-height: 1.8;
}

.hero-buttons {

    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-gold,
.btn-outline {
    padding: 18px 30px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
}

.btn-gold {
    background: #d4af37;
    color: #111;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
}

/* FLOATING CARD */

.booking-card {
    position: absolute;
    bottom: 50px;
    right: 8%;
    z-index: 2;
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(20, 20, 20, .85);
    backdrop-filter: blur(20px);
}

.booking-item {
    text-align: center;
    min-width: 120px;
}

.booking-item span {
    display: block;
    color: #d4af37;
    font-size: 30px;
    font-weight: 700;
}

.booking-item small {
    color: rgba(255, 255, 255, .65);
}

/* AIRPORTS */

.airports-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 80px 8%;
}

.airport-box {
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    background: #121212;
    font-size: 28px;
    font-weight: 700;
}

/* SPLIT SECTION */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 120px 8%;
}

.reverse .split-image {
    order: 2;
}

.split-image img {
    width: 100%;
    border-radius: 28px;
    height: 550px;
    object-fit: cover;
}

.section-label {
    color: #d4af37;
    letter-spacing: 2px;
    font-size: 14px;
}

.split-content h2 {
    font-size: 52px;
    margin: 20px 0;
}

.split-content p,
.split-content li {
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
}

/* FAQ */

.faq-section,
.cta-banner {
    padding: 120px 8%;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header span {
    color: #d4af37;
}

.faq-header h2 {
    font-size: 48px;
}

.faq-list details {
    margin-bottom: 20px;
    background: #121212;
    padding: 28px;
    border-radius: 20px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
}

/* CTA */

.cta-banner {
    text-align: center;
}

.cta-banner h2 {
    font-size: 58px;
    margin-bottom: 20px;
}

.cta-banner p {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 40px;
}

/* MOBILE */

@media (max-width: 992px) {

    .split-section,
    .airports-row {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: static;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 54px;
    }

    .split-content h2,
    .cta-banner h2 {
        font-size: 38px;
    }
}

.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    background:
        linear-gradient(90deg,
            rgba(7, 7, 10, .92) 0%,
            rgba(7, 7, 10, .82) 45%,
            rgba(7, 7, 10, .55) 100%),
        url("../images/lax-beverly-hills-bg.webp") center center/cover no-repeat;
}

.hero-container {
    width: min(1400px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(212, 175, 55, .12);
    border: 1px solid rgba(212, 175, 55, .25);
    color: #D4AF37;
    margin-bottom: 24px;
    font-size: 14px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D4AF37;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero-title span {
    display: block;
    color: #D4AF37;
}

.hero-desc {
    max-width: 650px;
    color: rgba(255, 255, 255, .75);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}

.feature-item {
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
}

.cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-call {
    padding: 16px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-primary {
    background: #D4AF37;
    color: #111;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-call {
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    backdrop-filter: blur(12px);
}

.hero-info-card {
    display: flex;
    justify-content: flex-end;
}

.route-card {
    width: 100%;
    max-width: 420px;
    background: rgba(15, 15, 18, .85);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 35px;
}

.route-header {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.route-line {
    flex: 1;
    height: 2px;
    background: #D4AF37;
}

.route-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    padding: 20px;
    background: rgba(255, 255, 255, .04);
    border-radius: 16px;
}

.stat-item small {
    display: block;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 8px;
}

.stat-item strong {
    color: #fff;
}

@media (max-width: 991px) {

    .hero-v2 {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-info-card {
        justify-content: flex-start;
    }

    .hero-features,
    .route-stats {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 42px;
    }
}

.why-choose-section {
    padding: 100px 20px;
    background: #0f0f10;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 1.05rem;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 16px;
}

.fleet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.fleet-list li {
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fleet-list li:last-child {
    border-bottom: none;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 30px;
    }
}

.pricing-section {
    padding: 100px 20px;
    background: #0b0b0c;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    position: relative;
    padding: 40px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.pricing-card.featured {
    border-color: #d4af37;
    transform: scale(1.03);
}

.pricing-badge {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.vehicle-name {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    min-height: 55px;
    margin-bottom: 30px;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    background: #d4af37;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    background: #e3bf4a;
}

.pricing-note {
    max-width: 850px;
    margin: 60px auto 0;
    padding: 24px 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.pricing-note strong {
    color: #fff;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }
}

.process-section {
    padding: 100px 20px;
    background: #111;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-header h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.process-timeline {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(212, 175, 55, 0.25);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
}

.timeline-number {
    width: 68px;
    height: 68px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #d4af37;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.timeline-card {
    height: 100%;
    padding: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.timeline-card h4 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 1.2rem;
}

.timeline-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

@media (max-width: 1100px) {

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-timeline::before {
        display: none;
    }

    .timeline-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .timeline-number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        margin: 0;
    }

    .timeline-card {
        text-align: left;
    }
}

/* ===== FLEET SECTION ===== */

.fleet-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.fleet-card {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.fleet-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(212, 175, 55, 0.08),
            transparent 45%);
    pointer-events: none;
}

.fleet-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.fleet-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.fleet-name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.fleet-specs {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
}

.fleet-desc {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}


/* ===== DESTINATIONS SECTION ===== */

.hotel-grid {
    max-width: 1000px;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.hotel-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.hotel-pill:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: #d4af37;
    color: #fff;
    transform: translateY(-3px);
}

#hotels .content-block {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

#hotels .content-block h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

#hotels .content-block p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 18px;
}

#hotels .content-block p:last-child {
    margin-bottom: 0;
}


/* ===== MOBILE ===== */

@media (max-width: 768px) {

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    #hotels .content-block {
        padding: 28px 24px;
    }

    .hotel-pill {
        width: 100%;
        justify-content: center;
    }
}

.airport-showcase {
    padding: 110px 20px;
}

.showcase-dark {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0));
}

.showcase-header {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.showcase-tag {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.showcase-header h2 {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 18px;
}

.showcase-header p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
}

.bento-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bento-card {
    position: relative;
    min-height: 220px;
    padding: 32px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right,
            rgba(212, 175, 55, 0.12),
            transparent 40%),
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 24px 60px rgba(212, 175, 55, 0.12);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 460px;
}

.bento-wide {
    grid-column: span 2;
}

.card-label {
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #d4af37;
    font-size: 0.8rem;
    font-weight: 600;
}

.bento-card h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.bento-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.card-footer {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.card-footer span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.85rem;
}

@media (max-width: 992px) {

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large,
    .bento-wide {
        grid-column: span 2;
        grid-row: auto;
        min-height: auto;
    }

    .card-footer {
        position: static;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {

    .airport-showcase {
        padding: 80px 20px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-wide {
        grid-column: span 1;
    }

    .bento-card {
        min-height: auto;
        padding: 28px;
    }

    .showcase-header h2 {
        font-size: 2rem;
    }
}

.bh-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HERO */

.bh-hero {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
    align-items: center;
    padding: 100px 0;
}

.bh-badge,
.section-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(212, 175, 55, .12);
    color: #d4af37;
    font-size: .85rem;
    font-weight: 600;
}

.bh-hero h1 {
    color: #fff;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1;
    margin: 24px 0;
}

.bh-hero h1 span {
    display: block;
    color: #d4af37;
}

.bh-hero p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.9;
    max-width: 650px;
}

.bh-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.bh-btn {
    padding: 15px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    text-decoration: none;
}

.bh-primary {
    background: #d4af37;
    color: #111;
    border: none;
}

.bh-hero-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hero-stat {
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
}

.hero-stat strong {
    display: block;
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-stat span {
    color: rgba(255, 255, 255, .72);
}

/* FEATURES */

.bh-features {
    display: grid;
    gap: 24px;
    margin: 80px 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    align-items: center;
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
}

.feature-number {
    font-size: 3rem;
    color: rgba(212, 175, 55, .3);
    font-weight: 800;
}

.feature-content h3 {
    color: #fff;
    margin-bottom: 12px;
}

.feature-content p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
}

/* STANDARDS */

.bh-standards {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;
    margin: 100px 0;
}

.standards-left h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 20px 0;
}

.standards-left p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
}

.standards-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.standard-item {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
}

/* FAQ */

.bh-faq {
    margin: 100px 0;
}

.bh-faq h2,
.bh-related h2 {
    color: #fff;
    margin-bottom: 40px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.bh-faq details {
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    background: rgba(255, 255, 255, .04);
}

.bh-faq summary {
    padding: 24px;
    cursor: pointer;
    color: #fff;
}

.bh-faq p {
    padding: 0 24px 24px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
}

/* RELATED */

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.related-grid a {
    padding: 30px;
    text-decoration: none;
    border-radius: 28px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
}

.related-grid span {
    color: #d4af37;
    font-size: .85rem;
}

.related-grid h4 {
    color: #fff;
    margin-top: 12px;
}

/* MOBILE */

@media (max-width: 992px) {

    .bh-hero,
    .bh-standards {
        grid-template-columns: 1fr;
    }

    .related-grid,
    .standards-right {
        grid-template-columns: 1fr;
    }

    .bh-hero-panel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .feature-row {
        grid-template-columns: 1fr;
    }

    .bh-hero-panel {
        grid-template-columns: 1fr;
    }
}

.bhx-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 110px 24px;
    display: grid;
    grid-template-columns: 1.3fr 340px;
    gap: 60px;
    align-items: center;
}

.bhx-topbar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(212, 175, 55, .1);
    color: #d4af37;
    font-size: .9rem;
    font-weight: 600;
}

.bhx-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d4af37;
}

.bhx-content h1 {
    color: #fff;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: .95;
    margin: 28px 0;
    max-width: 700px;
}

.bhx-content h1 span {
    display: block;
    color: #d4af37;
}

.bhx-lead {
    max-width: 650px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.9;
    font-size: 1.05rem;
}

.bhx-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 40px 0;
}

.bhx-btn {
    padding: 16px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    text-decoration: none;
}

.bhx-btn-primary {
    background: #d4af37;
    color: #111;
    border: none;
}

.bhx-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.bhx-trust span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .75);
    font-size: .9rem;
}

.bhx-sidebar {
    display: grid;
    gap: 20px;
}

.bhx-panel {
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
}

.bhx-panel small {
    display: block;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 12px;
}

.bhx-panel strong {
    display: block;
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 8px;
}

.bhx-panel span {
    color: rgba(255, 255, 255, .7);
}

/* EXPERIENCE */

.bhx-experience {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px 120px;
}

.bhx-section-head {

    margin-bottom: 60px;
}

.bhx-label {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(212, 175, 55, .1);
    color: #d4af37;
    font-size: .85rem;
    margin-bottom: 20px;
}

.bhx-section-head h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.bhx-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
}

.bhx-story p {
    color: rgba(255, 255, 255, .72);
    line-height: 2;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.bhx-benefits {
    display: grid;
    gap: 20px;
}

.benefit-box {
    padding: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
}

.benefit-box h3 {
    color: #fff;
    margin-bottom: 12px;
}

.benefit-box p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
}

@media (max-width: 992px) {

    .bhx-hero,
    .bhx-layout {
        grid-template-columns: 1fr;
    }

    .bhx-sidebar {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .bhx-sidebar {
        grid-template-columns: 1fr;
    }

    .bhx-hero {
        padding: 80px 20px;
    }

    .bhx-content h1 {
        font-size: 3rem;
    }
}

/* ===== GLOBAL NEW STYLE BLOCK ===== */

.bhx-fleet,
.bhx-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 24px;
}

/* ===== HEAD ===== */

.bhx-head {
    max-width: 700px;
    margin-bottom: 50px;
}

.bhx-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(212, 175, 55, .12);
    color: #d4af37;
    font-size: .85rem;
    margin-bottom: 18px;
}

.bhx-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 12px;
}

.bhx-head p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
}

/* ===== FLEET LAYOUT ===== */

.bhx-fleet-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.bhx-fleet-main {
    display: grid;
    gap: 18px;
}

.bhx-vehicle {
    padding: 26px;
    border-left: 3px solid #d4af37;
    background: rgba(255, 255, 255, .03);
}

.bhx-vehicle h3 {
    color: #fff;
    margin-bottom: 8px;
}

.bhx-vehicle p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
}

/* SIDE STATS */

.bhx-fleet-side {
    display: grid;
    gap: 18px;
}

.bhx-stat {
    padding: 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
}

.bhx-stat strong {
    display: block;
    font-size: 2rem;
    color: #d4af37;
}

.bhx-stat span {
    color: rgba(255, 255, 255, .7);
}

/* ===== SERVICES GRID ===== */

.bhx-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bhx-service {
    padding: 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .3s;
}

.bhx-service:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, .4);
}

.bhx-service h3 {
    color: #fff;
    margin-bottom: 10px;
}

.bhx-service p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

    .bhx-fleet-layout {
        grid-template-columns: 1fr;
    }

    .bhx-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .bhx-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== AIRPORT SECTION ===== */

.bhx-airport,
.bhx-vip {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 24px;
}

.bhx-air-header,
.bhx-vip-head {
    max-width: 700px;
    margin-bottom: 50px;
}

.bhx-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(212, 175, 55, .12);
    color: #d4af37;
    margin-bottom: 15px;
    font-size: .85rem;
}

.bhx-air-header h2,
.bhx-vip-head h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
}

.bhx-air-header p,
.bhx-vip-head p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
}

/* ===== AIRPORT LAYOUT ===== */

.bhx-air-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.bhx-air-row {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.bhx-air-row h3 {
    color: #fff;
    margin-bottom: 8px;
}

.bhx-air-row p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
}

.bhx-air-side {
    display: grid;
    gap: 16px;
}

.bhx-air-box {
    padding: 26px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
}

.bhx-air-box strong {
    display: block;
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.bhx-air-box span {
    color: rgba(255, 255, 255, .7);
}

/* ===== VIP GRID ===== */

.bhx-vip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.bhx-vip-item {
    padding: 26px;
    border-left: 2px solid #d4af37;
    background: rgba(255, 255, 255, .03);
}

.bhx-vip-item h3 {
    color: #fff;
    margin-bottom: 10px;
}

.bhx-vip-item p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

    .bhx-air-layout {
        grid-template-columns: 1fr;
    }

    .bhx-vip-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .bhx-vip-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --bg: #07070a;
    --card: #111217;
    --gold: #D4AF37;
    --text: #eaeaea;
    --muted: #a0a0a0;
}

/* BASE */
.bhp-wrapper {
    font-family: system-ui;
    background: var(--bg);
    color: var(--text);
}

/* CONTAINER */
.bhp-container {
    width: min(1100px, 92%);
    margin: auto;
}

/* HERO */
.bhp-hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.bhp-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(212, 175, 55, .25), transparent 60%);
}

.bhp-badge {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: 50px;
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 20px;
}

.bhp-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.bhp-title span {
    color: var(--gold);
}

.bhp-subtitle {
    margin: 20px auto;
    max-width: 700px;
    color: var(--muted);
}

.bhp-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.bhp-meta div b {
    display: block;
    font-size: 18px;
}

.bhp-meta span {
    font-size: 12px;
    color: var(--muted);
}

.bhp-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bhp-btn {
    padding: 12px 18px;
    border-radius: 10px;
    background: #1a1b22;
    color: white;
    text-decoration: none;
}

.bhp-btn.primary {
    background: var(--gold);
    color: black;
}

.bhp-btn.ghost {
    border: 1px solid #333;
}

/* SECTION */
.bhp-section {
    padding: 80px 0;
}

.bhp-section.dark {
    background: #0b0c10;
}

.bhp-head {
    text-align: center;
    margin-bottom: 40px;
}

.bhp-head span {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
}

.bhp-head h2 {
    font-size: 30px;
}

/* GRID */
.bhp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bhp-card {
    background: var(--card);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #1f1f1f;
}

.bhp-card.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

/* FLEET */
.bhp-fleet {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.bhp-fleet-card {
    background: var(--card);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #1f1f1f;
}

.bhp-fleet-card h3 {
    color: var(--gold);
}

/* RESPONSIVE */
@media(max-width:900px) {
    .bhp-grid {
        grid-template-columns: 1fr;
    }

    .bhp-fleet {
        grid-template-columns: 1fr 1fr;
    }

    .bhp-title {
        font-size: 30px;
    }
}

/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", system-ui, sans-serif;
}

body {
    background: #0b0b0f;
    color: #fff;
    line-height: 1.6;
}

/* =========================
   HERO
========================= */
.bhx-hero-premium {
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(circle at top, #1a1a25, #0b0b0f);
}

.bhx-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), transparent);
    pointer-events: none;
}

.bhx-hero-container {
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.bhx-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bhx-badge {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ddd;
}

.bhx-badge--soft {
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.3);
}

.bhx-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
}

.bhx-hero-title span {
    color: #ffd700;
}

.bhx-hero-subtitle {
    max-width: 750px;
    margin: auto;
    color: #bbb;
    font-size: 16px;
}

/* =========================
   STATS
========================= */
.bhx-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 40px 0;
}

.bhx-hero-stats div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.bhx-hero-stats strong {
    display: block;
    font-size: 22px;
    color: #ffd700;
}

/* =========================
   BUTTONS
========================= */
.bhx-hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.bhx-btn-primary {
    padding: 12px 22px;
    background: #ffd700;
    color: #000;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.bhx-btn-primary:hover {
    transform: translateY(-2px);
    background: #ffdf4d;
}

.bhx-btn-secondary {
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s;
}

.bhx-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* =========================
   TRUST STRIP
========================= */
.bhx-trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 20px;
    background: #111;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* =========================
   SECTIONS
========================= */
.bhx-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.bhx-section-head h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.bhx-section-head p {
    color: #aaa;
}

/* =========================
   SERVICES GRID
========================= */
.bhx-services-modern {
    padding: 80px 20px;
}

.bhx-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.bhx-card {
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.bhx-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

/* =========================
   FLEET
========================= */
.bhx-fleet {
    padding: 80px 20px;
}

.bhx-fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.bhx-fleet-card {
    padding: 20px;
    border-radius: 14px;
    background: linear-gradient(145deg, #14141c, #0d0d12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.bhx-fleet-card:hover {
    transform: scale(1.03);
    border-color: rgba(255, 215, 0, 0.4);
}

/* =========================
   AIRPORT
========================= */
.bhx-airport {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
}

.bhx-highlight-box {
    padding: 30px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 14px;
}

/* =========================
   CORPORATE
========================= */
.bhx-corporate {
    padding: 80px 20px;
}

.bhx-corporate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.bhx-corporate-grid div {
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================
   FINAL CTA
========================= */
.bhx-final-cta {
    text-align: center;
    padding: 90px 20px;
    background: radial-gradient(circle at center, #1a1a1a, #0b0b0f);
}

.bhx-cta-row {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {

    .bhx-grid,
    .bhx-fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bhx-hero-title {
        font-size: 36px;
    }

    .bhx-airport {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .bhx-grid,
    .bhx-fleet-grid,
    .bhx-corporate-grid {
        grid-template-columns: 1fr;
    }

    .bhx-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== BASE ===== */
body {
    margin: 0;
    font-family: Inter, sans-serif;
    background: #0b0b0f;
    color: #fff;
}

/* ===== HERO ===== */
.lux-hero {
    position: relative;
    padding: 120px 20px;
    background: radial-gradient(circle at top, #1a1a2e, #0b0b0f);
    text-align: center;
    overflow: hidden;
}

.lux-container {
    max-width: 1100px;
    margin: auto;
    position: relative;
}

.lux-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 999px;
    color: #d4af37;
    font-size: 13px;
}

.lux-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4af37;
}

.lux-hero h1 {
    font-size: 52px;
    margin: 20px 0;
    line-height: 1.1;
}

.lux-hero h1 span {
    color: #d4af37;
}

.lux-hero p {
    max-width: 750px;
    margin: auto;
    opacity: 0.8;
}

/* ===== BUTTONS ===== */
.lux-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn.primary {
    background: #d4af37;
    color: #000;
}

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

.btn.ghost {
    border: 1px solid #d4af37;
    color: #d4af37;
}

/* ===== TRUST ===== */
.lux-trust {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    opacity: 0.8;
}

/* ===== SECTIONS ===== */
.section {
    padding: 90px 20px;
}

.section.dark {
    background: #0f0f14;
}

.section.light {
    background: #141420;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.head {
    text-align: center;
    margin-bottom: 50px;
}

.head h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.head p {
    opacity: 0.7;
}

/* ===== COMPARE ===== */
.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card {
    padding: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.card ul {
    list-style: none;
    padding: 0;
}

.card ul li {
    padding: 8px 0;
    opacity: 0.9;
}

.card.us {
    border: 1px solid #d4af37;
}

/* ===== SERVICES ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service {
    padding: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.service:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.service h3 {
    margin-bottom: 8px;
}

.service p {
    opacity: 0.7;
    font-size: 14px;
}

/* ===== CTA ===== */
.cta {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #000;
}

.cta h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
    .lux-hero h1 {
        font-size: 34px;
    }

    .compare {
        grid-template-columns: 1fr;
    }

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

    .lux-actions {
        flex-direction: column;
    }
}

/* ===== BASE ===== */
:root {
    --bg: #0b0f17;
    --card: #121a28;
    --gold: #d4af37;
    --text: #eaeef7;
    --muted: rgba(234, 238, 247, .7);
    --border: rgba(255, 255, 255, .08);
}

body {
    margin: 0;
    font-family: system-ui;
    background: var(--bg);
    color: var(--text);
}

.lux-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===== HERO ===== */
.lux-hero {
    padding: 90px 0;
    background: radial-gradient(circle at top, rgba(212, 175, 55, .12), transparent 60%);
}

.lux-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 50px;
    align-items: center;
}

.lux-badge {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--gold);
    font-size: 13px;
}

.lux-title {
    font-size: 52px;
    margin: 20px 0;
    line-height: 1.1;
}

.lux-title span {
    color: var(--gold);
}

.lux-subtitle {
    color: var(--muted);
    line-height: 1.7;
}

.lux-cta {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.lux-btn {
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.lux-primary {
    background: var(--gold);
    color: #000;
}

.lux-outline {
    border: 1px solid var(--border);
    color: var(--text);
}

/* stats */
.lux-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.lux-stat {
    background: var(--card);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid var(--border);
    text-align: center;
}

.lux-stat h3 {
    color: var(--gold);
    font-size: 22px;
}

/* ===== SECTION ===== */
.lux-section,
.lux-faq-section {
    padding: 80px 0;
}

.lux-head {
    text-align: center;
    margin-bottom: 40px;
}

.lux-head h2 {
    font-size: 34px;
}

.lux-head p {
    color: var(--muted);
    max-width: 700px;
    margin: auto;
}

/* grid */
.lux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.lux-card {
    background: linear-gradient(145deg, #121a28, #0d131f);
    border: 1px solid var(--border);
    padding: 22px;
    border-radius: 14px;
    transition: .3s;
}

.lux-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, .4);
}

.lux-card h3 {
    color: var(--gold);
    margin-bottom: 8px;
}

/* FAQ */
.lux-faq {
    max-width: 800px;
    margin: auto;
}

.lux-faq details {
    background: var(--card);
    border: 1px solid var(--border);
    margin-bottom: 10px;
    border-radius: 12px;
    padding: 14px;
}

.lux-faq summary {
    cursor: pointer;
    font-weight: 600;
}

/* CTA */
.lux-cta-section {
    text-align: center;
    padding: 90px 20px;
    background: linear-gradient(90deg, rgba(212, 175, 55, .12), transparent);
}

.lux-cta-section h2 {
    font-size: 34px;
}

.lux-cta-section p {
    color: var(--muted);
    margin: 10px 0 25px;
}