
        /* ----- THEME VARIABLES ----- */
        :root {
            --primary: #C8102E;
            --secondary: #111111;
            --gold: #D4AF37;
            --white: #ffffff;
            --light-grey: #f8f7f5;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Poppins', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: var(--white);
            color: #222;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
        }

        .text-gold {
            color: var(--gold);
        }

        .bg-primary-custom {
            background-color: var(--primary) !important;
        }

        .btn-primary-custom {
            background-color: var(--primary);
            border: none;
            color: #fff;
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-primary-custom:hover {
            background-color: #a00d24;
            color: #fff;
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(200, 16, 46, 0.3);
        }

        .btn-outline-gold {
            border: 2px solid #b2373a;
            color: #b2373a;
            background: transparent;
            border-radius: 50px;
            padding: 10px 28px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-outline-gold:hover {
            background: var(--gold);
            color: #000;
        }

        .btn-gold {
            background: var(--gold);
            border: none;
            color: #000;
            border-radius: 50px;
            padding: 10px 28px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-gold:hover {
            background: #b8962b;
            color: #000;
            transform: scale(1.02);
        }

        /* ----- TOP HEADER ----- */
        .top-header {
            background: var(--secondary);
            color: #ddd;
            font-size: 0.9rem;
            padding: 6px 0;
            border-bottom: 2px solid var(--gold);
        }

        .top-header a {
            color: #eee;
            text-decoration: none;
            margin-right: 18px;
            transition: 0.3s;
        }

        .top-header a:hover {
            color: var(--gold);
        }

        .top-header .social-icons a {
            margin-right: 12px;
            font-size: 1.1rem;
        }

        .top-header .btn-call {
            background: var(--primary);
            padding: 4px 20px;
            border-radius: 40px;
            font-weight: 600;
            color: #fff !important;
        }

        .top-header .btn-call:hover {
            background: #a00d24;
        }

        /* ----- NAVBAR ----- */
        .navbar {
            background: rgba(17, 17, 17, 0.95) !important;
            backdrop-filter: blur(4px);
            padding: 10px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        .navbar .nav-link {
            color: #f0f0f0 !important;
            font-weight: 500;
            margin: 0 10px;
            transition: 0.3s;
            font-size: 0.95rem;
        }

        .navbar .nav-link:hover {
            color: var(--gold) !important;
        }

        .navbar .btn-book {
            background: var(--gold);
            color: #000 !important;
            border-radius: 40px;
            padding: 8px 24px;
            font-weight: 600;
        }

        .navbar .btn-book:hover {
            background: #c4a030;
        }

        .navbar-brand img {
            max-height: 60px;
        }

        /* ----- HERO CAROUSEL (full screen) ----- */
        .hero-carousel .carousel-item {
            height: 100vh;
            background-size: cover;
            background-position: center;
        }

        .hero-carousel .carousel-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .hero-carousel .carousel-caption {
            z-index: 2;
            bottom: 30%;
            text-align: left;
            max-width: 650px;
            left: 10%;
            right: auto;
        }

        .hero-carousel .carousel-caption h1 {
            font-size: 3.8rem;
            font-weight: 700;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }

        .hero-carousel .carousel-caption p {
            font-size: 1.3rem;
            font-weight: 300;
            margin: 20px 0;
        }

        .hero-carousel .carousel-caption .btn {
            margin-right: 15px;
            margin-bottom: 8px;
        }

        /* ----- SECTIONS ----- */
        section {
            /* padding: 80px 0; */
            overflow: hidden;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: #666;
            margin-bottom: 40px;
        }

        .bg-light-grey {
            background: var(--light-grey);
        }

        /* Cards glassmorphism */
        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 24px;
            padding: 30px 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            transition: 0.4s;
            height: 100%;
        }

        .glass-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .counter-box {
            background: var(--white);
            border-radius: 20px;
            padding: 30px 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        }

        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            font-family: var(--font-heading);
        }

        .rate-card {
            border-left: 4px solid var(--gold);
            border-radius: 16px;
            background: #fff;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
        }

        .rate-card .price {
            font-weight: 700;
            color: var(--primary);
            float: right;
        }

        /* Timeline */
        .timeline-step {
            text-align: center;
            padding: 20px 10px;
        }

        .timeline-step .step-icon {
            font-size: 3rem;
            color: var(--gold);
            background: #fff;
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            margin: 0 auto 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }

        .timeline-arrow {
            font-size: 2.5rem;
            color: var(--gold);
            opacity: 0.6;
        }

        /* gallery */
        .gallery-img {
            border-radius: 18px;
            overflow: hidden;
            transition: 0.4s;
            cursor: pointer;
        }

        .gallery-img img {
            width: 100%;
            transition: 0.5s;
            height: 250px;
            object-fit: cover;
        }

        .gallery-img:hover img {
            transform: scale(1.08);
        }
        .gallery-section {
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox */

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    animation: zoomIn .4s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    transition: .3s;
}

.close-btn:hover {
    color: #ffc107;
}

@keyframes zoomIn {
    from{
        transform: scale(.7);
        opacity:0;
    }
    to{
        transform: scale(1);
        opacity:1;
    }
}

/* Responsive */

@media(max-width:768px){

    .gallery-item img{
        height:220px;
    }

    .close-btn{
        font-size:35px;
        right:20px;
    }

    #lightbox img{
        max-width:95%;
    }
}

        /* testimonial */
        .testimonial-card {
            background: #fff;
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            margin: 15px;
        }

        .testimonial-card img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--gold);
        }

        .star-gold {
            color: var(--gold);
        }

        /* contact map */
        .map-container iframe {
            width: 100%;
            height: 320px;
            border-radius: 20px;
            border: 0;
        }

        /* footer */
        .footer {
            background: var(--secondary);
            color: #ccc;
            padding-top: 60px;
        }

        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer a:hover {
            color: var(--gold);
        }

        .footer .social a {
            font-size: 1.4rem;
            margin-right: 16px;
        }

        /* floating */
        .float-btn {
            position: fixed;
            bottom: 73px;
            right: 12px;
            z-index: 999;
        }

        .float-btn .btn {
            display: block;
            margin-bottom: 12px;
            border-radius: 60px;
            padding: 12px 22px;
            font-weight: 600;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .float-btn .btn-whatsapp {
            background: #25D366;
            color: #fff;
            border: none;
        }

        .float-btn .btn-call-float {
            background: var(--primary);
            color: #fff;
            border: none;
        }

        @media (max-width: 768px) {
            .hero-carousel .carousel-caption {
                left: 5%;
                right: 5%;
                bottom: 25%;
                max-width: 100%;
                text-align: center;
            }

            .hero-carousel .carousel-caption h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .top-header .d-flex {
                flex-wrap: wrap;
                justify-content: center;
            }

            .top-header .social-icons {
                margin-top: 4px;
            }
        }