.elementor-48 .elementor-element.elementor-element-97dd98c{--display:flex;}.elementor-48 .elementor-element.elementor-element-c757f90{--display:flex;}.elementor-48 .elementor-element.elementor-element-fd9a3c5{margin:-22px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-48 .elementor-element.elementor-element-76bcd4d{--display:flex;}.elementor-48 .elementor-element.elementor-element-e8cb22b{margin:-21px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-48 .elementor-element.elementor-element-4aaad7b{--display:flex;}.elementor-48 .elementor-element.elementor-element-4c897bd{margin:-25px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-48 .elementor-element.elementor-element-48a82e9{--display:flex;}.elementor-48 .elementor-element.elementor-element-b6f8c30{margin:-21px 0px calc(var(--kit-widget-spacing, 0px) + -85px) 0px;}.elementor-48 .elementor-element.elementor-element-308b685{--display:flex;}.elementor-48 .elementor-element.elementor-element-18b6376{margin:-97px 0px calc(var(--kit-widget-spacing, 0px) + -30px) 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-d2215d5 */:root {
            --rose-gold: #b96f5b;
        }

        body {
            margin: 0;
            font-family: 'Montserrat', sans-serif;
            background-color: #000;
            color: #fff;
            overflow-x: hidden; /* Empêche le scroll horizontal indésirable */
        }

        /* --- SECTION 1: DUAL-TONE HERO --- */
        .ay-flotte-hero {
            width: 100vw;
            /* CORRECTION 1: On utilise min-height et height auto pour que le contenu ne soit pas coupé */
            min-height: 100vh;
            height: auto; 
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            background: #000;
            overflow: hidden;
            display: flex; /* Ajouté pour étirer l'enfant sur la hauteur totale */
        }

        .flotte-hero-split {
            display: flex;
            width: 100%;
            flex: 1; /* Remplit l'espace disponible */
        }

        .flotte-hero-visual {
            flex: 1.2;
            position: relative;
        }

        .flotte-hero-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .flotte-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 60%, #000 100%);
        }

        .flotte-hero-text {
            flex: 0.8;
            background: #000;
            display: flex;
            align-items: center;
            padding: 0 5%;
        }

        .flotte-tag {
            color: var(--rose-gold) !important;
            font-size: 14px;
            letter-spacing: 6px;
            text-transform: uppercase;
            font-weight: 700;
            display: block;
            margin-bottom: 10px;
        }

        .flotte-title {
            /* CORRECTION 2: Clamp ajusté pour les petits écrans (2.2rem au lieu de 3rem) */
            font-size: clamp(2.2rem, 5vw, 4.5rem);
            color: #fff !important;
            line-height: 1.1;
            margin: 15px 0 25px 0;
            font-weight: 800;
            text-transform: uppercase;
        }

        /* Ajout de la classe de gradient qui manquait dans le CSS fourni */
        .text-gold-gradient {
            background: linear-gradient(to right, #fff0e8, var(--rose-gold), #fff0e8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .flotte-p {
            color: #d1d1d1 !important; /* STRICT NO BLUE */
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 500px; /* Améliore la lisibilité sur grand écran */
        }

        .flotte-quick-stats {
            display: flex;
            gap: 40px;
        }

        .stat-box strong {
            display: block;
            font-size: 2.5rem; /* Légèrement plus grand pour l'impact */
            color: #f4d1c6;
            line-height: 1;
            margin-bottom: 5px;
        }

        .stat-box span {
            color: #888;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 2px;
            font-weight: 600;
        }

        /* --- DIVIDER: LIQUID SWEEP --- */
        .ay-divider-liquid {
            width: 100vw;
            height: 4px;
            background: #111; /* Légèrement plus clair que noir pour qu'on le voie */
            position: relative;
            left: 50%;
            transform: translateX(-50%);
            overflow: hidden;
        }

        .liquid-drop {
            position: absolute;
            width: 200px;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
            animation: liquidMove 4s infinite ease-in-out; /* Accéléré légèrement (4s) */
        }

        @keyframes liquidMove {
            0% { left: -200px; }
            100% { left: 100%; }
        }

        /* =====================================
           MOBILE RESPONSIVENESS CORRIGÉE
           ===================================== */
        @media (max-width: 1024px) {
            .flotte-hero-split { 
                flex-direction: column; 
            }
            
            .flotte-hero-visual {
                flex: none; /* Désactive le ratio flex */
                /* CORRECTION 3: On donne une hauteur fixe à l'image sur mobile */
                height: 50vh; 
                width: 100%;
            }

            .flotte-hero-overlay { 
                /* L'ombrege vient du bas vers le haut pour lier avec le texte en dessous */
                background: linear-gradient(to top, #000 5%, transparent 60%); 
            }
            
            .flotte-hero-text { 
                flex: none;
                padding: 50px 8% 80px 8%; /* Plus d'espace en bas */
                align-items: flex-start; /* Aligne le texte en haut dans son bloc */
            }

            .flotte-p {
                font-size: 1rem;
            }

            .flotte-quick-stats {
                gap: 30px; /* Un peu moins d'espace entre les stats sur mobile */
            }
        }

        @media (max-width: 400px) {
            .flotte-title {
                font-size: 2rem;
            }
            .stat-box strong {
                font-size: 2rem;
            }
        }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fd9a3c5 *//* --- GLOBAL LUXURY VARIABLE --- */
    :root {
        --rose-gold: #b96f5b;
        --rose-gold-light: #d89b8b;
    }

    /* --- PAGE 3, SECTION 1: SPLIT HERO --- */
    .ay-services-hero {
        width: 100vw;
        height: 85vh;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        background: #000;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    /* Individual Panels */
    .split-panel {
        flex: 1;
        position: relative;
        height: 100%;
        overflow: hidden;
        cursor: pointer;
        /* The magic expansion transition */
        transition: flex 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-right: 1px solid rgba(185, 111, 91, 0.15);
    }

    .split-panel:last-child {
        border-right: none;
    }

    /* Hover Expansion Logic */
    .split-panel:hover {
        flex: 1.6; /* Expands to take up more room */
    }

    /* Background Imagery */
    .split-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: grayscale(60%) brightness(0.4) contrast(1.1);
        transform: scale(1.1);
        transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .split-panel:hover .split-bg {
        filter: grayscale(10%) brightness(0.7);
        transform: scale(1); /* Slow zoom out on hover */
    }

    /* Gradients for text legibility */
    .split-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
        transition: opacity 0.8s ease;
    }

    /* Content Positioning */
    .split-content {
        position: absolute;
        bottom: 10%;
        left: 0;
        width: 100%;
        padding: 0 10%;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* The large background number */
    .split-number {
        color: transparent;
        -webkit-text-stroke: 1px rgba(185, 111, 91, 0.5);
        font-size: 4rem;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 15px;
        transition: all 0.6s ease;
    }

    .split-panel:hover .split-number {
        -webkit-text-stroke: 1px rgba(185, 111, 91, 1);
        transform: translateY(-10px);
    }

    .split-title {
        color: #ffffff;
        font-size: clamp(2rem, 3.5vw, 3.5rem);
        font-weight: 800;
        text-transform: uppercase;
        line-height: 1.1;
        margin-bottom: 0;
        transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .split-panel:hover .split-title {
        color: var(--rose-gold);
        margin-bottom: 20px;
    }

    /* Hidden Description & Button that reveal on hover */
    .split-hidden-content {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
        transform: translateY(20px);
    }

    .split-panel:hover .split-hidden-content {
        max-height: 200px;
        opacity: 1;
        transform: translateY(0);
    }

    .split-desc {
        color: #d1d1d1;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 25px;
        max-width: 400px;
    }

    .split-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #ffffff;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-decoration: none;
        border-bottom: 1px solid var(--rose-gold);
        padding-bottom: 5px;
        transition: all 0.3s ease;
    }

    .split-btn:hover {
        color: var(--rose-gold-light);
        gap: 15px;
    }

    /* Central Decorative Line */
    .hero-center-line {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 100%;
        background: linear-gradient(to bottom, transparent, var(--rose-gold), transparent);
        z-index: 10;
        pointer-events: none;
    }

    /* --- MOBILE RESPONSIVENESS --- */
    @media (max-width: 968px) {
        .ay-services-hero {
            flex-direction: column; /* Stack vertically on mobile */
            height: 100vh; /* Full screen to fit both */
        }
        .split-panel {
            flex: 1 !important; /* Disable hover expansion on mobile */
            border-right: none;
            border-bottom: 1px solid rgba(185, 111, 91, 0.2);
        }
        .hero-center-line {
            display: none; /* Hide vertical line on mobile */
        }
        /* Keep content visible on mobile since hover doesn't exist */
        .split-hidden-content {
            max-height: 200px;
            opacity: 1;
            transform: translateY(0);
            margin-top: 15px;
        }
        .split-bg {
            filter: grayscale(30%) brightness(0.5); /* Brighten base state for mobile readability */
        }
        .split-title {
            margin-bottom: 15px;
            font-size: 2.2rem;
        }
        .split-content {
            bottom: 5%;
        }
    }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e8cb22b *//* --- PAGE 3, SECTION 2: FLEET SHOWROOM --- */
    .ay-fleet-showroom {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        background: #030303;
        padding: 120px 5%;
        overflow: hidden;
    }

    /* Section Header */
    .fleet-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 80px auto;
    }

    .fleet-tag {
        color: var(--rose-gold) !important;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 4px;
        display: block;
        margin-bottom: 15px;
    }

    .fleet-title {
        color: #ffffff !important;
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 25px;
        text-transform: uppercase;
    }

    .fleet-desc {
        color: #a0a0a0;
        font-size: 1.1rem;
        line-height: 1.7;
    }

    /* The Grid */
    .fleet-grid {
        max-width: 1300px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    /* Individual Vehicle Card */
    .fleet-card {
        position: relative;
        height: 650px;
        background: #0a0a0a;
        border-radius: 4px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        cursor: pointer;
    }

    .fleet-card:hover {
        border-color: rgba(185, 111, 91, 0.6);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(185, 111, 91, 0.1);
        transform: translateY(-10px);
    }

    /* Background Images */
    .f-card-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: grayscale(70%) brightness(0.6) contrast(1.1);
        transition: transform 0.8s ease, filter 0.8s ease;
    }

    .fleet-card:hover .f-card-bg {
        transform: scale(1.05);
        filter: grayscale(20%) brightness(0.3) contrast(1.2); /* Dims to reveal text */
    }

    /* Gradient Overlays */
    .f-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
    }

    /* Card Content */
    .f-card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 40px 30px;
        z-index: 2;
        display: flex;
        flex-direction: column;
    }

    .f-card-category {
        color: var(--rose-gold);
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }

    .f-card-title {
        color: #ffffff;
        font-size: 2rem;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    .f-card-models {
        color: #888888;
        font-size: 0.9rem;
        font-style: italic;
        margin-bottom: 20px;
        transition: opacity 0.4s ease;
    }

    .fleet-card:hover .f-card-models {
        opacity: 0; /* Fades out to make room for specs */
    }

    /* The Hidden Specs Box (Slides up on hover) */
    .f-card-specs {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-top: 1px solid rgba(185, 111, 91, 0.3);
        padding-top: 0;
    }

    .fleet-card:hover .f-card-specs {
        max-height: 250px;
        opacity: 1;
        padding-top: 20px;
        margin-top: -10px; /* Pulls it up tight against the title */
    }

    .spec-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
        color: #d1d1d1;
        font-size: 0.95rem;
    }

    .spec-icon {
        width: 20px;
        height: 20px;
        fill: var(--rose-gold);
    }

    .f-card-btn {
        display: inline-block;
        margin-top: 10px;
        color: #ffffff;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .f-card-btn:hover {
        color: var(--rose-gold-light);
    }

    /* --- MOBILE RESPONSIVENESS --- */
    @media (max-width: 968px) {
        .fleet-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }
        .fleet-card {
            height: 550px;
        }
        .fleet-card:hover {
            transform: none;
        }
        /* Reveal specs immediately on mobile since there is no mouse hover */
        .f-card-specs {
            max-height: 300px;
            opacity: 1;
            padding-top: 20px;
            margin-top: 10px;
        }
        .f-card-models {
            display: none;
        }
        .f-card-bg {
            filter: grayscale(40%) brightness(0.4) contrast(1.1);
        }
    }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4c897bd *//* --- SECTION CONTAINER --- */
    .ay-bespoke-services {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        background: #000000;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    /* --- THE INTERACTIVE SHOWCASE WRAPPER --- */
    .bs-showcase {
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
        display: flex;
        height: 80vh;
        gap: 5%;
        padding: 0 5%;
    }

    /* --- LEFT: THE TYPOGRAPHY LIST --- */
    .bs-list-col {
        flex: 0 0 45%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 10;
    }

    .bs-header-tag {
        color: var(--rose-gold, #b96f5b);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 40px;
        display: block;
    }

    .bs-item {
        padding: 30px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        cursor: pointer;
        position: relative;
        transition: padding-left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .bs-item:first-of-type {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Text Elements */
    .bs-num {
        position: absolute;
        left: 0;
        top: 35px;
        font-size: 14px;
        font-weight: 600;
        color: #555;
        transition: color 0.4s ease;
    }

    .bs-name {
        color: #ffffff;
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        font-weight: 800;
        text-transform: uppercase;
        margin: 0 0 10px 40px;
        transition: color 0.4s ease, transform 0.4s ease;
    }

    .bs-desc {
        color: #888;
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 0 0 40px;
        max-width: 400px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    /* --- HOVER INTERACTIONS FOR THE LIST --- */
    .bs-item:hover {
        padding-left: 20px; /* Slides the whole item right */
        border-bottom: 1px solid var(--rose-gold, #b96f5b);
    }

    .bs-item:hover .bs-num {
        color: var(--rose-gold, #b96f5b);
    }

    .bs-item:hover .bs-name {
        color: var(--rose-gold, #b96f5b);
    }

    .bs-item:hover .bs-desc {
        max-height: 100px;
        opacity: 1;
        margin-top: 15px;
    }

    /* Dim unhovered items when the list is hovered */
    .bs-list-col:hover .bs-item:not(:hover) {
        opacity: 0.3;
    }

    /* --- RIGHT: THE CINEMATIC VISUALS --- */
    .bs-visuals-col {
        flex: 1;
        position: relative;
        height: 100%;
        border-radius: 4px;
        overflow: hidden;
    }

    /* The Image Stack */
    .bs-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        filter: grayscale(40%) brightness(0.6);
        transform: scale(1.1);
        transition: opacity 0.8s ease, transform 2s ease;
    }

    /* The Default Image (Shows when nothing is hovered) */
    .bs-img-default {
        opacity: 1;
        transform: scale(1);
    }

    /* --- THE CSS MAGIC: DYNAMIC CROSSFADING VIA :HAS() --- */
    
    /* When Item 1 is hovered */
    .bs-showcase:has(.bs-item-1:hover) .bs-img-1 {
        opacity: 1;
        transform: scale(1); /* Smooth zoom in */
        z-index: 2;
    }
    
    /* When Item 2 is hovered */
    .bs-showcase:has(.bs-item-2:hover) .bs-img-2 {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }

    /* When Item 3 is hovered */
    .bs-showcase:has(.bs-item-3:hover) .bs-img-3 {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }

    /* When Item 4 is hovered */
    .bs-showcase:has(.bs-item-4:hover) .bs-img-4 {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }

    /* Optional: Hide default image when ANY item is hovered to prevent ghosting */
    .bs-showcase:has(.bs-item:hover) .bs-img-default {
        opacity: 0;
    }

    /* Inner Frame for that Luxury touch */
    .bs-visuals-col::after {
        content: '';
        position: absolute;
        inset: 20px;
        border: 1px solid rgba(185, 111, 91, 0.3);
        z-index: 5;
        pointer-events: none;
        transition: border-color 0.5s ease;
    }

    .bs-showcase:has(.bs-item:hover) .bs-visuals-col::after {
        border-color: rgba(185, 111, 91, 0.8);
    }

    /* --- MOBILE RESPONSIVENESS --- */
    @media (max-width: 968px) {
        .bs-showcase {
            flex-direction: column;
            height: auto;
            padding: 80px 5%;
            gap: 40px;
        }
        .bs-list-col {
            flex: none;
            width: 100%;
        }
        .bs-visuals-col {
            flex: none;
            width: 100%;
            height: 400px;
        }
        .bs-desc {
            max-height: 200px;
            opacity: 1;
            margin-top: 15px;
        }
        /* Lock hover states for mobile */
        .bs-list-col:hover .bs-item:not(:hover) {
            opacity: 1;
        }
        .bs-item:hover {
            padding-left: 0;
        }
    }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b6f8c30 */.ay-divider-ascent {
    width: 100vw;
    height: 80px;
    background: #000000;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.ascent-beam {
    width: 2px;
    height: 0%;
    background: linear-gradient(to top, var(--rose-gold), transparent);
    box-shadow: 0 0 10px var(--rose-gold);
    animation: shootUp 3s infinite ease-out;
}

@keyframes shootUp {
    0% { height: 0%; opacity: 1; align-self: flex-end; }
    80% { height: 100%; opacity: 0; align-self: flex-end; }
    100% { height: 100%; opacity: 0; align-self: flex-end; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-18b6376 *//* --- CTA CONTAINER --- */
    .ay-services-cta {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        background: #020202;
        padding: 120px 5%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        margin: 0;
    }

    /* Ambient Background Glow */
    .cta-ambient-glow {
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(185, 111, 91, 0.15) 0%, transparent 70%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 0;
        animation: pulseGlow 6s infinite alternate ease-in-out;
    }

    @keyframes pulseGlow {
        0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
        100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
    }

    /* --- THE CONCIERGE CARD --- */
    .cta-concierge-card {
        position: relative;
        z-index: 5;
        width: 100%;
        max-width: 900px;
        background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(5, 5, 5, 0.95));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(185, 111, 91, 0.25);
        border-radius: 2px;
        padding: 80px 60px;
        text-align: center;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        overflow: hidden;
    }

    /* Decorative Inner Lines */
    .cta-concierge-card::before {
        content: '';
        position: absolute;
        inset: 15px;
        border: 1px solid rgba(185, 111, 91, 0.1);
        pointer-events: none;
    }

    /* Sweep Animation on Hover */
    .cta-concierge-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(185, 111, 91, 0.05), transparent);
        transform: skewX(-20deg);
        transition: left 0.8s ease;
        pointer-events: none;
    }

    .cta-concierge-card:hover::after {
        left: 200%;
    }

    /* --- CONTENT --- */
    .cta-icon {
        width: 40px;
        height: 40px;
        fill: var(--rose-gold, #b96f5b);
        margin: 0 auto 25px auto;
        display: block;
    }

    .cta-tag {
        color: var(--rose-gold, #b96f5b);
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 5px;
        display: block;
        margin-bottom: 20px;
    }

    .cta-title {
        color: #ffffff;
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 800;
        line-height: 1.1;
        text-transform: uppercase;
        margin-bottom: 25px;
    }

    .cta-desc {
        color: #a0a0a0;
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 500px;
        margin: 0 auto 40px auto;
    }

    /* --- THE GOLD BUTTON --- */
    .cta-gold-btn {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 18px 45px;
        background: transparent;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        text-decoration: none;
        border: 1px solid var(--rose-gold, #b96f5b);
        overflow: hidden;
        transition: all 0.4s ease;
        z-index: 1;
        cursor: pointer;
    }

    .cta-gold-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--rose-gold, #b96f5b);
        z-index: -1;
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .cta-gold-btn:hover {
        color: #000000;
        border-color: transparent;
    }

    .cta-gold-btn:hover::before {
        transform: scaleY(1);
        transform-origin: top;
    }

    /* Contact Details Below Button */
    .cta-contact-direct {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .cta-contact-item {
        color: #777;
        font-size: 13px;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.3s ease;
    }

    .cta-contact-item:hover {
        color: var(--rose-gold, #b96f5b);
    }

    .cta-contact-item svg {
        width: 14px;
        height: 14px;
        fill: currentColor;
    }

    /* --- MOBILE RESPONSIVENESS --- */
    @media (max-width: 768px) {
        .cta-concierge-card {
            padding: 60px 30px;
        }
        .cta-contact-direct {
            flex-direction: column;
            gap: 15px;
        }
    }/* End custom CSS */