        :root {
            --primary-color: #d4a017;
            --primary-hover: #b8860b;
            --secondary-color: #2c3e50;
            --text-dark: #333333;
            --text-light: #ffffff;
            --text-grey: #666666;
            --bg-light: #f9f9f9;
            --highlight-pink: #e91e63;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            padding-top: 76px;
        }

        .text-primary-custom {
            color: var(--primary-color) !important;
        }

        .bg-primary-custom {
            background-color: var(--primary-color) !important;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            margin-bottom: 50px;
            font-weight: 700;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--secondary-color);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            margin: 10px auto 0;
        }

        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: clamp(1.2rem, 4vw, 1.6rem);
        }

        .nav-link {
            font-weight: 500;
            color: var(--secondary-color);
            transition: 0.3s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color);
        }

        .navbar-toggler {
            border: none;
            padding: 0;
            font-size: 1.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .offcanvas-title {
            color: var(--primary-color);
            font-weight: 700;
        }

        /* ---- NEW MODERN HERO CSS ---- */
        .modern-hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            background: url('images/Gallery1.avif');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 15px;
        }

        .hero-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
            z-index: 0;
        }

        .hero-content-glass {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 50px 30px;
            border-radius: 20px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
            color: #fff;
            animation: fadeInGlass 1s ease-out forwards;
        }

        @keyframes fadeInGlass {
            0% { opacity: 0; transform: translateY(30px) scale(0.95); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }

        .hero-badge {
            background: rgba(255,255,255,0.15);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid rgba(255,255,255,0.3);
            display: inline-block;
            margin-bottom: 10px;
        }

        .hero-title {
            font-size: clamp(2.2rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
            letter-spacing: -1px;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            font-weight: 400;
            line-height: 1.6;
            color: rgba(255,255,255,0.9);
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            max-width: 800px;
            margin: 0 auto;
        }

        .btn-custom {
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            letter-spacing: 0.5px;
        }

        .btn-filled-glow {
            background-color: var(--primary-color);
            color: #fff;
            box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
            border: 2px solid var(--primary-color);
        }

        .btn-filled-glow:hover {
            background-color: #fff;
            color: var(--primary-color);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 8px 25px rgba(212, 160, 23, 0.6);
        }

        .btn-glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
        }

        .btn-glass:hover {
            background: #fff;
            color: var(--secondary-color);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
        }

        .scroll-indicator i {
            font-size: 2rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            opacity: 0.8;
            transition: 0.3s;
        }

        .scroll-indicator:hover i {
            opacity: 1;
            color: var(--primary-color);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-20px) translateX(-50%); }
            60% { transform: translateY(-10px) translateX(-50%); }
        }
        /* -------------------------- */

        .reveal-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            will-change: opacity, transform;
        }

        .reveal-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-img {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            object-fit: cover;
            height: 100%;
            min-height: 350px;
        }

        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            height: 100%;
            background: #fff;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }

        .card-body {
            padding: 1.5rem;
        }

        .price-tag {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.1rem;
            display: block;
            margin: 10px 0;
        }

        .btn-gradient {
            width: 100%;
            padding: 12px;
            border: none;
            color: white;
            font-weight: 600;
            background: linear-gradient(45deg, var(--primary-color), #f1c40f);
            border-radius: 0 0 15px 15px;
            transition: opacity 0.3s;
            display: block;
            text-align: center;
            text-decoration: none;
        }

        .btn-gradient:hover {
            opacity: 0.9;
            color: white;
        }

        .amenity-box {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
            height: 100%;
            border-bottom: 3px solid transparent;
        }

        .amenity-box:hover {
            border-bottom-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .amenity-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            height: 250px;
            width: 100%;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.3s;
            color: white;
            font-size: 2rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .testimonial-card {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            margin: 10px;
            height: 100%;
        }

        .t-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid var(--primary-color);
        }

        .accordion-button:not(.collapsed) {
            color: var(--primary-color);
            background-color: rgba(212, 160, 23, 0.1);
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(212, 160, 23, 0.25);
            border-color: var(--primary-color);
        }

        .map-container {
            width: 100%;
            height: 350px;
            line-height: 0;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .nap-section {
            background: #fff;
            padding: 60px 0;
        }

        .nap-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .nap-icon-wrapper {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: #fff;
            font-size: 24px;
        }

        .nap-content h5 {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 1.1rem;
            color: var(--secondary-color);
        }

        .nap-content p,
        .nap-content a {
            margin: 0;
            color: var(--text-grey);
            text-decoration: none;
            font-size: 1rem;
        }

        .highlight-phone {
            color: var(--highlight-pink) !important;
            font-weight: 700;
        }

        .site-footer {
            background-color: #f1f1f1;
            color: var(--secondary-color);
            padding: 25px 0;
            font-size: 0.9rem;
        }

        /* --- RADIATION ANIMATIONS --- */

        /* Gold Radiation (for Call Button) */
        @keyframes radiation-gold {
            0% {
                box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.7);
                transform: scale(1);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(212, 160, 23, 0);
                transform: scale(1.05);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
                transform: scale(1);
            }
        }

        /* Green Radiation (for WhatsApp Button) */
        @keyframes radiation-green {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
                transform: scale(1);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
                transform: scale(1.05);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
                transform: scale(1);
            }
        }

        .float-btn {
            position: fixed;
            bottom: 25px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            z-index: 9999;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }

        .float-btn:hover {
            color: #fff;
            transform: scale(1.1);
        }

        /* Applied specific animations */
        .float-call {
            background-color: var(--primary-color);
            left: 20px;
            display: none;
            animation: radiation-gold 2s infinite;
        }

        .float-wa {
            background-color: #25D366;
            right: 20px;
            animation: radiation-green 2s infinite;
        }

        @media (max-width: 767.98px) {
            .float-call {
                display: flex;
            }

            .hero-btn-container {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }

            .hero-btn-container .btn-custom {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 575.98px) {
            .section-title {
                font-size: 1.5rem;
            }
        }

/* Modern Room Cards */
.modern-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modern-card .img-wrapper {
    overflow: hidden;
    position: relative;
}

.modern-card .service-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.6s ease;
}

.modern-card:hover .service-img {
    transform: scale(1.1);
}

.modern-card .card-body {
    padding: 2rem 1.5rem;
    position: relative;
    background: #fff;
}

.modern-card .card-title {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.modern-card .price-tag {
    display: inline-block;
    background: rgba(212, 160, 23, 0.1);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.modern-card .btn-gradient {
    width: 100%;
    padding: 15px;
    border: none;
    color: white !important;
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary-color), #f1c40f);
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.modern-card .btn-gradient:hover {
    background: linear-gradient(45deg, #f1c40f, var(--primary-color));
    opacity: 1;
}


/* Modern About Us Section */
.about-wrapper {
    position: relative;
}

.about-img-container {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
    z-index: 1;
}

.about-img-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: rgba(212, 160, 23, 0.1);
    border-radius: 30px;
    z-index: -1;
}

.about-img-container .about-img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 400px;
}

.about-experience-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.about-experience-badge h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.about-experience-badge p {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    color: var(--secondary-color);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.about-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: rgba(212, 160, 23, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
}

.about-feature-box {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.about-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: rgba(212, 160, 23, 0.3);
}

.about-feature-box i {
    font-size: 1.5rem;
    background: rgba(212, 160, 23, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}


/* Floating CTA Buttons */
.floating-cta-container {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.15) translateY(-5px);
    color: #fff;
}

/* Tooltip on hover */
.floating-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.floating-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.btn-call {
    background: linear-gradient(135deg, #007bff, #0056b3);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-location {
    background: linear-gradient(135deg, #EA4335, #C3271B);
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.4);
}


/* FAQ Scroll Container */
.faq-scroll-container {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 15px;
    margin-top: 20px;
}
.faq-scroll-container::-webkit-scrollbar {
    width: 6px;
}
.faq-scroll-container::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 4px;
}
.faq-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}
