/* ================= RESET ================= */

*{

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{

    max-width:100%;

}

/* ================= ROOT COLORS ================= */

:root{

    --primary:#5C0000;
    --gold:#D18A00;
    --white:#FFFFFF;
    --light:#F8F8F8;
    --dark:#1A1A1A;

}

html{
    scroll-behavior: smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x:hidden;

}

/* ================= NAVBAR ================= */

.navbar{

    transition:
    all .4s ease;

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

}

.scrolled{

    background:
    rgba(255,255,255,.92);

    backdrop-filter:
    blur(15px);

    -webkit-backdrop-filter:
    blur(15px);

    box-shadow:
    0 5px 20px rgba(0,0,0,.08);

}

/* ================= MAIN NAVBAR ================= */

.main-navbar{

    height:75px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 5%;

    background:white;

    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    border-bottom:
    1px solid rgba(0,0,0,0.04);

    backdrop-filter:blur(10px);

}

.logo img{

    height:80px;

}

@media(max-width:768px){

    .logo img{
        height:50px;
    }

}

@media(max-width:768px){

    .main-navbar{
        height:65px;
    }

    .nav-links{
        top:65px;
    }

}

.nav-links{

    display:flex;
    gap:35px;

    list-style:none;

}

.nav-links a{

    text-decoration:none;
    color:var(--dark);

    font-weight:500;

    transition:0.3s;

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:3px;

    background:var(--gold);

    transition:0.3s;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}

.nav-links a:hover,
.nav-links a.active{

    color:var(--gold);

}

/* ================= BUTTONS ================= */

.book-btn,
.explore-btn,
.check-btn{

    background:var(--gold);
    color:white;

    border:none;

    cursor:pointer;

    transition:0.3s;

    transition:0.3s ease;

}

.book-btn{

    padding:14px 26px;
    border-radius:6px;

}

.explore-btn{

    padding:16px 34px;
    border-radius:6px;

    margin-top:30px;

}

.check-btn{

    padding:18px 32px;
    border-radius:8px;

    font-weight:600;

}

.book-btn:hover{

    background:#a86d00;

    transform:translateY(-2px);

}

.explore-btn:hover{

    background:white;

    color:var(--primary);

    transform:translateY(-2px);

}

.check-btn:hover{

    background:#f0b133;

    color:var(--primary);

    transform:translateY(-2px);

}

/* ================= HERO ================= */

.hero{

    margin-top:75px;
    width:100%;
    height:100vh;

    

    background-size:cover;
    background-position:center;

    position:relative;

    display:flex;
    align-items:center;

    padding:0 7%;

}
/* ================= HERO SLIDER ================= */

.hero-slider{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    z-index:0;

    overflow:hidden;
    pointer-events:none;

}

/* CENTER IMAGE */

.hero-main{

    width:76%;
    height:88%;

    overflow:hidden;

    position:relative;

    border-radius:18px;
    pointer-events:auto;
    cursor:pointer;
   

}

.hero-track{

    display:flex;

    width:300%;
    height:100%;

    transform:translateX(-33.333%);

    transition:transform .8s ease;

}

.hero-track img{

    width:100%;

    height:100%;

    object-fit:cover;

    box-shadow:
    0 20px 40px rgba(0,0,0,.25);

    transition:
    transform .7s ease,
    opacity .7s ease;
    border-radius:18px;
    position:relative;
    z-index:2;


}
.hero-main img:hover{

    transform:scale(1.01);

}


/* SIDE PREVIEWS */

.hero-preview{

    width:10%;

    height:65%;

    overflow:hidden;

    border-radius:16px;

    opacity:.8;

    filter:brightness(.9);

    transition:0.4s ease;
    cursor:pointer;

}

.hero-preview:hover{

    opacity:1;

    transform:scale(1.03);

}

.hero-preview img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/* DOTS */

.hero-dots{

    position:absolute;

    bottom:100px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:10px;

    z-index:5;

}

.hero-dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:rgba(255,255,255,.4);

    cursor:pointer;

    transition:.3s ease;

}

.hero-dot.active{

    background:white;

    transform:scale(1.4);

}

@media(max-width:992px){

    .hero-preview{
        cursor:pointer;
        display:none;

    }

    .hero-main{

        width:100%;

    }

}

.hero-preview:hover{

    opacity:1;

    transform:scale(1.03);

}

.overlay{

    position:absolute;
    z-index:1;

    width:100%;
    height:100%;

    top:0;
    left:0;

    background:linear-gradient(
    to right,
    rgba(92,0,0,0.88),
    rgba(0,0,0,0.35)
    );
    pointer-events:none;

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:520px;

    margin-left:140px;

    color:white;
   

}

.hero-content span{

    color:var(--gold);

    letter-spacing:2px;

    font-size:14px;

}

.hero-content h1{

    font-size:74px;

    line-height:1.2;

    margin:20px 0;

    font-family:'Cinzel',serif;

}

.hero-content h1 span{

    font-size:64px;

}

.hero-content p{

    line-height:1.9;

    font-size:15px;

}

/* ================= BOOKING BAR ================= */

.booking-bar{

    position:absolute;
    z-index:5;

    position:absolute;

    bottom:-45px;
    left:50%;

    transform:translateX(-50%);

    width:82%;

    background:var(--primary);

    padding:28px;

    border-radius:14px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:20;

    box-shadow:0 10px 30px rgba(0,0,0,0.15);

}

.booking-item{

    display:flex;
    flex-direction:column;

    gap:10px;

    color:white;

}

.booking-item label{

    font-weight:600;

}

.booking-item input,
.booking-item select{

    border:none;
    outline:none;

    background:transparent;

    color:white;

    font-size:15px;

}

.menu-toggle{

    display:none;

}

/* ================= MOBILE ================= */

@media(max-width:992px){



    .top-left{

        flex-direction:column;
        gap:10px;

    }

 .main-navbar{

    height:75px;

    padding:0 5%;

    position:relative;

}
.menu-toggle{

    display:flex;

    font-size:34px;

    color:var(--primary);

    cursor:pointer;

    z-index:2000;

}

.nav-links{

    position:absolute;

    top:75px;
    left:0;

    width:100%;

    background:white;

    flex-direction:column;

    align-items:center;

    gap:25px;

    padding:35px 0;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.08);

    display:none;

}

.nav-links.active{

    display:flex;

}

.book-btn{

    display:none;

}

    .hero-content h1{

        font-size:50px;

    }

    .hero-content h1 span{

        font-size:50px;

    }

    .booking-bar{

        flex-direction:column;
        gap:20px;

        width:92%;

    }


    .hero{

    min-height:100vh;

    padding:140px 20px 280px;

}

.hero-content{

    margin-left:0;

    max-width:100%;

    text-align:center;

}

.hero-content{
    width:100%;
    padding:0 10px;
}

.hero-content h1{

    font-size:30px;

    line-height:1.25;

}

.hero-content h1 span{

    font-size:30px;

}

.hero-content p{

    font-size:14px;

    line-height:1.7;

}

.booking-bar{

    width:92%;

    padding:30px 20px;

    bottom:-210px;

    border-radius:20px;

    align-items:flex-start;

}

.booking-item{

    width:100%;

}

.booking-item input,
.booking-item select{

    width:100%;

    padding:10px 0;

}

.check-btn{

    width:100%;

}

}

/* ================= ABOUT ================= */

.about-section{

    padding:120px 7%;

    background:white;

}

.about-container{

    display:flex;

    align-items:center;

    gap:70px;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;

    border-radius:24px;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.12);

}

.about-content{

    flex:1;

}

.about-content span{

    color:var(--gold);

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;

}

.about-content h2{

    font-size:48px;

    color:var(--primary);

    margin:18px 0 24px;

    line-height:1.2;

    font-family:'Cinzel',serif;

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:22px;

}

.about-btn{

    padding:16px 34px;

    background:var(--primary);

    color:white;

    border:none;

    border-radius:8px;

    cursor:pointer;

    transition:0.3s ease;

}

.about-btn:hover{

    background:var(--gold);

    color:var(--primary);

}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .about-container{

        flex-direction:column;

    }

}

/* ================= ROOMS SECTION ================= */

.rooms-section{

    padding:280px 7% 50px;

    background:var(--light);

}

.rooms-section .section-title{

    margin-left:8px;

}

.section-title{

    text-align:left;

    margin-bottom:35px;

}


.section-title span{

    color:var(--gold);

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;

}

.section-title h2{

    font-size:48px;

    margin-top:15px;

    font-family:'Cinzel',serif;

    color:var(--primary);

}

.rooms-grid{

    display:flex;

    justify-content:center;

    gap:45px;

    flex-wrap:wrap;

}

.room-card{

    width:100%;
    max-width:340px;

    background:white;

    border-radius:14px;

    overflow:hidden;

    box-shadow:0 5px 18px rgba(0,0,0,0.08);

    transition:0.3s ease;

}
.room-card:hover{

    transform:translateY(-10px);

}

.room-image{

    height:210px;

    overflow:hidden;

}

.room-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s ease;

}

.room-card:hover img{

    transform:scale(1.08);

}

.room-details{

    padding:20px;

}

.room-details h3{

    font-size:28px;

    color:var(--primary);

    margin-bottom:15px;

    font-family:'Cinzel',serif;

}

.room-details p{

    color:#666;

    line-height:1.6;

    margin-bottom:18px;

    font-size:14px;

}

.room-details h4{

    font-size:21px;

    color:var(--gold);

    margin-bottom:18px;

}

.room-details h4 span{

    font-size:15px;

    color:#777;

}

.room-details button{

    width:100%;

    padding:13px;

    border:none;

    background:var(--primary);

    color:white;

    border-radius:8px;

    font-size:15px;

    cursor:pointer;

    transition:0.3s;

}

.room-details button:hover{

    background:var(--gold);

    color:var(--primary);

}

@media(max-width:768px){

    .section-title h2,
    .about-content h2,
    .contact-info h2,
    .booking-cta h2{

        font-size:32px;
        line-height:1.3;

    }

}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .rooms-grid{

        grid-template-columns:1fr;

    }

}

/* ================= AMENITIES ================= */

.amenities-section{

    padding:90px 7%;

    background:var(--primary);

}

.amenities-section .section-title{

    margin-left:8px;

}

.amenities-section .section-title h2{

    color:white;

}

.amenities-grid{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:30px;

    margin-top:50px;

}

.amenity-card{

    width:220px;

    background:rgba(255,255,255,0.06);

    padding:35px 25px;

    border-radius:16px;

    text-align:center;

    transition:0.3s ease;
    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(8px);

}

.amenity-card:hover{

    transform:translateY(-8px);

    background:var(--primary);

}

.amenity-icon{

    font-size:52px;

    margin-bottom:22px;

    color:var(--gold);

    display:flex;

    justify-content:center;

    align-items:center;

    transition:0.3s ease;

}

.amenity-card h3{

    font-size:22px;

    margin-bottom:15px;

    color:white;

    font-family:'Cinzel',serif;

    transition:0.3s;

}

.amenity-card p{

    font-size:14px;

    line-height:1.7;

    color:rgba(255,255,255,0.75);

    transition:0.3s;

}


.amenity-card:hover h3,
.amenity-card:hover p{

    color:white;

}
.amenity-card:hover .amenity-icon{

    color:white;

}

/* ================= GALLERY ================= */

.gallery-section{

    padding:90px 7% 45px;

    background:white;

}

.gallery-section .section-title{

    margin-left:8px;

}

.gallery-section .section-title h2{

    color:var(--primary);

}

.gallery-grid{

    display:grid;

    grid-template-columns: 1fr 1fr;

    gap:25px;

    margin-top:50px;

    transition:
    opacity .8s ease;

}

.gallery-grid.fade-out{

    opacity:0;

}

.gallery-item{

    height:250px;

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

    position:relative;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.12);
    transition:.5s ease;

}

.gallery-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s ease;

    transition:.5s ease;

}

.gallery-item:hover img{

    transform:scale(1.08);
    filter:brightness(1.05);

}

/* ================= MOVING GALLERY ================= */

.gallery-slider{

    overflow:hidden;

    width:100%;

    position:relative;

}

.gallery-track{

    display:flex;

    gap:20px;

    width:max-content;

    animation:
    galleryScroll 60s linear infinite;

}

.gallery-track:hover{

    animation-play-state:paused;

}

.gallery-item{

    flex-shrink:0;

    width:320px;

    height:240px;

    border-radius:16px;

    overflow:hidden;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s ease;

}

.gallery-item img:hover{

    transform:scale(1.05);

}

@keyframes galleryScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/* ================= LIGHTBOX ================= */

.lightbox{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.92);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:9999;

}

.lightbox.active{

    display:flex;

}

.lightbox-counter{

    position:absolute;

    top:30px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    font-size:18px;

    font-weight:600;

    background:rgba(0,0,0,.4);

    padding:10px 18px;

    border-radius:30px;

    backdrop-filter:blur(8px);

    z-index:10000;

}

.lightbox-img{

    width:75%;

    max-width:1000px;

    border-radius:12px;

}

/* LIGHTBOX THUMBNAILS */

.lightbox-thumbnails{

    position:absolute;

    bottom:20px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:10px;

    max-width:90%;

    overflow-x:auto;

    scroll-behavior:smooth;

    padding:10px;
    

}

.lightbox-thumbnails::-webkit-scrollbar{

    display:none;

}

.lightbox-thumbnails{

    scrollbar-width:none;

}

.lightbox-thumbnail{

    width:70px;

    height:50px;

    border-radius:8px;

    overflow:hidden;

    cursor:pointer;

    opacity:.6;

    transition:.3s ease;

    border:2px solid transparent;

    flex-shrink:0;

}

.lightbox-thumbnail img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.lightbox-thumbnail.active{

    opacity:1;

    border:2px solid var(--gold);

}

.lightbox-thumbnail:hover{

    opacity:1;

}

.close-lightbox{

    position:absolute;

    top:30px;
    right:40px;

    font-size:50px;

    color:white;

    cursor:pointer;

}

.prev-btn,
.next-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    background:rgba(255,255,255,0.15);

    border:none;

    color:white;

    font-size:40px;

    width:60px;
    height:60px;

    border-radius:50%;

    cursor:pointer;

    transition:0.3s;

}

@media(max-width:768px){

    .prev-btn,
    .next-btn{

        width:45px;
        height:45px;
        font-size:28px;

    }

    .prev-btn{
        left:10px;
    }

    .next-btn{
        right:10px;
    }

}

.prev-btn:hover,
.next-btn:hover{

    background:var(--gold);

}

.prev-btn{

    left:40px;

}

.next-btn{

    right:40px;

}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .lightbox-img{

        width:90%;

    }

}

/* ================= CONTACT ================= */

.contact-section{

    padding:45px 7% 80px;

    background:var(--light);

}

.contact-container{

    display:flex;

    justify-content:space-between;

    gap:60px;

    align-items:center;

}

.contact-info{

    flex:1;

}

.contact-info span{

    color:var(--gold);

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;

}

.contact-info h2{

    font-size:48px;

    color:var(--primary);

    margin:12px 0 18px;

    font-family:'Cinzel',serif;

}

.contact-info p{

    line-height:1.8;

    color:#666;

    margin-bottom:28px;

}

.contact-details{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.contact-item i{

    font-size:30px;

    color:var(--gold);

}

.contact-item h4{

    color:var(--primary);

    margin-bottom:5px;

}

.contact-form{

    flex:1;

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px;

    border:none;

    border-radius:10px;

    background:white;

    box-shadow:0 5px 15px rgba(0,0,0,0.05);

    outline:none;

    font-size:15px;

}

.contact-form textarea{

    height:160px;

    resize:none;

}

.contact-form button{

    width:200px;

    padding:16px;

    border:none;

    background:var(--primary);

    color:white;

    border-radius:10px;

    cursor:pointer;

    transition:0.3s;

}

.contact-form button:hover{

    background:var(--gold);

    color:var(--primary);

}

/* ================= CONTACT MOBILE ================= */

@media(max-width:992px){

    .contact-container{

        flex-direction:column;

        align-items:center;

    }

    .contact-form{

        width:100%;

    }

    .contact-form button{

        width:100%;

    }

}

/* ================= FOOTER ================= */

.footer{

    background:var(--primary);

    padding-top:70px;

}

.footer-container{

    display:grid;

    grid-template-columns:
    1.4fr 1fr 1fr 1fr;

    gap:60px;

    padding:0 7% 60px;

}

.footer-about img{

    height:180px;

    object-fit:contain;

    margin-bottom:20px;

}

@media(max-width:768px){

    .footer-about img{
        height:120px;
    }

}

.footer-about p{

    color:rgba(255,255,255,0.75);

    line-height:1.9;

    max-width:320px;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.footer-links h3{

    color:white;

    margin-bottom:10px;

    font-size:22px;

}

.footer-links a{

    color:rgba(255,255,255,0.75);

    text-decoration:none;

    transition:0.3s;
    transition:.3s ease;
}

.footer-links a:hover{

    color:var(--gold);

    transform:translateX(5px);

}

.footer-links a:hover{

    color:var(--gold);

    padding-left:5px;

}

.footer-bottom{

    border-top:
    1px solid rgba(255,255,255,0.08);

    text-align:center;

    padding:28px;
    border-top:
    1px solid rgba(255,215,0,.2);

    padding-top:25px;

}

.footer-bottom p{

    color:rgba(255,255,255,0.75);

}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .footer-container{

        grid-template-columns:1fr;

        gap:40px;

    }

}


/* ================= GOOGLE MAP ================= */

.map-section{

    padding:0 7% 80px;

    background:var(--light);

}

.map-container{

    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 20px 45px rgba(0,0,0,0.12);

}

.map-container iframe{

    width:100%;

    display:block;

    filter:grayscale(10%);

}
/* ================= AUTH ================= */

.auth-section{

    width:100%;
    height:100vh;

    background:
    linear-gradient(
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.5)
    ),

    url('images/hero.png');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:30px;

}

.auth-container{

    width:100%;

    max-width:1050px;

    background:white;

    border-radius:24px;

    overflow:hidden;

    display:grid;

    grid-template-columns: repeat(3,1fr);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.25);

}

.auth-left{

    background:var(--primary);

    color:white;

    padding:70px 60px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.auth-left img{

    height:110px;

    object-fit:contain;

    margin-bottom:30px;

}

.auth-left h1{

    font-size:42px;

    line-height:1.3;

    margin-bottom:25px;

    font-family:'Cinzel',serif;

}

.auth-left p{

    color:rgba(255,255,255,0.75);

    line-height:1.9;

}

.auth-right{

    padding:70px 60px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.auth-right h2{

    font-size:42px;

    color:var(--primary);

    margin-bottom:40px;

    font-family:'Cinzel',serif;

}

.input-group{

    display:flex;

    flex-direction:column;

    margin-bottom:25px;

}

.input-group label{

    margin-bottom:10px;

    color:#444;

    font-weight:500;

}

.input-group input{

    padding:18px;

    border:1px solid #ddd;

    border-radius:10px;

    outline:none;

    font-size:15px;

}

.input-group input:focus{

    border-color:var(--gold);

}

.login-btn{

    width:100%;

    padding:18px;

    border:none;

    background:var(--primary);

    color:white;

    border-radius:10px;

    font-size:16px;

    cursor:pointer;

    transition:0.3s;

}

.login-btn:hover{

    background:var(--gold);

    color:var(--primary);

}

#loginMessage{

    margin-top:20px;

    color:red;

}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .auth-container{

        grid-template-columns:1fr;

    }

    .auth-left,
    .auth-right{

        padding:50px 35px;

    }

}

/* ================= CUSTOM ALERT ================= */

.custom-alert{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.45);

    backdrop-filter:blur(6px);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:99999;

}

.custom-alert.active{

    display:flex;

}

.alert-box{

    width:90%;
    max-width:420px;

    background:white;

    border-radius:22px;

    padding:40px 35px;

    text-align:center;

    animation:popup 0.35s ease;

}

@keyframes popup{

    from{

        transform:scale(0.8);
        opacity:0;

    }

    to{

        transform:scale(1);
        opacity:1;

    }

}

.alert-icon{

    width:90px;
    height:90px;

    margin:auto;

    border-radius:50%;

    background:#e8f8ee;

    color:#16a34a;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:42px;

    margin-bottom:25px;

}

/* SUCCESS */

.alert-icon.success{

    background:#e8f8ee;

    color:#16a34a;

}

/* ERROR */

.alert-icon.error{

    background:#fdecec;

    color:#dc2626;

}

/* WARNING */

.alert-icon.warning{

    background:#fff4dd;

    color:#d97706;

}

.alert-title{

    font-size:30px;

    color:var(--primary);

    margin-bottom:15px;

    font-family:'Cinzel',serif;

}

.alert-text{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.alert-btn{

    padding:14px 35px;

    border:none;

    background:var(--primary);

    color:white;

    border-radius:10px;

    cursor:pointer;

    transition:0.3s;

}

.alert-btn:hover{

    background:var(--gold);

    color:var(--primary);

}

/* ================= LOADER ================= */

.loader-container{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(255,255,255,0.75);

    backdrop-filter:blur(5px);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:999999;

}

.loader-container.active{

    display:flex;

}

.loader{

    width:70px;
    height:70px;

    border:6px solid #eee;

    border-top:6px solid var(--gold);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

/* ================= DASHBOARD ================= */

.dashboard{

    display:flex;

    min-height:100vh;

    background:#f5f6fa;

    font-family:'Poppins',sans-serif;

}

/* ================= SIDEBAR ================= */

.sidebar{

    width:280px;

    background:var(--primary);

    padding:35px 25px;

    position:fixed;

    top:0;
    left:0;

    height:100vh;

    overflow-y:auto;

}

.sidebar-logo{

    text-align:left;

    margin-bottom:50px;

}

.sidebar-logo img{

    width:190px;
    height:auto;
    object-fit:contain;

}

.sidebar-menu{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:12px;

}

.sidebar-menu li{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 20px;

    border-radius:14px;

    color:rgba(255,255,255,0.75);

    cursor:pointer;

    transition:0.3s;

    font-size:15px;

}

.sidebar-menu li i{

    font-size:18px;

}

.sidebar-menu li:hover,
.sidebar-menu li.active{

    background:rgba(255,255,255,0.08);

    color:white;

}

/* ================= MAIN ================= */

.dashboard-main{

    margin-left:280px;

    flex:1;

    padding:35px;

}

/* ================= TOPBAR ================= */

.dashboard-topbar{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    margin-bottom:35px;

    width:100%;

}
.dashboard-topbar > div:first-child{

    flex:1;

}

.profile-wrapper{

    position:relative;

    margin-left:30px;

}

.dashboard-topbar h2{

    font-size:34px;

    color:var(--primary);

    font-family:'Cinzel',serif;

}

.dashboard-topbar p{

    color:#777;

    margin-top:8px;

}

.topbar-right{

    display:flex;

    align-items:center;

    gap:25px;

}

.topbar-right i{

    font-size:22px;

    color:var(--primary);

    cursor:pointer;

}

.admin-profile{

    width:50px;
    height:50px;

    border-radius:50%;

    background:var(--gold);

    color:white;

    display:flex;

    justify-content:center;
    align-items:center;

    font-weight:600;

    font-size:18px;

}

/* ================= CARDS ================= */

.dashboard-cards{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(240px,1fr));

    gap:25px;

    margin-bottom:40px;

}

.dashboard-card{

    background:white;

    border-radius:22px;

    padding:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.06);

}

.dashboard-card h3{

    color:#777;

    font-size:15px;

    margin-bottom:10px;

}

.dashboard-card h1{

    font-size:38px;

    color:var(--primary);

}

.dashboard-card i{

    font-size:42px;

    color:var(--gold);

}

.dashboard-card.occupied i{

    color:#dc2626;

}

.dashboard-card.available i{

    color:#16a34a;

}

.dashboard-card.bookings i{

    color:#2563eb;

}

/* ================= ROOM STATUS ================= */

.room-status-section,
.bookings-section{

    background:white;

    border-radius:22px;

    padding:30px;

    margin-bottom:35px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.06);

}

.section-header{

    margin-bottom:25px;

}

.section-header h2{

    color:var(--primary);

    font-size:30px;

    font-family:'Cinzel',serif;

}


/* ================= TABLE ================= */

table{

    width:100%;

    border-collapse:collapse;

}

table thead{

    background:#f5f6fa;

}

table th{

    padding:18px;

    text-align:left;

    color:var(--primary);

}

table td{

    padding:20px 18px;

    border-bottom:
    1px solid #eee;

    color:#555;

}

.status{

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.status.occupied{

    background:#fdecec;

    color:#dc2626;

}

.status.reserved{

    background:#fff4dd;

    color:#d97706;

}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .sidebar{

        width:100%;

        height:auto;

        position:relative;

    }

    .dashboard-main{

        margin-left:0;

    }

    .dashboard{

        flex-direction:column;

    }

    .dashboard-topbar{

        flex-direction:column;

        align-items:flex-start;

        gap:20px;

    }

}

/* ================= ROOM MODAL ================= */

.room-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.add-room-btn{

    padding:14px 22px;

    border:none;

    background:var(--primary);

    color:white;

    border-radius:10px;

    cursor:pointer;

    font-weight:500;

    transition:0.3s;

}

.add-room-btn:hover{

    background:var(--gold);

    color:var(--primary);

}

.room-modal{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.45);

    backdrop-filter:blur(6px);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:999999;

}

.room-modal.active{

    display:flex;

}

.room-modal-box{

    width:90%;
    max-width:500px;

    background:white;

    border-radius:24px;

    padding:35px;

    animation:popup 0.35s ease;

}

.modal-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.modal-header h2{

    color:var(--primary);

    font-family:'Cinzel',serif;

}

.modal-header button{

    width:40px;
    height:40px;

    border:none;

    border-radius:50%;

    background:#f5f6fa;

    cursor:pointer;

    font-size:18px;

}

.form-group{

    display:flex;

    flex-direction:column;

    margin-bottom:22px;

}

.form-group label{

    margin-bottom:10px;

    color:#555;

    font-weight:500;

}

.form-group input,
.form-group select{

    padding:16px;

    border:1px solid #ddd;

    border-radius:10px;

    outline:none;

}

.save-room-btn{

    width:100%;

    padding:18px;

    border:none;

    background:var(--primary);

    color:white;

    border-radius:10px;

    cursor:pointer;

    font-size:15px;

    transition:0.3s;

}

.save-room-btn:hover{

    background:var(--gold);

    color:var(--primary);

}

/* ================= ROOM GROUPS ================= */

.room-groups{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.room-group{

    background:#fafafa;

    border-radius:20px;

    padding:25px;

    border:1px solid #eee;

}

.room-group h3{

    margin-bottom:20px;

    color:var(--primary);

    font-family:'Cinzel',serif;

    font-size:24px;

}

.room-list{

    display:grid;

    grid-template-columns:
    repeat(9,1fr);

    gap:12px;

}

.room-item{

    display:flex;

    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    padding:14px 10px;

    border-radius:14px;

    background:white;

    border:1px solid #eee;

    min-height:90px;

}

.room-item:last-child{

    border-bottom:none;

}

.room-number{

    font-weight:700;

    color:#222;

    margin-bottom:10px;

    font-size:15px;

}

.room-status{

    font-size:14px;

    font-weight:600;

    padding:6px 14px;

    border-radius:30px;

}

/* AVAILABLE */

.room-status.available{

    background:#e8f8ee;

    color:#16a34a;

}

/* OCCUPIED */

.room-status.occupied{

    background:#fdecec;

    color:#dc2626;

}

/* RESERVED */

.room-status.reserved{

    background:#fff4dd;

    color:#d97706;

}

/* NOT REGISTERED */

.room-status.missing{

    background:#f1f1f1;

    color:#777;

}

/* ================= ROOM DETAILS ================= */

.room-details-modal{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.45);

    backdrop-filter:blur(6px);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:999999;

}

.room-details-modal.active{

    display:flex;

}

.room-details-box{

    width:90%;
    max-width:500px;

    background:white;

    border-radius:24px;

    padding:35px;

    animation:popup 0.35s ease;

}

.details-content{

    margin:30px 0;

    display:flex;

    flex-direction:column;

    gap:22px;

}

.detail-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-bottom:14px;

    border-bottom:1px solid #eee;

}

.detail-row span{

    color:#777;

    font-size:15px;

}

.detail-row h3{

    color:var(--primary);

    font-size:20px;

}

.room-actions{

    display:flex;

    gap:15px;

}

.checkin-btn,
.checkout-btn{

    flex:1;

    padding:16px;

    border:none;

    border-radius:10px;

    cursor:pointer;

    font-weight:600;

    transition:0.3s;

}

.checkin-btn{

    background:#16a34a;

    color:white;

}

.checkout-btn{

    background:#dc2626;

    color:white;

}

.checkin-btn:hover{

    opacity:0.9;

}

.checkout-btn:hover{

    opacity:0.9;

}
/* ================= CHECKIN MODAL ================= */

.checkin-modal{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.45);

    backdrop-filter:blur(6px);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:999999;

}

.checkin-modal.active{

    display:flex;

}

.checkin-box{

    width:95%;
    max-width:550px;

    max-height:90vh;

    overflow-y:auto;

    background:white;

    border-radius:24px;

    padding:35px;

    animation:popup 0.35s ease;

}

/* ================= LOADING ================= */

.loading-screen{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.5);

    backdrop-filter:blur(5px);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:9999999;

}

.loading-screen.active{

    display:flex;

}

.loader-box{

    background:white;

    padding:40px;

    border-radius:24px;

    text-align:center;

    width:300px;

}

.loader{

    width:60px;
    height:60px;

    border:5px solid #eee;

    border-top:5px solid var(--secondary);

    border-radius:50%;

    margin:auto;

    animation:spin 1s linear infinite;

}

.loader-box p{

    margin-top:20px;

    color:var(--primary);

    font-weight:600;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

/* ================= ALERT ================= */

.custom-alert{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.45);

    backdrop-filter:blur(5px);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:99999999;

}

.custom-alert.active{

    display:flex;

}

.alert-box{

    width:90%;
    max-width:400px;

    background:white;

    padding:40px;

    border-radius:24px;

    text-align:center;

    animation:popup 0.3s ease;

}

.alert-icon{

    width:80px;
    height:80px;

    border-radius:50%;

    background:#e8f8ee;

    color:#16a34a;

    display:flex;

    justify-content:center;
    align-items:center;

    font-size:40px;

    margin:auto;

}

.alert-box h3{

    margin-top:20px;

    color:var(--primary);

    font-size:28px;

}

.alert-box p{

    margin:15px 0 25px;

    color:#666;

}

.alert-box button{

    background:var(--primary);

    color:white;

    border:none;

    padding:14px 30px;

    border-radius:10px;

    cursor:pointer;

}
/* ================= RECEIPT ================= */

.receipt-modal{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.5);

    backdrop-filter:blur(6px);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:99999999;

}

.receipt-modal.active{

    display:flex;

}

.receipt-box{

    width:95%;
    max-width:500px;

    background:white;

    border-radius:24px;

    padding:35px;

    animation:popup 0.35s ease;

}

.receipt-header{

    text-align:center;

    margin-bottom:30px;

}

.receipt-header h2{

    color:var(--primary);

    margin-bottom:10px;

    font-family:'Cinzel',serif;

}

.receipt-header h3{

    color:var(--gold);

}

.receipt-details{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.receipt-details p{

    display:flex;

    justify-content:space-between;

    padding-bottom:12px;

    border-bottom:1px solid #eee;

}

.receipt-actions{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.receipt-actions button{

    flex:1;

    padding:15px;

    border:none;

    border-radius:10px;

    cursor:pointer;

    font-weight:600;

}

#printReceipt{

    background:var(--primary);

    color:white;

}

#closeReceipt{

    background:#eee;

}

/* LIVE BOOKING STATUS */

.status.active{

    background:#dcfce7;

    color:#166534;

}

.status.completed{

    background:#f3f4f6;

    color:#374151;

}
/* ================= DASHBOARD SECTIONS ================= */

.dashboard-section{

    display:none;

}

.dashboard-section.active-section{

    display:block;

}
/* ================= RECEPTION ================= */

.reception-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:25px;

}

.reception-card{

    background:white;

    padding:30px;

    border-radius:22px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.06);

}

.reception-card h3{

    margin-bottom:20px;

    color:var(--primary);

    font-family:'Cinzel',serif;

}

.reception-actions{

    display:flex;

    gap:15px;

}

.reception-actions button{

    flex:1;

    padding:16px;

    border:none;

    border-radius:10px;

    cursor:pointer;

    font-weight:600;

    background:var(--primary);

    color:white;

    transition:0.3s;

}

.reception-actions button:hover{

    background:var(--gold);

    color:var(--primary);

}

.occupied-room{

    display:flex;

    justify-content:space-between;

    padding:14px 0;

    border-bottom:1px solid #eee;

}
.mini-checkout{

    padding:10px 16px;

    border:none;

    border-radius:8px;

    background:#dc2626;

    color:white;

    cursor:pointer;

    font-size:13px;

    font-weight:600;

    transition:0.3s;

}

.mini-checkout:hover{

    opacity:0.9;

}
.mini-checkin{

    padding:10px 16px;

    border:none;

    border-radius:8px;

    background:#16a34a;

    color:white;

    cursor:pointer;

    font-size:13px;

    font-weight:600;

    transition:0.3s;

}

.mini-checkin:hover{

    opacity:0.9;

}

.quick-available-rooms{

    margin-top:30px;

}

.quick-available-rooms h4{

    margin-bottom:15px;

    color:var(--primary);

}

#availableRoomsList{

    max-height:400px;

    overflow-y:auto;

}
/* ================= REPORTS ================= */

.reports-top-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr;

    gap:25px;

    margin-bottom:30px;

    align-items:stretch;

}

/* CHART */

.report-chart-card{

    background:white;

    padding:20px;

    border-radius:20px;

    height:350px;

    display:flex;

    align-items:center;

    justify-content:center;

}

/* KPI SIDE */

.report-cards{

    display:flex;

    flex-direction:column;

    gap:25px;

}

/* KPI CARD */

.report-card{

    background:white;

    padding:30px;

    border-radius:20px;

    flex:1;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.report-card h3{

    margin-bottom:15px;

    color:#666;

}

.report-card h1{

    color:var(--primary);

    font-size:40px;

}

/* REPORT TABLE */

.report-table{

    background:white;

    padding:30px;

    border-radius:20px;

}
/* ================= REPORT PRINT BUTTON ================= */

.print-report-receipt{

    background:var(--primary);

    color:white;

    border:none;

    padding:10px 16px;

    border-radius:8px;

    cursor:pointer;

    font-size:13px;

    font-weight:600;

    transition:0.3s;

}

.print-report-receipt:hover{

    background:var(--gold);

    color:var(--primary);

}
/* ================= USER MODAL ================= */

.modal{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.45);

    backdrop-filter:blur(6px);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:999999;

}

.modal.active{

    display:flex;

}

.modal-content{

    width:95%;
    max-width:550px;

    max-height:90vh;

    overflow-y:auto;

    background:white;

    border-radius:24px;

    padding:35px;

    animation:popup 0.35s ease;

}
/* ================= USER BUTTONS ================= */

.add-user-btn{

    padding:14px 22px;

    border:none;

    background:var(--primary);

    color:white;

    border-radius:10px;

    cursor:pointer;

    font-weight:500;

    transition:0.3s ease;

}

.add-user-btn:hover{

    background:var(--gold);

    color:var(--primary);

}

/* CREATE USER BUTTON */

.create-user-btn{

    width:100%;

    padding:18px;

    border:none;

    background:var(--primary);

    color:white;

    border-radius:12px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:0.3s ease;

    margin-top:10px;

}

.create-user-btn:hover{

    background:var(--gold);

    color:var(--primary);

}

/* CLOSE USER MODAL */

.close-user-modal{

    width:40px;
    height:40px;

    border:none;

    border-radius:50%;

    background:#f5f6fa;

    cursor:pointer;

    font-size:18px;

    transition:0.3s ease;

}

.close-user-modal:hover{

    background:#eee;

}
/* ================= PROFILE ================= */

.profile-wrapper{

    position:relative;

}

.admin-profile{

    width:45px;
    height:45px;

    border-radius:50%;

    background:var(--primary);

    color:white;

    display:flex;

    justify-content:center;
    align-items:center;

    font-weight:700;

    cursor:pointer;

    user-select:none;

}

.profile-dropdown{

    position:absolute;

    top:60px;
    right:0;

    width:240px;

    background:white;

    border-radius:18px;

    padding:20px;

    box-shadow:0 10px 30px rgba(0,0,0,0.1);

    display:none;

    z-index:9999;

}

.profile-dropdown.active{

    display:block;

}

.profile-dropdown h4{

    margin-bottom:5px;

}

.profile-dropdown p{

    color:#777;

    font-size:14px;

    margin-bottom:20px;

}

#logoutBtn{

    width:100%;

    padding:14px;

    border:none;

    border-radius:10px;

    background:#ef4444;

    color:white;

    cursor:pointer;

    font-weight:600;

}
/* ================= GROUP BOOKING ================= */

#openGroupBooking{

    padding:12px 18px;

    border:none;

    border-radius:10px;

    background:var(--primary);

    color:white;

    cursor:pointer;

    font-weight:600;

}

#groupRoomsList{

    max-height:350px;

    overflow-y:auto;

    margin:20px 0;

}

.group-room{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px;

    border:1px solid #eee;

    border-radius:12px;

    margin-bottom:10px;

}

.group-summary{

    margin:20px 0;

    font-weight:600;

}

#continueGroupBooking{

    width:100%;

    padding:16px;

    border:none;

    border-radius:12px;

    background:var(--gold);

    color:white;

    font-weight:700;

    cursor:pointer;

}


/* ================= TESTIMONIALS ================= */

.testimonials{

    padding:100px 8%;

    background:#faf7f2;

}

.testimonial-slider{

    max-width:800px;

    margin:40px auto 0;

    position:relative;

}

.testimonial-card{

    display:none;

    background:white;

    padding:40px;

    border-radius:20px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

}

.testimonial-card.active{

    display:block;

}

.stars{

    font-size:24px;

    color:var(--gold);

    margin-bottom:20px;

}

.testimonial-card p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:20px;

}

.testimonial-card h4{

    color:var(--primary);

}
.testimonial-avatar{

    width:70px;

    height:70px;

    margin:0 auto 20px;

    border-radius:50%;

    background:var(--gold);

    color:white;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

}

.guest-type{

    display:block;

    margin-top:8px;

    color:#777;

    font-size:14px;

}

.testimonial-dots{

    display:flex;

    justify-content:center;

    gap:10px;

    margin-top:30px;

}

.testimonial-dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#d0d0d0;

    transition:.3s ease;

}

.testimonial-dot.active{

    background:var(--gold);

    transform:scale(1.2);

}
/* ================= FAQ ================= */

.faq{

    padding:80px 8%;

    background:white;

}

.faq-container{

    width:100%;

    margin-top:40px;

}

.faq-item{

    border-bottom:1px solid #e5e5e5;

}

.faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 0;

    cursor:pointer;

}

.faq-question h3{

    font-size:18px;

    text-align:left;

    flex:1;

}

.faq-question span{

    font-size:28px;

    color:var(--gold);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding-bottom:25px;

    color:#666;

    line-height:1.8;

    text-align:left;

}

.faq-item.active .faq-answer{

    max-height:200px;

}
/* ================= BOOKING CTA ================= */

.booking-cta{

    padding:100px 8%;

    background:
    linear-gradient(
        135deg,
        #5c0000,
        #8b0000
    );

    text-align:center;

    color:white;

}

.booking-cta-content{

    max-width:800px;

    margin:auto;

}

.booking-cta span{

    color:var(--gold);

    letter-spacing:2px;

    text-transform:uppercase;

}

.booking-cta h2{

    font-size:48px;

    margin:20px 0;

}

.booking-cta p{

    font-size:18px;

    line-height:1.8;

    opacity:.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

}

.cta-btn{

    padding:16px 35px;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.3s ease;

}

.cta-btn.primary{

    background:var(--gold);

    color:white;

}

.cta-btn.secondary{

    border:2px solid white;

    color:white;

}

.cta-btn:hover{

    transform:translateY(-3px);

}
@media(max-width:768px){

    .booking-cta h2{

        font-size:34px;

    }

}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float{

    position:fixed;

    bottom:25px;

    right:25px;

    width:65px;

    height:65px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    text-decoration:none;

    box-shadow:
    0 10px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s ease;

}

.whatsapp-float:hover{

    transform:translateY(-5px)
    scale(1.08);

}

.whatsapp-float{

    animation:
    whatsappPulse 2s infinite;

}

@keyframes whatsappPulse{

    0%{

        box-shadow:
        0 0 0 0
        rgba(37,211,102,.6);

    }

    70%{

        box-shadow:
        0 0 0 20px
        rgba(37,211,102,0);

    }

    100%{

        box-shadow:
        0 0 0 0
        rgba(37,211,102,0);

    }

}

/* ================= SCROLL REVEAL ================= */

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:
    opacity .8s ease,
    transform .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/* ================= ROOM VIEW MODAL ================= */

.room-modal-view{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.8);

    backdrop-filter:blur(6px);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:99999;

}

.room-modal-view.active{

    display:flex;

}

.room-modal-content{

    width:90%;
    max-width:900px;

    background:white;

    border-radius:20px;

    overflow:hidden;

    display:grid;

    grid-template-columns:1fr 1fr;

    position:relative;

    animation:popup .3s ease;

}

.room-modal-content img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.room-modal-details{

    padding:40px;

}

.room-modal-details h2{

    color:var(--primary);

    margin-bottom:15px;

    font-size:36px;

    font-family:'Cinzel',serif;

}

.room-modal-details h3{

    color:var(--gold);

    margin-bottom:20px;

}

.room-modal-details p{

    line-height:1.8;

    color:#666;

}

.room-book-btn{

    margin-top:30px;

    padding:16px 30px;

    border:none;

    background:var(--gold);

    color:white;

    border-radius:10px;

    cursor:pointer;

}

.close-room-modal{

    position:absolute;

    top:15px;
    right:20px;

    font-size:40px;

    color:rgb(0, 0, 0);

    cursor:pointer;

    z-index:5;

}



@media(max-width:768px){

    .room-modal-content{

        width:95%;
        max-height:90vh;

        overflow-y:auto;

        grid-template-columns:1fr;

    }

}
.room-amenities{

    list-style:none;

    padding:0;

    margin:25px 0;

}

.room-amenities li{

    padding:8px 0;

    color:#555;

    font-weight:500;

}

.room-amenities li::before{

    content:"✓ ";

    color:var(--gold);

    font-weight:bold;

}

/* ================= WHY US ================= */

.why-us{

    padding:100px 8%;

    background:#faf7f2;

}

.why-us-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    margin-top:50px;

}

.why-card{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.3s ease;

}

.why-card:hover{

    transform:translateY(-8px);

}

.why-card h3{

    color:var(--primary);

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}
/* ================= STATISTICS ================= */

.stats-section{

    background:var(--primary);

    padding:80px 8%;

}

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.stat-card{

    text-align:center;

    color:rgb(255, 255, 255);

}

.stat-card h2{

    font-size:58px;

    color:var(--gold);

    margin-bottom:10px;

    font-family:'Cinzel',serif;

}

@media(max-width:768px){

    .stat-card h2{
        font-size:42px;
    }

}

.stat-card p{

    font-size:18px;

    opacity:.9;

}

.explore-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}
.explore-btn{
    margin-top: 30px;
}