@media (hover: hover) and (pointer: fine) {
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #0B0B0B;
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #111 0%, var(--color-accent) 50%, #111 100%);
        border-radius: 10px;
        border: 2px solid #0B0B0B;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-accent-light);
    }
}

:root {
    /* 6.2 Color Palette - Light Luxury */
    --color-primary: #FFFFFF;      /* Pure White */
    --color-secondary: #F8F9FA;    /* Off-White/Alabaster */
    --color-text-main: #111111;    /* Obsidian Black */
    --color-text-body: #777777;    /* Darker Grey for Readability */
    --color-accent: #B08D45;       /* Darker Gold for Text Contrast */
    --color-accent-light: #C6A45C; /* Original Gold for Backgrounds */
    --color-border: rgba(176, 141, 69, 0.3);
    
    /* Light Luxury Gradients using Lighter Gold */
    --gradient-body: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    --gradient-section: linear-gradient(180deg, #F8F9FA 0%, #F0F2F5 100%);
    --gradient-gold: linear-gradient(135deg, #C6A45C 0%, #E5D19A 50%, #C6A45C 100%);
    --gradient-hero: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.95) 100%);

    /* 6.1 Typography */
    /* Switched to Outfit and Manrope for a modern, sleek luxury look */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Spacing System */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 120px;
    --gutter: 5vw;
    --radius-btn: 10px;
    --radius-card: 14px;

    /* Animation */
    --anim-duration: 0.8s;
    --anim-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --anim-hover: 0.3s ease-out;
    
    /* Shadows */
    --shadow-card: 0 10px 40px -10px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 50px -10px rgba(0,0,0,0.1);
    
    /* Focus Ring for Accessibility */
    --focus-ring: 2px solid var(--color-accent);
    --focus-offset: 2px;
}

/* =========================================
   Reset & Base
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--gradient-body);
    color: var(--color-text-body);
    font-family: var(--font-body);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    position: relative;
    cursor: auto;
}

a, button, .fleet-list-item {
    cursor: pointer;
}

/* Improve Focus Styles */
:focus-visible {
    outline: var(--focus-ring);
    outline-offset: var(--focus-offset);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    font-weight: 600; /* Increased weight for legibility */
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

h1 { 
    font-size: clamp(40px, 10vw, 80px); 
    margin-bottom: var(--space-sm);
    word-break: keep-all; /* Prevent breaking words */
    overflow-wrap: normal;
}
h2 { font-size: clamp(32px, 5vw, 56px); }
h3 { font-size: clamp(24px, 4vw, 36px); }

p {
    color: var(--color-text-body);
    margin-bottom: var(--space-md);
    max-width: 650px;
    font-size: clamp(1rem, 2vw, 1.125rem); /* Minimum 16px */
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: var(--anim-hover); 
    position: relative;
}
/* Animated Underline for Text Links */
a:not(.btn):not(.brand-logo):not(.hero-bg):not(.nav-link):not(.hs-card)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s ease-out;
}
a:not(.btn):not(.brand-logo):not(.hero-bg):not(.nav-link):not(.hs-card):hover::after {
    width: 100%;
}

/* Nav Link Underline (Specific) */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent-light);
    transition: width 0.3s ease-out;
}
.nav-link:hover::after {
    width: 100%;
}
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* 6.3 UI Components - Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    font-family: var(--font-body);
    font-size: 14px; /* Increased from 13 */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em; /* Reduced spacing slightly for readability */
    transition: var(--anim-hover);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    border-radius: var(--radius-btn);
}

.btn-primary {
    background: var(--gradient-gold);
    color: #111111; /* Dark Text on Gold for High Contrast */
    background-size: 200% auto;
    box-shadow: 0 10px 20px -5px rgba(198, 164, 92, 0.4);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(198, 164, 92, 0.6);
}

.btn-outline {
    border-color: var(--color-text-main);
    color: var(--color-text-main);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-text-main);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Luxury Input Fields */
.form-group { margin-bottom: var(--space-md); }
.input-luxury {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.2); /* Increased contrast border */
    padding: 20px 0;
    color: var(--color-text-main);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transition: var(--anim-hover);
    border-radius: 0;
}

.input-luxury:focus { outline: none; border-bottom: 2px solid var(--color-accent); }
.input-luxury::placeholder {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-body);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Gold Divider */
.divider-gold {
    height: 1px;
    width: 100%;
    background: var(--color-accent);
    margin: var(--space-lg) 0;
    opacity: 0.5;
}

/* =========================================
   Header & Nav
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; 
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
    z-index: 3000;
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: clamp(15px, 1.6vw, 22px);
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    min-width: 0;
    flex-shrink: 0;
    text-decoration: none;
}

.brand-logo--wordmark {
    letter-spacing: 0.14em;
}

.brand-logo__wordmark {
    font-family: var(--font-heading);
    font-size: clamp(16px, 1.8vw, 24px);
    font-weight: 400;
    letter-spacing: 0.18em;
}

.brand-logo__wordmark span {
    color: var(--color-accent-light);
}

.brand-logo__mark,
.brand-logo__crown {
    display: block;
    width: clamp(36px, 3.8vw, 46px);
    height: clamp(36px, 3.8vw, 46px);
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
}

.brand-logo--footer .brand-logo__wordmark {
    font-size: 20px;
}

.brand-logo--footer .brand-logo__mark {
    width: 36px;
    height: 36px;
}

.brand-logo__text span { color: var(--color-accent-light); }

.floating-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 2400;
}

.floating-contact__btn {
    position: relative;
    display: inline-flex;
    align-items: stretch;
    min-height: 52px;
    padding: 0;
    border: none;
    border-radius: var(--radius-btn, 10px);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    background: linear-gradient(135deg, #d4b871 0%, #c6a45c 45%, #9a7838 100%);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.32),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-contact__btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.38),
        0 0 24px rgba(198, 164, 92, 0.22);
}

.floating-contact__glow {
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(212, 184, 113, 0.45), rgba(198, 164, 92, 0.35), rgba(154, 120, 56, 0.4));
    filter: blur(10px);
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.floating-contact__btn:hover .floating-contact__glow {
    opacity: 0.85;
}

.floating-contact__inner {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    margin: 1.5px;
    padding: 0 18px 0 8px;
    border-radius: calc(var(--radius-btn, 10px) - 1.5px);
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.98) 0%, rgba(8, 8, 8, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.floating-contact__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(198, 164, 92, 0.22), rgba(176, 141, 69, 0.12));
    color: var(--color-accent-light);
    flex-shrink: 0;
}

.floating-contact__btn--whatsapp {
    /* gradient frame via parent .floating-contact__btn */
}

.floating-contact__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 768px) {
    .brand-logo__wordmark {
        font-size: 15px;
        letter-spacing: 0.12em;
    }

    .brand-logo__text {
        font-size: 16px;
    }

    .floating-contact {
        right: 16px;
        bottom: 16px;
    }

    .floating-contact__label {
        display: none;
    }

    .floating-contact__btn {
        min-height: 52px;
    }

    .floating-contact__inner {
        width: 52px;
        height: 52px;
        min-height: 52px;
        padding: 0;
        justify-content: center;
    }

    .floating-contact__icon-wrap {
        width: 34px;
        height: 34px;
    }
}

/* Premium cursor (desktop) */
.premium-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    pointer-events: none;
    will-change: transform;
    transition: opacity 0.25s ease;
}

.premium-cursor.is-hidden {
    opacity: 0;
}

.premium-cursor__arrow {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color-accent-light);
    transform: translate(-4px, -10px);
    filter: drop-shadow(0 0 6px rgba(198, 164, 92, 0.45));
    transition: color 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.premium-cursor.is-hover .premium-cursor__arrow {
    color: #ffffff;
    transform: translate(-4px, -10px) scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
}

.nav-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(14px, 2.2vw, 28px);
    min-width: 0;
    flex-wrap: nowrap;
}

.header-btns {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.header-cta {
    padding: 11px 22px;
    font-size: 11px;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
}

.lang-switch__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 24px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.lang-switch__btn:hover,
.lang-switch__btn:focus-visible {
    opacity: 1;
    outline: none;
    box-shadow: 0 0 0 1px rgba(198, 164, 92, 0.45);
}

.lang-switch__btn.is-active {
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(198, 164, 92, 0.75);
    transform: scale(1.03);
}

.lang-switch__flag {
    width: 22px;
    height: 14px;
    border-radius: 2px;
    display: block;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.lang-switch--mobile {
    margin-bottom: 28px;
    align-self: flex-start;
}

.lang-switch--mobile .lang-switch__btn {
    width: auto;
    min-width: 44px;
    height: 36px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
}

.nav-link {
    font-size: clamp(10px, 0.95vw, 12px);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 1180px) {
    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (min-width: 1181px) {
    .menu-toggle {
        display: none;
    }
}
.nav-link:hover { color: var(--color-accent-light); opacity: 1; }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100svh;
    background: #0B0B0B;
    z-index: 2500; 
    padding: 100px 5vw 60px;
    display: none;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #FFFFFF !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 1 !important;
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--color-accent) !important;
}

.menu-toggle {
    background: transparent;
    border: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 3001;
    display: none; /* Desktop hidden */
    padding: 0;
    transition: var(--anim-hover);
}

.menu-toggle .line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.line-1 { top: 4px; }
.line-2 { bottom: 4px; }

/* Morphing Animation */
.menu-toggle.is-active .line-1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.is-active .line-2 {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.menu-toggle:hover .line {
    background-color: var(--color-accent);
}


@media (max-width: 900px) {
    .site-header { 
        height: 70px; 
        padding: 0 5vw; 
        background: #0b0b0b !important;
        z-index: 3000 !important;
    }
    .brand-logo { font-size: 20px; z-index: 3001; }
    .nav-desktop { display: none; }
    .header-btns .header-cta { display: none !important; }
    .menu-toggle { display: block !important; z-index: 3001 !important; }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: 100svh;
        background: #0B0B0B !important;
        background-color: #0B0B0B !important;
        z-index: 2999 !important;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 100px;
        padding-bottom: 60px;
        gap: 20px;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-nav-link {
        font-size: 32px;
        padding: 10px 0;
        color: #FFFFFF !important;
        opacity: 1 !important;
        text-align: center;
        width: 100%;
        display: block;
    }

    .hero {
        height: 100svh !important;
        height: 100dvh !important;
        min-height: 100svh !important;
        min-height: 100dvh !important;
        max-height: 100svh;
        max-height: 100dvh;
        padding: 100px 0 32px;
        display: flex;
        align-items: center;
        overflow: hidden;
        box-sizing: border-box;
    }

    .hero-bg {
        height: 100% !important;
        min-height: 100% !important;
    }

    .hero-content h1 {
        font-size: clamp(32px, 12vw, 48px);
        line-height: 1.1;
    }

    .hero-btn-group {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn-group .btn {
        width: 100%;
    }

    /* Aggressive Cursor Disable */
    .shery-mousefollower, .shery-mask, .fleet-cursor-follower, #cursor-follower, .premium-cursor, [class*="shery-"] { 
        display: none !important; 
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    * { cursor: auto !important; }
}

/* Specific Landscape Height Tweaks */
@media (max-height: 500px) {
    .site-header { 
        height: 60px !important; 
        padding: 0 5vw !important;
    }
    .brand-logo { font-size: 16px !important; }
    .nav-desktop { display: none !important; }
    .header-btns .header-cta { display: none !important; }
    .menu-toggle { display: block !important; }

    .mobile-menu-overlay {
        padding-top: 70px !important;
        gap: 5px !important;
        justify-content: flex-start !important;
    }
    .mobile-nav-link {
        font-size: 18px !important;
        padding: 5px 0 !important;
    }
    .hero {
        min-height: 100vh !important;
        height: 100svh !important;
        padding-top: 60px !important; 
        padding-bottom: 20px !important;
        align-items: center;
    }
    .hero-content h1 { 
        font-size: clamp(24px, 7vw, 36px) !important; 
        margin-bottom: 5px !important;
        line-height: 1.1; 
    }
    .hero-content p {
        font-size: 14px !important;
        margin-bottom: 15px !important;
        max-width: 90% !important;
        line-height: 1.4 !important;
    }
    .hero-btn-group {
        flex-direction: row !important;
        gap: 15px !important;
        margin-top: 10px !important;
    }
    .hero-btn-group .btn {
        width: auto !important;
        padding: 10px 20px !important;
        font-size: 12px !important;
        flex: 0 1 auto;
    }
    .label-accent { font-size: 11px !important; margin-bottom: 5px !important; }
}

/* =========================================
   Sections & Layout
   ========================================= */
.container { max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--space-xl) 0; position: relative; overflow: hidden; }
.section-bg-charcoal { 
    background: #0b0b0b; 
    color: #fff;
}
.section-bg-charcoal h2, 
.section-bg-charcoal h3, 
.section-bg-charcoal p,
.section-bg-charcoal li,
.section-bg-charcoal .service-list li { 
    color: #fff !important; 
}
.section-bg-charcoal .divider-gold {
    opacity: 0.8;
}

/* Hero */
.hero {
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    box-sizing: border-box;
}
.hero::after {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: -1; 
    opacity: 1; 
}

.hero--van::after {
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.34) 38%, rgba(0, 0, 0, 0.12) 62%, rgba(0, 0, 0, 0.38) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero--van .hero-bg {
    object-position: 68% center;
}

.hero .container {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-content .label-accent {
    display: block;
}

.hero-btn-group {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

/* Force White Text on Hero */
.hero-content h1 {
    color: var(--color-accent-light);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-content p,
.hero-content .label-accent {
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.reveal-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.reveal-label, .reveal-word {
    display: inline-block;
}

.reveal-char {
    display: inline-block;
    white-space: pre-wrap;
    will-change: transform, opacity;
}

/* Hero Button Accessibility Override */
.hero .btn-outline {
    border-color: #FFFFFF;
    color: #FFFFFF;
}
.hero .btn-outline:hover {
    background-color: #FFFFFF;
    color: var(--color-text-main);
}

/* Booking section (separate from hero) */
.booking-section {
    padding: clamp(72px, 9vw, 112px) 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    border-top: 1px solid rgba(198, 164, 92, 0.12);
    border-bottom: 1px solid rgba(198, 164, 92, 0.12);
    scroll-margin-top: 96px;
}

.booking-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: clamp(40px, 6vw, 88px);
    align-items: start;
}

.booking-section__copy h2 {
    color: #ffffff;
    margin-bottom: 18px;
}

.booking-section__copy p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 42ch;
    line-height: 1.7;
}

.booking-section__list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.55);
    line-height: 2;
}

.booking-section__list li::before {
    content: "✦";
    color: var(--color-accent-light);
    margin-right: 10px;
}

.hero-booking {
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(198, 164, 92, 0.28);
    padding: 28px 24px 24px;
}

.hero-booking__fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 640px) {
    .hero-booking__fields {
        grid-template-columns: 1fr 1fr;
        column-gap: 16px;
    }
}

.hero-booking__title {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent-light);
}

.hero-booking__tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
}

.hero-booking__tab {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--anim-hover);
    border-radius: var(--radius-btn);
}
    border-color: rgba(198, 164, 92, 0.5);
    color: #fff;
}

.hero-booking__tab.is-active {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
    color: #0b0b0b;
}

.hero-booking__field {
    margin-bottom: 16px;
}

.hero-booking__field label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.hero-booking__input {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--anim-hover);
}

.hero-booking__input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.hero-booking__input:focus {
    outline: none;
    border-color: var(--color-accent-light);
    background: rgba(255, 255, 255, 0.07);
}

.hero-booking__select {
    appearance: none;
    cursor: pointer;
}

.hero-booking__input--datetime {
    color-scheme: dark;
}

.hero-booking__submit {
    width: 100%;
    margin-top: 8px;
    padding: 16px 20px;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-booking__hint {
    margin: 14px 0 0;
    font-size: 0.72rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

@media (max-width: 1024px) {
    .booking-section__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-booking {
        padding: 22px 18px 18px;
    }
}

@media (max-width: 480px) {
    .hero-booking {
        padding: 22px 18px 18px;
    }

    .hero-booking__tabs {
        flex-direction: column;
    }
}

.label-accent {
    display: inline-block;
    color: var(--color-accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
    font-family: var(--font-body);
}

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

@media (max-width: 900px) {
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    
    /* Utility to re-order images on mobile if needed */
    .mobile-order-first { order: -1; }
    
    .hero-content h1 { font-size: clamp(40px, 10vw, 56px); } /* Tweak hero title for mobile */
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 32px; line-height: 1.1; margin-bottom: 20px; }
    .hero-content p { font-size: 16px; margin-bottom: 30px; }
    .hero-btn-group { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
    .hero-btn-group .btn { width: 100%; margin: 0; padding: 18px; }
    .container { padding: 0 20px; }
    .hero {
        height: 100svh !important;
        height: 100dvh !important;
        padding-top: 96px;
        padding-bottom: 24px;
        overflow: hidden;
    }
}

.card-service {
    padding: var(--space-md);
    border: 1px solid #E5E5E5; /* Light Border */
    transition: var(--anim-hover);
    background: #FFFFFF;
    box-shadow: var(--shadow-card);
}
.card-service:hover { 
    border-color: var(--color-accent); 
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Fleet */
.fleet-card { position: relative; margin-bottom: var(--space-lg); }
.fleet-img-wrap { width: 100%; height: 600px; overflow: hidden; position: relative; border-radius: 2px; }
@media (max-width: 768px) { .fleet-img-wrap { height: 300px; } } /* Adjusted for mobile */

.fleet-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.03); }
.fleet-info {
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: var(--space-md);
    flex-wrap: wrap; /* Allow wrap on mobile */
    gap: 15px;
}

/* Footer - Keep Dark for Contrast */
.site-footer {
    background-color: #111111;
    border-top: none;
    padding: var(--space-xl) 0 var(--space-md);
    color: #EEEEEE;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }
.footer-col h4 { font-size: 18px; margin-bottom: var(--space-md); color: #FFFFFF; }
.footer-col ul li { margin-bottom: var(--space-sm); }
.footer-col ul li a { color: #999999; }
.footer-col ul li a:hover { color: var(--color-accent-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    margin-top: 60px;
    color: #999999;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* Marquee Refined */
.marquee-modern {
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    background: #FFFFFF;
}
.marquee-track { 
    display: flex; 
    align-items: center; 
    gap: 120px; 
    width: max-content;
    animation: marquee 40s linear infinite; 
}
.marquee-serif { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(3rem, 5vw, 4.5rem); 
    font-style: italic; 
    color: #000000; /* Force Black */
    line-height: 1;
}
.marquee-bold { 
    font-family: 'Bebas Neue', sans-serif; 
    font-size: clamp(3.5rem, 6vw, 5rem); 
    letter-spacing: 2px; 
    color: #000000; /* Force Black */
    opacity: 1;
    line-height: 1;
}

.label-accent {
    display: inline-block;
    color: var(--color-accent);
}

/* Category/Section Header Styles */
.hs-header {
    margin-bottom: 60px;
    position: relative;
}

.hs-header h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #FFFFFF;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.hs-header .label-accent {
    color: var(--color-accent);
    font-size: 16px;
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 20px;
}

/* Background "Watermark" Text */
.hs-header::before {
    content: 'COLLECTION';
    position: absolute;
    top: -40px;
    left: -20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 15vw, 15rem);
    color: rgba(255,255,255,0.03);
    z-index: 0;
    pointer-events: none;
    line-height: 0.8;
}

.marquee-separator { 
    font-size: 2rem; 
    color: var(--color-accent); 
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Route / destination logo slider */
.route-logos {
    padding: 40px 0 48px;
    background: #0a0a0a;
    border-top: 1px solid rgba(198, 164, 92, 0.12);
    border-bottom: 1px solid rgba(198, 164, 92, 0.12);
    overflow: hidden;
}

.route-logos__label {
    margin: 0 0 28px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.route-logos__viewport {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.route-logos__track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: route-logos-scroll 50s linear infinite;
}

.route-logos__item {
    flex-shrink: 0;
    opacity: 0.88;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.route-logos__item:hover {
    opacity: 1;
    transform: scale(1.03);
}

.route-logos__item img {
    display: block;
    height: 44px;
    width: auto;
    max-width: none;
    border-radius: 3px;
}

@keyframes route-logos-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.fleet-intro {
    max-width: 620px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
    font-size: 1rem;
}

/* Services block — after fleet */
.services-intro {
    background: #f7f7f7;
    padding-top: clamp(64px, 8vw, 96px);
    padding-bottom: clamp(48px, 6vw, 72px);
}

.services-intro__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(48px, 6vw, 72px);
}

.services-intro__head::after {
    content: "";
    display: block;
    width: 64px;
    height: 1px;
    margin: 28px auto 24px;
    background: linear-gradient(90deg, transparent, var(--color-accent-light), transparent);
}

.services-intro__lead {
    margin: 0 auto;
    max-width: 560px;
    color: rgba(0, 0, 0, 0.48);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 300;
}

.services-intro .grid-3 {
    align-items: stretch;
}

.services-intro .card-service {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.services-intro .card-service:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09);
    border-color: rgba(198, 164, 92, 0.35);
}

.services-intro .card-service__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111;
    border-radius: 14px 14px 0 0;
}

.services-intro .card-service__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.services-intro .card-service:hover .card-service__image {
    transform: scale(1.04);
}

.services-intro .card-service__body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.services-intro .card-service h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    line-height: 1.25;
    margin-bottom: 10px;
    min-height: 2.5em;
}

.services-intro .card-service p {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.58);
    margin-bottom: 14px;
    flex: 1;
}

.services-intro .card-features {
    margin-bottom: 16px;
}

.services-intro .card-features li {
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.services-intro .link-arrow {
    margin-top: auto;
    padding-top: 4px;
}

/* Fleet showcase - Helvetia-style (clean, no boxes) */
.fleet-showcase--helvetia {
    background: #ffffff;
    padding: clamp(72px, 9vw, 112px) 0;
    scroll-margin-top: 96px;
}

.fleet-showcase--helvetia .fleet-showcase__header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 72px);
}
.fleet-showcase--helvetia .fleet-showcase__title {
    color: #1a1a1a;
}

.fleet-showcase__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.fleet-showcase__title > span:first-child,
.services-intro .fleet-showcase__title > span:first-child {
    color: #1a1a1a;
}

.fleet-showcase__title-accent {
    color: var(--color-accent-light);
}

.fleet-showcase--helvetia .fleet-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: stretch;
}

.fleet-showcase--helvetia .fleet-card {
    text-align: center;
    padding: 0;
    height: 100%;
}

/* Clean Helvetia-style — kein Glas, kein Kasten */
.fleet-showcase--helvetia .fleet-card--clean {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    height: 100%;
}

.fleet-showcase--helvetia .fleet-card__star {
    display: block;
    width: auto;
    height: 36px;
    max-width: 52px;
    margin: 0 auto 10px;
    object-fit: contain;
    opacity: 1;
    filter: none;
}

.fleet-showcase--helvetia .fleet-card__model {
    margin: 0 0 clamp(20px, 3vw, 28px);
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #9a9a9a;
}

.fleet-showcase--helvetia .fleet-card__media {
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(160px, 22vw, 220px);
    margin: 0 0 clamp(22px, 3vw, 32px);
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.fleet-showcase--helvetia .fleet-card__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: clamp(140px, 22vw, 220px);
    margin: 0 auto;
    object-fit: contain;
    object-position: center bottom;
    background: none;
}

.fleet-showcase--helvetia .fleet-card__title {
    margin: 0 0 clamp(14px, 2vw, 18px);
    margin-top: auto;
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #1a1a1a;
}

.fleet-showcase--helvetia .fleet-card__link {
    display: inline-block;
    font-family: var(--font-body, "Manrope", sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.fleet-showcase--helvetia .fleet-card__link:hover {
    color: #1a1a1a;
}

.fleet-showcase--helvetia .fleet-card--clean:hover .fleet-card__image {
    transform: scale(1.02);
    transition: transform 0.35s ease;
}

@media (max-width: 900px) {
    .fleet-showcase--helvetia .fleet-showcase__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: clamp(48px, 10vw, 64px);
    }
}

/* Trust stats — direkt unter Hero (Sektion 2) */
.trust-stats {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, #0a0a0a 100%);
    padding: clamp(48px, 6vw, 72px) 0;
    border-top: 1px solid rgba(198, 164, 92, 0.18);
    border-bottom: 1px solid rgba(198, 164, 92, 0.12);
    box-shadow: 0 -24px 48px rgba(0, 0, 0, 0.35);
}

.trust-stats__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 32px);
    align-items: start;
}

.trust-stats__item {
    position: relative;
    text-align: center;
    padding: 0 clamp(12px, 2vw, 24px);
}

.trust-stats__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 12%;
    right: 0;
    width: 1px;
    height: 76%;
    background: linear-gradient(180deg, transparent, rgba(198, 164, 92, 0.28), transparent);
}

.trust-stats__value {
    margin: 0 0 10px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--color-accent-light);
}

.trust-stats__plus {
    font-family: var(--font-body);
    font-size: 0.45em;
    font-weight: 500;
    vertical-align: super;
    letter-spacing: 0;
    color: var(--color-accent-light);
}

.trust-stats__label {
    margin: 0;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 768px) {
    .trust-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .trust-stats__item:nth-child(2)::after {
        display: none;
    }

    .trust-stats__item:not(:last-child)::after {
        top: 8%;
        height: 84%;
    }

    .trust-stats__item:nth-child(even)::after {
        display: none;
    }
}

@media (max-width: 420px) {
    .trust-stats__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .trust-stats__item::after {
        display: none !important;
    }
}

/* Legacy fleet showcase (dark) — kept for subpages */
.fleet-showcase {
    background: #0a0a0a;
    padding: clamp(72px, 9vw, 112px) 0;
    scroll-margin-top: 96px;
}

.fleet-showcase__header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 64px);
}

.fleet-showcase__header h2 {
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 5vw, 3.25rem);
    font-weight: 400;
    margin: 12px 0 16px;
}

.fleet-showcase__intro {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.fleet-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 36px);
}

.fleet-card {
    text-align: center;
    padding: 8px 4px 24px;
    transition: transform 0.25s ease;
}

.fleet-card:hover {
    transform: translateY(-4px);
}

.fleet-card:hover .fleet-card__image-wrap {
    border-color: rgba(198, 164, 92, 0.35);
}

.fleet-card__meta {
    margin: 0 0 16px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.fleet-card__image-wrap {
    background: #0d0d0d;
    border: 1px solid rgba(198, 164, 92, 0.15);
    margin-bottom: 24px;
    overflow: hidden;
    aspect-ratio: 5 / 3;
}

.fleet-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fleet-card__title {
    margin: 0 0 6px;
    font-family: "Playfair Display", serif;
    font-size: 1.75rem;
    color: #ffffff;
}

.fleet-card__class {
    margin: 0 0 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.fleet-card__link {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    font-weight: 600;
}

.fleet-card__link:hover {
    color: #ffffff;
}

@media (max-width: 900px) {
    .fleet-showcase__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

/* Destinations map — Helvetia-style (Österreich + Nachbarn) */
.destinations-map {
    background: #080808;
    padding: clamp(88px, 11vw, 128px) 0;
    scroll-margin-top: 96px;
    border-top: 1px solid rgba(198, 164, 92, 0.1);
}

.destinations-map > .container {
    max-width: 1280px;
}

.destinations-map__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(40px, 5vw, 56px);
}

.destinations-map__title {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.35;
}

.destinations-map__title-line {
    display: block;
    color: #ffffff;
}

.destinations-map__title-accent {
    display: block;
    color: var(--color-accent-light);
}

.destinations-map__lead {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
}

.destinations-map__head::after {
    content: "";
    display: block;
    width: 64px;
    height: 1px;
    margin: 28px auto 0;
    background: linear-gradient(90deg, transparent, var(--color-accent-light), transparent);
}

.destinations-map__chips-wrap {
    margin: 0 auto clamp(40px, 5vw, 56px);
    max-width: 960px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.destinations-map__chips-wrap::-webkit-scrollbar {
    display: none;
}

.destinations-map__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
    padding: 0;
}

.destinations-map__chip {
    flex-shrink: 0;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
    border-radius: var(--radius-btn);
}
.destinations-map__chip:hover {
    border-color: rgba(198, 164, 92, 0.45);
    color: #ffffff;
}

.destinations-map__chip.is-active {
    border-color: var(--color-accent-light);
    background: rgba(198, 164, 92, 0.12);
    color: #ffffff;
}

.destinations-map__stage {
    position: relative;
    display: block;
    min-height: clamp(420px, 62vw, 580px);
    border: none;
    background: #000000;
    overflow: hidden;
}

.destinations-map__stage--connected {
    display: grid;
    grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
    align-items: stretch;
    min-height: clamp(460px, 52vw, 560px);
    border: 1px solid rgba(198, 164, 92, 0.42);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 24px 70px -30px rgba(0, 0, 0, 0.85);
    overflow: visible;
}

.destinations-map__bridge {
    display: none;
}

@media (min-width: 901px) {
    .destinations-map__stage {
        min-height: clamp(500px, 48vw, 600px);
        overflow: visible;
    }

    .destinations-map__stage--connected {
        min-height: clamp(480px, 42vw, 540px);
    }

    .destinations-map__bridge {
        display: block;
        position: absolute;
        left: min(300px, 28%);
        top: 18%;
        bottom: 18%;
        width: 1px;
        background: linear-gradient(
            180deg,
            transparent,
            rgba(198, 164, 92, 0.55) 20%,
            rgba(198, 164, 92, 0.55) 80%,
            transparent
        );
        z-index: 4;
        pointer-events: none;
    }
}

.destinations-map__visual {
    position: relative;
    width: 100%;
    min-height: clamp(360px, 50vw, 480px);
    padding: 0;
    border: none;
    background: #000000;
}

.destinations-map__map-frame {
    height: 100%;
    min-height: inherit;
    padding: clamp(14px, 2vw, 22px);
    border-left: 1px solid rgba(198, 164, 92, 0.18);
    background:
        radial-gradient(circle at 70% 40%, rgba(198, 164, 92, 0.06), transparent 55%),
        #050505;
    box-shadow: inset 0 0 40px rgba(198, 164, 92, 0.04);
}

.destinations-map__map-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

@media (min-width: 601px) {
    .destinations-map__map-wrap {
        transform: none;
    }

    .destinations-map__visual {
        margin-top: 0;
    }
}

@media (min-width: 901px) {
    .destinations-map__map-wrap {
        transform: none;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    .destinations-map__visual {
        margin-top: 0;
        min-height: 100%;
        overflow: hidden;
        padding-bottom: 0;
    }

    .destinations-map__svg {
        min-height: clamp(420px, 40vw, 500px);
    }

    .destinations-map__panel {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 1200px) {
    .destinations-map__map-wrap {
        padding-left: 0;
    }
}

.destinations-map__svg {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(420px, 62vw, 580px);
}

.destinations-map__panel {
    position: absolute;
    top: 50%;
    left: clamp(12px, 2.5vw, 28px);
    z-index: 3;
    transform: translateY(-50%);
    width: min(300px, 38%);
    padding: 0;
    background: transparent;
    pointer-events: none;
}

.destinations-map__stage--connected .destinations-map__panel {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    pointer-events: auto;
}

.destinations-map__panel-inner {
    pointer-events: auto;
    width: 100%;
    height: 100%;
    padding: clamp(22px, 2.5vw, 28px);
    background: rgba(8, 8, 8, 0.96);
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    min-height: 0;
    backdrop-filter: blur(8px);
    transition: background 0.35s ease;
}

.destinations-map__panel-inner.is-updating {
    background: rgba(12, 12, 12, 0.98);
}

.destinations-map__stage--connected .destinations-map__panel-inner {
    border-right: none;
}

.destinations-map__panel-label {
    margin: 0 0 8px;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(198, 164, 92, 0.8);
}

.destinations-map__city {
    margin: 0 0 14px;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.65rem, 2.8vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
    transition: opacity 0.25s ease, transform 0.35s ease;
}

.destinations-map__panel-inner.is-updating .destinations-map__city {
    animation: destCityPop 0.45s ease;
}

@keyframes destCityPop {
    0% { opacity: 0.4; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

.destinations-map__meta {
    margin: 0 0 18px;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
}

.destinations-map__meta--stacked {
    grid-template-columns: 1fr;
    gap: 14px;
}

.destinations-map__meta--stacked .destinations-map__meta-item + .destinations-map__meta-item {
    padding-top: 2px;
}

.destinations-map__meta-item {
    min-width: 0;
}

.destinations-map__meta dt {
    margin: 0 0 8px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.42);
}

.destinations-map__meta dd {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-accent-light);
    white-space: nowrap;
}

.destinations-map__meta dd span {
    color: var(--color-accent-light);
}

.destinations-map__meta dd span.is-counting {
    display: inline-block;
    min-width: 2.5ch;
}

.destinations-map__highlights {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.destinations-map__highlight {
    margin: 0;
    padding: 10px 12px;
    border-left: 2px solid var(--color-accent-light);
    background: rgba(198, 164, 92, 0.07);
    font-size: 0.78rem;
    line-height: 1.45;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.82);
    animation: destHighlightIn 0.45s ease both;
}

@keyframes destHighlightIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.destinations-map__vehicle {
    position: relative;
    margin-bottom: 16px;
    padding: 8px 0 0;
    text-align: center;
    flex: 0 0 auto;
}

.destinations-map__vehicle-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    margin: 0 auto 12px;
    padding: 0 36px;
}

.destinations-map__vehicle-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
}

.destinations-map__vehicle-arrow {
    pointer-events: auto;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.55);
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
    border-radius: 8px;
}

.destinations-map__vehicle-arrow:hover {
    border-color: var(--color-accent-light);
    color: var(--color-accent-light);
}

.destinations-map__vehicle-img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 112px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}

.destinations-map__vehicle-name {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
}

.destinations-map__vehicle-label {
    margin: 0;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.destinations-map__vehicle-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.destinations-map__vehicle-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.destinations-map__vehicle-dot.is-active {
    background: var(--color-accent-light);
    transform: scale(1.15);
}

.destinations-map__book {
    display: inline-block;
    margin-top: auto;
    padding-top: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    text-decoration: none;
    transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.destinations-map__book:hover {
    color: #ffffff;
    letter-spacing: 0.22em;
}

/* Helvetia-style map markers */
.dest-marker {
    cursor: pointer;
    outline: none;
}

.dest-marker__dot {
    fill: var(--color-accent-light);
    stroke: none;
    transition: fill 0.25s ease, r 0.25s ease;
}

.dest-marker.is-active .dest-marker__dot {
    fill: #ffffff;
}

.dest-marker__glow {
    fill: rgba(255, 255, 255, 0.22);
    opacity: 0;
    transition: opacity 0.25s ease, r 0.25s ease;
}

.dest-marker.is-active .dest-marker__glow {
    opacity: 1;
    animation: destMarkerPulse 2.2s ease-in-out infinite;
}

@keyframes destMarkerPulse {
    0%, 100% { r: 18; opacity: 0.85; }
    50% { r: 22; opacity: 1; }
}

.dest-marker__stem {
    stroke: var(--color-accent-light);
    stroke-width: 1;
    opacity: 0.85;
}

.dest-route__line {
    stroke: rgba(198, 164, 92, 0.22);
    stroke-width: 0.85;
    stroke-linecap: round;
    pointer-events: none;
}

.dest-marker__label-box {
    fill: rgba(8, 8, 8, 0.55);
    stroke: var(--color-accent-light);
    stroke-width: 1;
}

.dest-marker__label-text {
    fill: #ffffff;
    font-family: var(--font-body);
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    pointer-events: none;
}

.dest-marker:hover .dest-marker__dot,
.dest-marker:focus-visible .dest-marker__dot {
    fill: #ffffff;
}

@media (max-width: 900px) {
    .destinations-map__stage,
    .destinations-map__stage--connected {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .destinations-map__panel {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        order: 1;
        padding: 0;
        pointer-events: auto;
    }

    .destinations-map__panel-inner {
        max-width: none;
        margin: 0;
        box-shadow: none;
    }

    .destinations-map__map-frame {
        border-left: none;
        border-top: 1px solid rgba(198, 164, 92, 0.22);
    }

    .destinations-map__visual {
        order: 2;
        min-height: clamp(340px, 58vw, 480px);
        border-top: none;
    }

    .destinations-map__svg {
        min-height: clamp(340px, 58vw, 480px);
    }

    .dest-marker__label-text {
        font-size: 7.5px;
        letter-spacing: 0.12em;
    }
}

@media (max-width: 600px) {
    .destinations-map__meta {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .destinations-map__panel-inner {
        padding: 22px 18px 18px;
    }

    .dest-marker__label-text {
        font-size: 7px;
    }
}

/* Elegant booking form */
.booking-section--elegant {
    background: #080808;
}

.booking-elegant {
    max-width: 1180px;
    margin: 0 auto;
}

.booking-elegant__layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.95fr) minmax(320px, 1.05fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

.booking-elegant__visual {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking-elegant__badge {
    display: block;
    width: min(100%, 420px);
    height: auto;
    border-radius: 4px;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

.booking-elegant__frame {
    position: relative;
    padding: 14px;
    background:
        linear-gradient(135deg, rgba(198, 164, 92, 0.22), rgba(198, 164, 92, 0.04)),
        #0d0d0d;
    border: 1px solid rgba(198, 164, 92, 0.45);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 28px 60px -24px rgba(0, 0, 0, 0.75);
}

.booking-elegant__frame::before,
.booking-elegant__frame::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid var(--color-accent-light);
    pointer-events: none;
}

.booking-elegant__frame::before {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}

.booking-elegant__frame::after {
    right: 8px;
    bottom: 8px;
    border-top: none;
    border-left: none;
}

.booking-elegant__frame-inner {
    position: relative;
    padding: clamp(24px, 3vw, 36px);
    background: rgba(8, 8, 8, 0.92);
    border: 1px solid rgba(198, 164, 92, 0.18);
}

.booking-elegant__frame-inner::before,
.booking-elegant__frame-inner::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(198, 164, 92, 0.35);
    pointer-events: none;
}

.booking-elegant__frame-inner::before {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.booking-elegant__frame-inner::after {
    left: 10px;
    bottom: 10px;
    border-top: none;
    border-right: none;
}

.booking-elegant__frame-label {
    margin: 0 0 24px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent-light);
}

.booking-elegant__head {
    text-align: center;
    margin-bottom: clamp(44px, 6vw, 64px);
}

.booking-elegant__head .label-accent {
    display: block;
    margin-bottom: 14px;
    letter-spacing: 0.28em;
    font-size: 11px;
}

.booking-elegant__head h2 {
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0 0 16px;
}

.booking-elegant__head p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 auto;
    max-width: 36ch;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
}

.booking-elegant__head::after {
    content: "";
    display: block;
    width: 56px;
    height: 1px;
    margin: 32px auto 0;
    background: linear-gradient(90deg, transparent, var(--color-accent-light), transparent);
}

.booking-elegant__form {
    border: none;
    background: none;
    padding: 0;
}

.booking-elegant__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 48px);
    margin-bottom: clamp(32px, 4vw, 44px);
    padding-bottom: clamp(32px, 4vw, 44px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.booking-elegant__row--triple {
    grid-template-columns: repeat(3, 1fr);
    border-bottom: none;
    margin-bottom: clamp(40px, 5vw, 52px);
    padding-bottom: 0;
}

.booking-elegant__field label {
    display: block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(198, 164, 92, 0.72);
}

.booking-elegant__input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0 14px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.booking-elegant__input::placeholder {
    color: rgba(255, 255, 255, 0.26);
    font-weight: 300;
}

.booking-elegant__input:focus {
    outline: none;
    border-bottom-color: var(--color-accent-light);
}

.booking-elegant__input--datetime {
    color-scheme: dark;
}

.booking-elegant__select {
    appearance: none;
    cursor: pointer;
    padding-right: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23C6A45C' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.booking-elegant__select option {
    background: #111111;
    color: #ffffff;
}

.booking-elegant__actions {
    text-align: center;
}

.booking-elegant__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    margin: 0;
    padding: 17px 52px;
    border: 1px solid rgba(198, 164, 92, 0.45);
    background: transparent;
    color: var(--color-accent-light);
    box-shadow: none;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: var(--radius-btn);
}

.booking-elegant__submit:hover {
    background: var(--gradient-gold);
    background-size: 200% auto;
    background-position: right center;
    border-color: transparent;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px rgba(198, 164, 92, 0.45);
}

.booking-elegant__note {
    margin: 20px 0 0;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.35);
}

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

    .booking-elegant__badge {
        width: min(100%, 320px);
        margin: 0 auto;
    }

    .booking-elegant__row,
    .booking-elegant__row--triple {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .booking-elegant__submit {
        width: 100%;
        min-width: 0;
    }
}

/* Professional testimonials — white section */
.testimonials-pro {
    background: #ffffff;
    padding: clamp(72px, 9vw, 112px) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonials-pro__head {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 64px);
}

.testimonials-pro__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.testimonials-pro__title-accent {
    color: var(--color-accent-light);
}

.testimonials-pro__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 40px);
}

.testimonial-pro {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    text-align: center;
}

.testimonial-pro__rating {
    margin-bottom: 16px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-accent-light);
}

.testimonial-pro__quote {
    margin: 0 0 24px;
    font-family: "Playfair Display", serif;
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    line-height: 1.8;
    color: #333333;
    font-style: italic;
}

.testimonial-pro__quote::before {
    content: none;
}

.testimonial-pro__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.78rem;
    color: rgba(0, 0, 0, 0.45);
    letter-spacing: 0.04em;
}

.testimonial-pro__author strong {
    color: #1a1a1a;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

@media (max-width: 900px) {
    .testimonials-pro__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

/* Legacy testimonials-real */
.testimonials-real {
    background: #ffffff;
    padding: clamp(72px, 9vw, 100px) 0;
}

.testimonials-real__head {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-real__head h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-top: 10px;
}

.testimonials-real__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    margin: 0;
    padding: 32px 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.testimonial-card__stars {
    margin-bottom: 16px;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: var(--color-accent-light);
}

.testimonial-card blockquote {
    margin: 0 0 20px;
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #1a1a1a;
}

.testimonial-card figcaption {
    font-size: 0.82rem;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.04em;
}

.testimonial-card figcaption strong {
    color: #1a1a1a;
}

@media (max-width: 900px) {
    .testimonials-real__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

/* =========================================
   Fleet List Section (Luxury Cursor Reveal)
   ========================================= */
.fleet-list-section {
    padding: var(--space-xl) 0;
    background: #0B0B0B;
    position: relative;
    overflow: hidden;
}

.fleet-list-container {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.fleet-list-item {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.fleet-list-item:hover {
    padding-left: 30px;
    border-color: var(--color-accent);
}

.fli-name {
    font-size: clamp(32px, 5vw, 64px); /* Scaled down for elegance */
    font-family: var(--font-heading);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    pointer-events: none;
    transition: color 0.4s ease;
}

.fleet-list-item:hover .fli-name {
    color: var(--color-accent);
}

.fli-meta {
    text-align: right;
    pointer-events: none;
}

.fli-meta span {
    display: block;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
}

.fli-meta p {
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
    font-size: 15px;
    font-family: var(--font-heading);
}

/* =========================================
   Service Highlights (Cards)
   ========================================= */
.card-service {
    padding: 60px 40px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-card);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-color: var(--color-accent);
}

.card-num {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
    display: block;
}

.card-service h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #111;
}

.card-service p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.services-intro .card-service__body .card-num {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .services-intro .card-service__body {
        padding: 28px 24px 32px;
    }
}

.card-features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.card-features li {
    font-size: 14px;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.link-arrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #111;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.card-service:hover .link-arrow {
    color: var(--color-accent);
    gap: 15px;
}

.fleet-cursor-follower {
    position: fixed;
    width: 450px;
    aspect-ratio: 16 / 9;
    height: auto;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(198, 164, 92, 0.3);
    transform: translate(-50%, -50%) scale(0.6);
    transition: opacity 0.3s, visibility 0.3s, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

.fleet-cursor-follower img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .fleet-list-item { padding: 40px 0; flex-direction: column; align-items: flex-start; gap: 20px; }
    .fli-meta { text-align: left; }
    .fleet-cursor-follower { display: none; }
}


/* =========================================
   Custom Cursor (Shery.js)
   ========================================= */
.shery-mousefollower {
    background: transparent !important;
    border: 1px solid var(--color-accent) !important;
    height: 40px !important;
    width: 40px !important;
    transition: width 0.3s, height 0.3s, border-radius 0.3s, transform 0.1s !important;
    z-index: 99999 !important; /* Force to top */
    pointer-events: none !important; /* Ensure it doesn't block clicks */
}

body:active .shery-mousefollower {
    transform: scale(0.8) !important;
}

.shery-mousefollower::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    z-index: 99999 !important;
}

/* =========================================
   Luxurious Preloader
   ========================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #060606;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preloader__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% 42%, rgba(198, 164, 92, 0.1) 0%, transparent 58%),
        radial-gradient(ellipse 90% 70% at 50% 100%, rgba(198, 164, 92, 0.05) 0%, transparent 45%),
        #060606;
}

.preloader__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
}

.preloader__logo {
    display: block;
    width: clamp(92px, 20vw, 132px);
    height: clamp(92px, 20vw, 132px);
    object-fit: contain;
    margin: 0 0 22px;
    border-radius: 50%;
}

.preloader__brand {
    margin: 0 0 28px;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #ffffff;
}

.preloader__brand span {
    color: var(--color-accent-light);
}

.preloader__track,
.loader-line-wrap {
    width: min(240px, 70vw);
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.preloader__fill,
.loader-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(198, 164, 92, 0.2), var(--color-accent-light), rgba(229, 209, 154, 0.95), var(--color-accent-light), rgba(198, 164, 92, 0.2));
    transform: translateX(-100%);
}

.preloader__tagline {
    margin: 22px 0 0;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 2rem);
    color: #fff;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 28px;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .loader-logo,
    .preloader__brand {
        font-size: 1rem;
        letter-spacing: 0.22em;
    }

    .loader-line-wrap,
    .preloader__track {
        width: 160px;
    }
}

.loader-logo span,
.preloader__brand span {
    color: var(--color-accent-light);
}

.loader-line-wrap {
    width: min(240px, 70vw);
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.preloader-hidden {
    opacity: 0;
    pointer-events: none;
}

/* Ensure content is hidden until preloader is done */
body.loading {
    overflow: hidden;
}

@media (max-width: 900px) {
    .shery-mousefollower { display: none !important; }
}

/* =========================================
   Client Stories Carousel (Swiper)
   ========================================= */
.stories-carousel-wrapper {
    width: 100%;
    margin: 40px 0;
}

.story-card {
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--gutter);
    background: #0B0B0B;
    overflow: hidden;
    border-top: 1px solid rgba(198, 164, 92, 0.1);
    border-bottom: 1px solid rgba(198, 164, 92, 0.1);
}

.story-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(198, 164, 92, 0.07) 0%, transparent 42%),
        radial-gradient(circle at 82% 72%, rgba(198, 164, 92, 0.05) 0%, transparent 38%);
    pointer-events: none;
}

.story-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.story-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 42px);
    line-height: 1.3;
    color: #fff;
    margin-bottom: 40px;
    font-style: italic;
}

.story-author h4 {
    color: var(--color-accent);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
}

.story-author span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.swiper-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    gap: 15px;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #fff !important;
    opacity: 0.3 !important;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 0 !important;
}

.swiper-pagination-bullet-active {
    background: var(--color-accent) !important;
    opacity: 1 !important;
    transform: scale(1.4);
}

.carousel-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.carousel-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .story-card { min-height: 400px; padding: var(--space-lg) var(--space-md); }
    .story-quote { font-size: 24px; }
}



details {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 20px 0;
}
summary {
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
}
summary::-webkit-details-marker { display: none; }
summary::after {
    content: '+';
    font-weight: 300;
    color: var(--color-accent);
}
details[open] summary::after {
    content: '-';
}
details p {
    margin-top: 20px;
    opacity: 0.8;
}

/* Homepage FAQ */
.home-faq {
    padding: clamp(72px, 10vw, 120px) 0;
    background: #fafafa;
}

.home-faq__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.home-faq__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: 0.08em;
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-text-main);
}

.home-faq__title-accent {
    color: var(--color-accent-light);
}

.home-faq__lead {
    margin-top: 16px;
    opacity: 0.72;
    font-size: 1.05rem;
    line-height: 1.6;
}

.home-faq__list {
    max-width: 760px;
    margin: 0 auto;
}

.home-faq__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 22px 0;
}

.home-faq__item summary {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.home-faq__item p {
    margin-top: 14px;
    line-height: 1.7;
    opacity: 0.78;
    max-width: 62ch;
}

/* Final CTA band */
.home-cta-final {
    position: relative;
    padding: clamp(80px, 12vw, 140px) 0;
    background: #070707;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.home-cta-final__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    z-index: 0;
}

.home-cta-final--photo::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.35) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
}

.home-cta-final__glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(198, 164, 92, 0.14), transparent 70%),
        radial-gradient(circle at 20% 20%, rgba(198, 164, 92, 0.06), transparent 45%);
    pointer-events: none;
}

.home-cta-final__inner {
    position: relative;
    z-index: 3;
    max-width: 720px;
}

.home-cta-final__title {
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 56px);
    letter-spacing: 0.1em;
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
}

.home-cta-final__title-main {
    display: block;
    color: #fff;
}

.home-cta-final__title-accent {
    display: block;
    color: var(--color-accent-light);
}

.home-cta-final__lead {
    margin: 20px auto 0;
    max-width: 52ch;
    opacity: 0.78;
    line-height: 1.65;
    font-size: 1.05rem;
}

.home-cta-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 36px;
}

.home-cta-final__phone {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.home-cta-final__phone:hover {
    border-color: var(--color-accent-light);
    color: var(--color-accent-light);
}

@media (max-width: 768px) {
    .lang-switch:not(.lang-switch--mobile) {
        display: none;
    }

    .home-cta-final__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-cta-final__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

html[dir="rtl"] .site-header .header-btns,
html[dir="rtl"] .nav-desktop {
    flex-direction: row-reverse;
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .section-head,
html[dir="rtl"] .service-card,
html[dir="rtl"] .faq-item,
html[dir="rtl"] .testimonial-pro {
    text-align: right;
}

html[dir="rtl"] .hero-btn-group {
    justify-content: flex-start;
}

html[dir="rtl"] .dest-map-layout {
    direction: ltr;
}
