 ::selection { background: #1c1917; color: #fff; }
        .no-scrollbar::-webkit-scrollbar { display: none; }
        .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
        @keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
        @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
        @keyframes float { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }
        @keyframes pulse-glow { 0%,100%{ box-shadow:0 0 20px rgba(22,163,74,0.3); } 50%{ box-shadow:0 0 40px rgba(22,163,74,0.6); } }
        .animate-fadeInUp { animation: fadeInUp 0.8s ease-out forwards; }
        .animate-fadeIn { animation: fadeIn 1s ease-out forwards; }
        .animate-float { animation: float 3s ease-in-out infinite; }
        .animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
        .delay-100 { animation-delay: 0.1s; }
        .delay-200 { animation-delay: 0.2s; }
        .delay-300 { animation-delay: 0.3s; }
        .delay-400 { animation-delay: 0.4s; }
        .delay-500 { animation-delay: 0.5s; }
        .nav-blur { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
        .card-hover { transition: all 0.3s ease; }
        .card-hover:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15); }
        .btn-primary { transition: all 0.3s ease; }
        .btn-primary:hover { transform: scale(1.05); box-shadow: 0 10px 25px -5px rgba(22,163,74,0.4); }

        .slider-container { position:relative; width:100%; height:100%; overflow:hidden; }
        .slider-slide { position:absolute; inset:0; opacity:0; transition: opacity 1.2s ease-in-out; }
        .slider-slide.active { opacity:1; }
        .slider-slide img { width:100%; height:100%; object-fit:cover; }
        .slider-dots { position:absolute; bottom:24px; left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:10; }
        .slider-dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.4); cursor:pointer; transition: all 0.3s; border:2px solid transparent; }
        .slider-dot.active { background:#fff; border-color:rgba(255,255,255,0.6); transform:scale(1.2); }
        .slider-progress { position:absolute; bottom:0; left:0; height:3px; background:linear-gradient(90deg,#22c55e,#4ade80); z-index:10; transition: width 0.1s linear; }

        .hero-title-wrap { min-height: 1.1em; }
        .hero-title-wrap .ht-item { display:none; }
        .hero-title-wrap .ht-item.active { display:block; animation: fadeInUp 0.7s ease-out forwards; }

        .whatsapp-float { position:fixed; bottom:24px; right:24px; z-index:999; }
        .whatsapp-float a { display:flex; align-items:center; justify-content:center; width:60px; height:60px; border-radius:50%; background:#25D366; color:#fff; box-shadow:0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s ease; }
        .whatsapp-float a:hover { transform:scale(1.1); box-shadow:0 6px 30px rgba(37,211,102,0.6); }
        .section-hidden { opacity:0; transform:translateY(30px); transition: all 0.8s ease; }
        .section-visible { opacity:1; transform:translateY(0); }

        /* Gallery Popup */
        .gallery-popup { position:fixed; inset:0; z-index:1000; background:rgba(0,0,0,0.95); display:none; align-items:center; justify-content:center; padding:20px; }
        .gallery-popup.active { display:flex; animation: fadeIn 0.3s ease-out; }
        .gallery-popup img { max-width:90vw; max-height:90vh; object-fit:contain; border-radius:12px; box-shadow:0 20px 60px rgba(0,0,0,0.5); }
        .gallery-popup-close { position:absolute; top:20px; right:20px; width:48px; height:48px; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2); border-radius:50%; color:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all 0.3s; font-size:24px; }
        .gallery-popup-close:hover { background:rgba(255,255,255,0.2); transform:scale(1.1); }

        /* Parallax */
        .parallax-section { position:relative; overflow:hidden; }
        .parallax-bg { position:absolute; inset:-100px 0; background-size:cover; background-position:center; background-attachment:fixed; will-change:transform; }
        @media (max-width: 768px) { .parallax-bg { background-attachment:scroll; } }

        /* ===== ROOM IMAGE SLIDER ===== */
.room-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1.5rem;
}

.room-slide {
    position: relative;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.room-slide.active {
    opacity: 1;
    position: relative;
}

.room-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #1c1917;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
}

.room-slider-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.room-slider-btn.prev {
    left: 12px;
}

.room-slider-btn.next {
    right: 12px;
}

.room-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.room-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.room-slider-dot.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.room-slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 5;
}

.room-slider-counter {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

/* ===== ROOM SECTION BOX ===== */
#rooms .section-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

#rooms .section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SHARED UTILITIES (agar pehle se nahi hai toh ye bhi rakh lo) ===== */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(22, 163, 74, 0.4);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

.section-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ROOM SECTION GALLERY HOVER (agar gallery section bhi hai) ===== */
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ===== FAQ ANSWER (agar FAQ section bhi hai) ===== */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
    max-height: 500px;
}

/* ===== NO SCROLLBAR (mobile menu ke liye) ===== */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ===== NAV BLUR ===== */
.nav-blur {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* ===== SELECTION ===== */
::selection {
    background: #1c1917;
    color: #fff;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(22, 163, 74, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(22, 163, 74, 0.6);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}