
    :root {
        --gold: #D4AF37;
        --black: #121212;
        --cream: #cdcdcdd1;
        --dark-gray: #2A2A2A;
        --white: #fff;
    }

    body {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        padding: 0;
        background-color: var(--cream);
        color: var(--dark-gray);
        overflow-x: hidden;
    }

    /* -- ===== HERO SECTION (LUXURY INTRO) ===== -- */
    .hero {
        height: 100vh;
        background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('luxury-car-wash.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: var(--cream);
        position: relative;
        overflow: hidden;
    }

    .hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: 5rem;
        margin-bottom: 1rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        animation: fadeIn 1.5s;
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .hero p {
        font-size: 1.5rem;
        max-width: 800px;
        margin-bottom: 2rem;
        font-weight: 300;
        animation: fadeIn 2s;
    }

    .cta-button {
        background: transparent;
        color: var(--gold);
        padding: 18px 40px;
        border: 2px solid var(--gold);
        border-radius: 0;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.5s;
        animation: fadeIn 2.5s;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .cta-button:hover {
        background: var(--gold);
        color: var(--black);
        transform: translateY(-5px);
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

        /* === LUXURY NAVIGATION === */
    .luxury-nav {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        font-family: 'Montserrat', sans-serif;
    }

    .nav-announcement {
        background: var(--black);
        color: var(--gold);
        text-align: center;
        padding: 8px 0;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .nav-announcement span {
        font-weight: 600;
        text-decoration: underline;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 5%;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.3s ease;
    }

    .nav-container.scrolled {
        background: rgba(18, 18, 18, 0.95);
        border-bottom: 1px solid var(--gold);
    }

    .nav-logo a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: var(--gold);
        font-size: 1.8rem;
    }

    .logo-icon {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        margin-right: 10px;
        color: var(--gold);
    }

    .logo-text {
        font-weight: 300;
        letter-spacing: 1px;
    }

    .logo-text span {
        font-weight: 600;
        font-size: 1.2rem;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-item {
        position: relative;
        padding: 25px 20px;
    }

    .nav-item > a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        letter-spacing: 1px;
        position: relative;
        transition: color 0.3s;
    }

    .nav-item > a:after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: -5px;
        left: 0;
        background: var(--gold);
        transition: width 0.3s;
    }

    .nav-item:hover > a {
        color: var(--gold);
    }

    .nav-item:hover > a:after {
        width: 100%;
    }

    /* Mega Menu */
    .mega-menu {
        position: absolute;
        left: 0;
        top: 100%;
        width: 800px;
        background: white;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
        display: none;
        grid-template-columns: 1fr 1fr 1.5fr;
        padding: 30px;
        border-top: 3px solid var(--gold);
    }

    .nav-item:hover .mega-menu {
        display: grid;
        animation: fadeInDown 0.4s;
    }

    .mega-menu-column h4 {
        font-family: 'Playfair Display', serif;
        color: var(--black);
        margin-bottom: 20px;
        font-size: 1.2rem;
        position: relative;
        padding-bottom: 10px;
    }

    .mega-menu-column h4:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 1px;
        background: var(--gold);
    }

    .mega-menu-column ul {
        list-style: none;
        padding: 0;
    }

    .mega-menu-column li {
        margin-bottom: 12px;
    }

    .mega-menu-column a {
        color: var(--dark-gray);
        text-decoration: none;
        transition: all 0.3s;
        font-weight: 400;
    }

    .mega-menu-column a:hover {
        color: var(--gold);
        padding-left: 5px;
    }

    .mega-menu-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Nav Buttons */
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .nav-button {
        background: transparent;
        border: 1px solid var(--gold);
        color: var(--black);
        padding: 10px 20px;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-button.gold {
        background: var(--gold);
        color: var(--black);
        font-weight: 600;
    }

    .nav-button:hover {
        background: var(--gold);
        color: var(--black);
    }

    .nav-button.gold:hover {
        background: var(--black);
        color: var(--gold);
    }

    /* Mobile Menu Toggle */
    .nav-hamburger {
        display: none;
        width: 30px;
        height: 20px;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .nav-hamburger span {
        width: 100%;
        height: 2px;
        background: var(--black);
        transition: all 0.3s;
    }

    /* Animations */
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 1200px) {
        .nav-menu {
            display: none;
        }

        .nav-hamburger {
            display: flex;
        }

        .mega-menu {
            width: 100%;
            left: 0;
        }
    }

            /* === LUXURY HERO CAROUSEL === */
        .hero-carousel {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
            z-index: 2;
        }

        .carousel-container {
            position: relative;
            height: 100%;
            z-index: 3;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .slide-content {
            position: absolute;
            bottom: 25%;
            left: 10%;
            max-width: 600px;
            text-align: left;
            color: white;
            transform: translateY(30px);
            transition: transform 1s ease;
        }

        .carousel-slide.active .slide-content {
            transform: translateY(0);
        }

        .slide-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .slide-content p {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
            text-shadow: 0 1px 5px rgba(0,0,0,0.3);
        }

        /* Carousel Navigation */
        .carousel-nav {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 4;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 1px solid var(--gold);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s;
            padding: 0;
        }

        .nav-dot.active {
            background: var(--gold);
            transform: scale(1.3);
        }

        /* Scrolling Indicator */
        .scroll-hint {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
            40% {transform: translateY(-20px) translateX(-50%);}
            60% {transform: translateY(-10px) translateX(-50%);}
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .slide-content {
                left: 5%;
                right: 5%;
                bottom: 20%;
            }

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

            .slide-content p {
                font-size: 1.2rem;
            }
        }

    /* -- ===== SERVICES (LUXURY PACKAGES) ==== -- */
    .services {
        padding: 120px 5%;
        background: var(--cream);
        text-align: center;
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        color: var(--black);
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

    .section-title:after {
        content: '';
        position: absolute;
        width: 50%;
        height: 2px;
        background: var(--gold);
        bottom: -10px;
        left: 25%;
    }

    .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-top: 80px;
    }

    .service-card {
        background: white;
        border-radius: 0;
        padding: 40px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--gold);
    }

    .service-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gold);
        transform: scaleX(0);
        transition: transform 0.5s ease;
    }

    .service-card:hover:before {
        transform: scaleX(1);
    }

    .service-icon {
        font-size: 3.5rem;
        color: var(--gold);
        margin-bottom: 25px;
    }

    .service-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: var(--black);
    }

    .service-card .price {
        font-size: 2rem;
        color: var(--gold);
        margin: 20px 0;
        font-weight: 600;
    }

    /* -- ===== BOOKING SECTION (ELEGANT FORM) ===== -- */
    .booking {
        background: var(--black);
        padding: 120px 5%;
        color: var(--cream);
    }

    .booking-form {
        max-width: 800px;
        margin: 60px auto 0;
        background: rgba(255, 255, 255, 0.05);
        padding: 50px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(212, 175, 55, 0.1);
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group label {
        display: block;
        margin-bottom: 10px;
        font-weight: 300;
        letter-spacing: 1px;
    }

    .form-group input, .form-group select {
        width: 100%;
        padding: 15px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.3);
        color: white;
        font-size: 1rem;
    }

    .form-group input:focus, .form-group select:focus {
        outline: none;
        border-color: var(--gold);
    }

    /* -- ===== TESTIMONIALS (LUXURY CAROUSEL) ===== -- */
    .testimonials {
        padding: 120px 5%;
        background: var(--cream);
    }

    .testimonial-slider {
        max-width: 1000px;
        margin: 60px auto 0;
    }

    .testimonial-card {
        background: white;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        margin: 0 20px;
        position: relative;
    }

    .testimonial-card:before {
        content: '"';
        font-family: 'Playfair Display', serif;
        font-size: 5rem;
        color: var(--gold);
        position: absolute;
        top: 20px;
        left: 20px;
        opacity: 0.3;
    }

    /* -- ===== LUXURY GALLERY SECTION ===== -- */
    .gallery {
        padding: 120px 5%;
        background: var(--cream);
    }

    .gallery-filters {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 40px 0 60px;
    }

    .filter-button {
        background: transparent;
        color: var(--dark-gray);
        border: 1px solid var(--gold);
        padding: 10px 25px;
        cursor: pointer;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
    }

    .filter-button:hover, .filter-button.active {
        background: var(--gold);
        color: var(--black);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        aspect-ratio: 4/3;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

    .gallery-overlay {
        position: absolute;
        bottom: -100%;
        left: 0;
        width: 100%;
        padding: 20px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        transition: bottom 0.3s;
    }

    .gallery-item:hover .gallery-overlay {
        bottom: 0;
    }

    /* LIGHTBOX MODAL */
    .lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        justify-content: center;
        align-items: center;
    }

    .lightbox-content {
        max-width: 90%;
        max-height: 90%;
    }

    .lightbox-content img {
        width: 100%;
        height: auto;
        border: 5px solid var(--gold);
    }

    .close-lightbox {
        position: absolute;
        top: 30px;
        right: 30px;
        color: white;
        font-size: 2rem;
        cursor: pointer;
    }

    /* -- ===== LUXURY VIRTUAL TOUR ===== -- */
    .virtual-tour {
        padding: 120px 5%;
        background: var(--cream);
        text-align: center;
    }

    .tour-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .panorama-viewer {
        width: 100%;
        height: 600px;
        margin: 40px auto;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        border: 1px solid rgba(212, 175, 55, 0.3);
    }

    .tour-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .tour-hotspots {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .hotspot {
        background: rgba(212, 175, 55, 0.1);
        color: var(--dark-gray);
        border: 1px solid var(--gold);
        padding: 12px 25px;
        cursor: pointer;
        transition: all 0.3s;
        font-family: 'Montserrat', sans-serif;
        border-radius: 0;
        font-size: 0.9rem;
    }

    .hotspot:hover {
        background: var(--gold);
        color: var(--black);
    }

    .tour-nav {
        display: flex;
        gap: 10px;
    }

    .tour-button {
        width: 40px;
        height: 40px;
        background: var(--black);
        color: var(--gold);
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tour-button:hover {
        background: var(--gold);
        color: var(--black);
    }

    /* Fullscreen mode adjustments */
    :-webkit-full-screen .panorama-viewer {
        height: 100vh !important;
        width: 100vw !important;
    }

    /*-- ==== TESTIMONIALS CAROUSEL ===== -- */
    .testimonials {
        padding: 100px 5%;
        background: var(--black);
        color: var(--cream);
    }

    .testimonial-slider {
        max-width: 1000px;
        margin: 60px auto;
        position: relative;
    }

    .testimonial-slide {
        background: rgba(255, 255, 255, 0.05);
        padding: 50px;
        border-left: 3px solid var(--gold);
        display: none;
    }

    .testimonial-slide.active {
        display: block;
        animation: fadeIn 1s;
    }

    .client-info {
        display: flex;
        align-items: center;
        margin-top: 30px;
    }

    .client-photo {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 20px;
        border: 2px solid var(--gold);
    }

    .slider-nav {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        margin: 0 8px;
        cursor: pointer;
    }

    .slider-dot.active {
        background: var(--gold);
    }

    /*-- ===== FOOTER (LUXURY BRANDING) ===== --*/
    footer {
        background: var(--black);
        color: var(--cream);
        padding: 80px 5% 40px;
        text-align: center;
    }

    .footer-logo {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }

    .social-links {
        margin: 30px 0;
    }

    .social-links a {
        color: var(--cream);
        margin: 0 15px;
        font-size: 1.5rem;
        transition: color 0.3s;
    }

    .social-links a:hover {
        color: var(--gold);
    }

    .copyright {
        margin-top: 50px;
        font-weight: 300;
        letter-spacing: 1px;
        font-size: 0.9rem;
        opacity: 0.7;
    }

