.elementor-221 .elementor-element.elementor-element-56e5f20{--display:flex;}.elementor-221 .elementor-element.elementor-element-60a87db{--display:flex;}.elementor-221 .elementor-element.elementor-element-82e17ff{margin:-24px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-221 .elementor-element.elementor-element-411efed{--display:flex;}.elementor-221 .elementor-element.elementor-element-a8b9dfe{margin:-21px 0px calc(var(--kit-widget-spacing, 0px) + -55px) 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-bd4d5cc *//* --- GLOBAL VARIABLES --- */
    :root {
        --rose-gold: #b96f5b;
        --rose-gold-light: #d89b8b;
        --dark-bg: #030303;
    }

    /* --- HERO CONTAINER --- */
    .ay-booking-hero {
        width: 100vw;
        min-height: 100vh;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        background: var(--dark-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 120px 5%;
        overflow: hidden;
        margin: 0;
    }

    /* Subtle Background Texture/Image */
    .booking-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.15; /* Very subtle */
        filter: grayscale(100%) contrast(1.2);
        z-index: 0;
        pointer-events: none;
    }

    /* Radial Gradient to focus attention */
    .booking-gradient {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 75% 50%, rgba(185, 111, 91, 0.08) 0%, transparent 60%);
        z-index: 1;
        pointer-events: none;
    }

    /* --- THE TWO-COLUMN LAYOUT --- */
    .booking-wrapper {
        position: relative;
        z-index: 5;
        width: 100%;
        max-width: 1400px;
        display: flex;
        align-items: center;
        gap: 8%;
    }

    /* --- LEFT: EDITORIAL COPY --- */
    .booking-text-col {
        flex: 1;
    }

    .bk-tag {
        color: var(--rose-gold);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 25px;
        display: block;
    }

    .bk-title {
        color: #ffffff;
        font-size: clamp(2.5rem, 4.5vw, 4rem);
        font-weight: 800;
        line-height: 1.05;
        text-transform: uppercase;
        margin-bottom: 30px;
    }

    .bk-desc {
        color: #a0a0a0;
        font-size: 1.15rem;
        line-height: 1.7;
        max-width: 450px;
        margin-bottom: 50px;
    }

    /* Trust Indicators */
    .bk-trust-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .trust-item {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .trust-icon {
        width: 24px;
        height: 24px;
        fill: var(--rose-gold);
    }

    .trust-title {
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .trust-text {
        color: #666;
        font-size: 13px;
        line-height: 1.5;
    }

    /* --- RIGHT: THE GLASSMORPHISM FORM --- */
    .booking-form-col {
        flex: 1;
        max-width: 550px;
        background: rgba(15, 15, 15, 0.6);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 4px;
        padding: 50px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    }

    .form-header {
        margin-bottom: 40px;
    }

    .form-title {
        color: #ffffff;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .form-subtitle {
        color: #888;
        font-size: 0.95rem;
    }

    /* Form Fields - Floating Labels Setup */
    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
    }

    .input-group {
        position: relative;
        flex: 1;
        margin-bottom: 30px;
    }

    .form-row .input-group {
        margin-bottom: 0;
    }

    .input-group input,
    .input-group select {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        color: #ffffff;
        font-size: 1rem;
        padding: 10px 0;
        outline: none;
        border-radius: 0;
        transition: border-color 0.3s ease;
    }

    /* Fix dropdown options visibility */
    .input-group select option {
        background-color: #111111;
        color: #ffffff;
        padding: 10px;
    }

    /* Force native calendar icons to display in light mode against the dark background */
    .input-group input[type="date"],
    .input-group input[type="time"] {
        color-scheme: dark;
    }

    /* Remove default select styling */
    .input-group select {
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
    }

    /* The Floating Label */
    .input-group label {
        position: absolute;
        top: 10px;
        left: 0;
        color: #777;
        font-size: 1rem;
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    /* Floating action when focused or filled (using :valid or :focus) */
    .input-group input:focus,
    .input-group select:focus {
        border-bottom-color: var(--rose-gold);
    }

    .input-group input:focus ~ label,
    .input-group input:valid ~ label,
    .input-group select:focus ~ label,
    .input-group select:valid ~ label {
        top: -18px;
        font-size: 11px;
        color: var(--rose-gold);
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 600;
    }

    /* Submit Button */
    .bk-submit-btn {
        width: 100%;
        background: var(--rose-gold);
        color: #ffffff;
        border: none;
        padding: 18px 0;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        cursor: pointer;
        transition: all 0.4s ease;
        margin-top: 10px;
    }

    .bk-submit-btn:hover {
        background: #ffffff;
        color: #000000;
    }

    /* --- MOBILE RESPONSIVENESS --- */
    @media (max-width: 968px) {
        .booking-wrapper {
            flex-direction: column;
            gap: 60px;
        }
        .booking-form-col {
            padding: 40px 25px;
            width: 100%;
        }
        .form-row {
            flex-direction: column;
            gap: 30px;
        }
    }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-82e17ff *//* --- SECTION CONTAINER --- */
    .ay-contact-info {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        background: #000000; /* Deep black for contrast */
        padding: 120px 5%;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: center;
        margin: 0;
    }

    .info-wrapper {
        width: 100%;
        max-width: 1400px;
        display: flex;
        gap: 8%;
    }

    /* --- LEFT: DIRECT CONTACT DIRECTORY --- */
    .info-directory-col {
        flex: 0 0 40%;
    }

    .info-tag {
        color: var(--rose-gold, #b96f5b);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 20px;
        display: block;
    }

    .info-title {
        color: #ffffff;
        font-size: clamp(2rem, 3.5vw, 3rem);
        font-weight: 800;
        line-height: 1.1;
        text-transform: uppercase;
        margin-bottom: 40px;
    }

    .directory-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .directory-block {
        border-left: 1px solid rgba(185, 111, 91, 0.3);
        padding-left: 25px;
        transition: border-color 0.3s ease;
    }

    .directory-block:hover {
        border-left-color: var(--rose-gold, #b96f5b);
    }

    .dir-label {
        color: #888;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
        display: block;
    }

    .dir-value {
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 5px;
        transition: color 0.3s ease;
    }

    .dir-value:hover {
        color: var(--rose-gold, #b96f5b);
    }

    .dir-subtext {
        color: #666;
        font-size: 0.95rem;
        display: block;
    }

    /* --- RIGHT: THE FAQ ACCORDION --- */
    .info-faq-col {
        flex: 1;
        padding-top: 20px;
    }

    /* Styling the HTML5 Details/Summary tags */
    .faq-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 20px;
    }

    .faq-question {
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 25px 0;
        cursor: pointer;
        position: relative;
        list-style: none; /* Remove default arrow */
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: color 0.3s ease;
    }

    /* Remove default webkit marker */
    .faq-question::-webkit-details-marker {
        display: none;
    }

    .faq-question:hover {
        color: var(--rose-gold, #b96f5b);
    }

    /* The Plus/Minus Icon using CSS */
    .faq-question::after {
        content: '+';
        color: var(--rose-gold, #b96f5b);
        font-size: 1.8rem;
        font-weight: 300;
        transition: transform 0.4s ease;
    }

    .faq-item[open] .faq-question::after {
        content: '−';
        transform: rotate(180deg);
    }

    .faq-answer {
        color: #a0a0a0;
        font-size: 1.05rem;
        line-height: 1.7;
        padding-bottom: 30px;
        padding-right: 40px;
        /* Animation for smooth opening */
        animation: slideDown 0.4s ease-out forwards;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* --- MOBILE RESPONSIVENESS --- */
    @media (max-width: 968px) {
        .info-wrapper {
            flex-direction: column;
            gap: 60px;
        }
        .info-directory-col {
            flex: none;
        }
        .faq-question {
            font-size: 1.1rem;
            padding-right: 20px;
        }
    }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a8b9dfe *//* --- ELEGANT SECTION DIVIDER --- */
    .ay-divider {
        width: 100vw;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(185, 111, 91, 0.5), transparent);
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        z-index: 10;
    }

    /* --- FINAL CTA CONTAINER --- */
    .ay-final-cta {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        padding: 160px 5%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background-color: #000000;
        margin: 0;
    }

    /* --- PARALLAX BACKGROUND --- */
    /* Using the uploaded Brabus/Luxury Grille Image */
    .fcta-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://images.unsplash.com/photo-1660108351378-745ea8fcedc8?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
        background-size: cover;
        background-position: center;
        /* The magic property that creates the 3D scroll effect: */
        background-attachment: fixed; 
        filter: grayscale(50%) brightness(0.6);
        z-index: 0;
    }

    /* Gradient Overlay to seamlessly blend it into the sections above and below */
    .fcta-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, #000000 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.5) 60%, #000000 100%);
        z-index: 1;
    }

    /* --- CONTENT --- */
    .fcta-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 900px;
    }

    .fcta-tag {
        color: var(--rose-gold, #b96f5b);
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 6px;
        margin-bottom: 25px;
        display: block;
        animation: fadeInDown 1s ease;
    }

    .fcta-title {
        color: #ffffff;
        font-size: clamp(3rem, 5vw, 5rem);
        font-weight: 800;
        line-height: 1.05;
        text-transform: uppercase;
        margin-bottom: 30px;
        text-shadow: 0 10px 30px rgba(0,0,0,0.9);
    }

    .fcta-desc {
        color: #cccccc;
        font-size: 1.2rem;
        line-height: 1.7;
        margin-bottom: 50px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* --- DUAL BUTTON LAYOUT --- */
    .fcta-actions {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Primary Filled Button */
    .fcta-btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--rose-gold, #b96f5b);
        color: #ffffff;
        padding: 20px 45px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        text-decoration: none;
        transition: all 0.4s ease;
        border: 1px solid var(--rose-gold, #b96f5b);
    }

    .fcta-btn-primary:hover {
        background: #ffffff;
        color: #000000;
        border-color: #ffffff;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
    }

    /* Secondary Glassmorphism Button */
    .fcta-btn-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: #ffffff;
        padding: 20px 45px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        text-decoration: none;
        transition: all 0.4s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .fcta-btn-secondary:hover {
        background: rgba(185, 111, 91, 0.1);
        border-color: var(--rose-gold, #b96f5b);
        transform: translateY(-3px);
    }

    /* --- MOBILE RESPONSIVENESS --- */
    @media (max-width: 768px) {
        .ay-final-cta {
            padding: 120px 5%;
        }
        .fcta-bg {
            /* Disable parallax on mobile for better scrolling performance */
            background-attachment: scroll; 
        }
        .fcta-actions {
            flex-direction: column;
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
        }
        .fcta-btn-primary, .fcta-btn-secondary {
            width: 100%;
        }
    }/* End custom CSS */