@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');


html, body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  scroll-behavior:smooth;
}
body{
    overflow-x:clip;
    overflow-y:auto;
}
img{
  max-width:100%;
  height:auto
}
body{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #f5f5f5;
    background: #0d0d0d;
}
/* Headings */
h1, h2, h3, h4, h5, h6{
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
}
/* Fade Animations */
.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}
.fade-down{
    opacity:0;
    transform:translateY(-40px);
    transition:all .8s ease;
}
.fade-left{
    opacity:0;
    transform:translateX(-50px);
    transition:all .8s ease;
}
.fade-right{
    opacity:0;
    transform:translateX(50px);
    transition:all .8s ease;
}
.fade{
    opacity:0;
    transition:opacity .8s ease;
}
.fade-up.show,
.fade-down.show,
.fade-left.show,
.fade-right.show,
.fade.show{
    opacity:1;
    transform:translate(0,0);
}
.delay-1{transition-delay:.15s;}
.delay-2{transition-delay:.3s;}
.delay-3{transition-delay:.45s;}
.delay-4{transition-delay:.6s;}
.delay-5{transition-delay:.75s;}
.zoom{
    overflow:hidden;
    border-radius:12px;
}
.zoom img{
    transition:transform 1s ease;
}
.zoom:hover img{
    transform:scale(1.08);
}
.section-title{
    position:relative;
    display:inline-block;
}
.section-title::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-12px;
    width:0;
    height:2px;
    background:#d4af37;
    transform:translateX(-50%);
    transition:.6s ease;
}
.section-title.show::after{
    width:80px;
}

/* NAVBAR */
.navbar{
    background: rgba(10,10,10,.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:.4s;
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:15px 0;
}
.navbar.scrolled{
    background:#090909;
    box-shadow:0 10px 35px rgba(0,0,0,.35);
}
.logo{
    max-width:100px;
    height:auto;
}
.navbar-nav{
    gap:12px;
}
.nav-link{
    color:#ddd !important;
    font-weight:500;
    font-size:15px;
    letter-spacing:.5px;
    padding:10px 18px !important;
    transition:.35s;
    position:relative;
}
.nav-link:hover{
    color:#d4af37 !important;
}
.nav-link::after{
    content:"";
    position:absolute;
    left:18px;
    bottom:4px;
    width:0;
    height:2px;
    background:#d4af37;
    transition:.3s;
}
.nav-link:hover::after,
.nav-link.active::after{
    width:calc(100% - 36px);
}
.nav-link.active{
    color:#fff !important;
}
.book-btn{
    background:linear-gradient(135deg,#d4af37,#f7d774);
    color:#111;
    text-decoration:none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-weight:700;
    padding:13px 28px;
    border-radius:50px;
    transition:.35s;
    box-shadow:0 8px 20px rgba(212,175,55,.35);
}
.book-btn:hover{
    transform:translateY(-3px);
    color:#111;
    box-shadow:0 14px 30px rgba(212,175,55,.45);
}
.language-dropdown .dropdown-menu{
    background:#1b1b1b;
    border:none;
    border-radius:14px;
    overflow:hidden;
    min-width:190px;
    margin-top:15px;
    box-shadow:0 18px 40px rgba(0,0,0,.45);
}
.language-dropdown .dropdown-item{
    color:#ddd;
    padding:12px 18px;
    display:flex;
    align-items:center;
    gap:12px;
    transition:.3s;
}
.language-dropdown .dropdown-item:hover{
    background:#2d2d2d;
    color:#d4af37;
}
.flag{
    width:22px;
    height:16px;
    border-radius:2px;
    object-fit:cover;
}

/* HERO */
.hero{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    height:clamp(650px,100vh,900px);
    min-height:650px;
    background:#000;
}
.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    transform:scale(1.02);
    animation:heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom{
    from{
        transform:scale(1.02);
    }
    to{
        transform:scale(1.08);
    }
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,.35) 0%,
        rgba(0,0,0,.45) 30%,
        rgba(0,0,0,.68) 100%
    );
    z-index:1;
}
.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    text-align:center;
    color:#fff;
    padding:0 20px;
}
.hero-subtitle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
    padding:10px 22px;
    margin-bottom:30px;
    border-radius:100px;
    border:1px solid rgba(212,175,55,.35);
    background:rgba(0,0,0,.28);
    backdrop-filter:blur(10px);
    color:#D4AF37;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:600;
}
.hero-subtitle i{
    color:#D4AF37;
    font-size:12px;
}
.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(3.3rem,7vw,6.2rem);
    line-height:1.05;
    font-weight:600;
    letter-spacing:1px;
    color:#fff;
    margin-bottom:28px;
    text-shadow:
    0 8px 25px rgba(0,0,0,.35);
}
.hero p{
    max-width:720px;
    margin:0 auto 45px;
    color:#ddd;
    font-size:1.12rem;
    font-weight:300;
    line-height:1.9;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}
.hero-buttons .book-btn{
    padding:16px 38px;
    border-radius:50px;
    box-shadow:
    0 15px 35px rgba(212,175,55,.35);
    transition:.35s;
}
.hero-buttons .book-btn:hover{
    transform:translateY(-5px);
    box-shadow:
    0 22px 45px rgba(212,175,55,.45);
}
.outline-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 36px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.45);
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(12px);
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.35s;
}
.outline-btn:hover{
    background:#fff;
    color:#111;
    border-color:#fff;
    transform:translateY(-5px);
    box-shadow:
    0 20px 40px rgba(255,255,255,.15);
}
.scroll-indicator{
    position:absolute;
    left:50%;
    bottom:35px;
    transform:translateX(-50%);
    z-index:5;
}
.scroll-indicator span{
    width:2px;
    height:60px;
    display:block;
    overflow:hidden;
    background:rgba(255,255,255,.25);
    position:relative;
}
.scroll-indicator span::after{
    content:"";
    position:absolute;
    left:0;
    width:100%;
    height:26px;
    background:#D4AF37;
    animation:scrollDown 2s infinite;
}
@keyframes scrollDown{
    from{
        top:-28px;
    }
    to{
        top:70px;
    }
}

/* ABOUT  */
.about-section{
    padding:90px 0;
    background:#111;
    overflow:hidden;
}
.about-images{
    position:relative;
    min-height:650px;
}
.about-img{
    position:absolute;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}
.about-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.img-large{
    width:70%;
    height:560px;
    left:0;
    top:40px;
}
.img-small-top{
    width:42%;
    height:240px;
    right:0;
    top:0;
}
.img-small-bottom{
    width:48%;
    height:290px;
    right:20px;
    bottom:0;
}
.about-section h2{
    font-size:56px;
    color:#fff;
    line-height:1.15;
    margin:20px 0 30px;
}
.about-section p{
    color:#bfbfbf;
    font-size:16px;
    line-height:1.9;
    margin-bottom:22px;
    max-width:560px;
}

/* FACILITIES */
.facilities-section{
    position:relative;
    padding:90px 0;
    background:
    url("image/experience-bg.jpg")
    center center / cover no-repeat;
    overflow:hidden;
}
.facilities-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,.65),
        rgba(0,0,0,.78)
    );
    z-index:1;
}
.facilities-section .container{
    position:relative;
    z-index:2;
}
.facilities-header h2{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    font-weight:600;
    line-height:1.15;
    max-width:750px;
    margin:20px auto 25px;
}
.facilities-header p{
    color:#ddd;
    max-width:650px;
    margin:auto;
    line-height:1.8;
    font-size:16px;
}
.facility-card{
    height:100%;
    padding:45px 25px;
    text-align:center;
    background:
    rgba(15,15,15,.75);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.12);
    border-radius:20px;
    transition:.4s ease;
}
.facility-card:hover{
    transform:translateY(-12px);
    border-color:#D4AF37;
    background:
    rgba(20,20,20,.9);
    box-shadow:
    0 25px 50px rgba(0,0,0,.45);
}
.facility-card i{
    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    border-radius:50%;
    border:1px solid rgba(212,175,55,.45);
    color:#D4AF37;
    font-size:32px;
}
.facility-card h3{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:32px;
    font-weight:600;
    margin-bottom:15px;
}
.facility-card p{
    color:#d0d0d0;
    font-size:15px;
    line-height:1.8;
    margin:0;
}


/* ROOMS SECTION */
.rooms-section{
    padding:90px 0;
    background:#0d0d0d;
    overflow:hidden;
}
.rooms-header{
    max-width:800px;
    margin:0 auto;
}
.rooms-header h2{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    font-weight:600;
    line-height:1.15;
    margin:20px 0 25px;
}
.rooms-header p{
    color:#bdbdbd;
    font-size:16px;
    line-height:1.9;
    max-width:650px;
    margin:auto;
}
.rooms-carousel{
    margin-top:70px;
}
.rooms-carousel .owl-stage{
    display:flex;
}
.rooms-carousel .owl-item{
    padding:0 12px;
}
.room-card{
    height:560px;
    position:relative;
    overflow:hidden;
    border-radius:24px;
    background:#000;
    box-shadow:
    0 25px 60px rgba(0,0,0,.45);
}
.room-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1.2s ease;
}
.room-card:hover img{
    transform:scale(1.08);
}
.room-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    padding:45px 40px;
    background:
    linear-gradient(
        180deg,
        transparent 20%,
        rgba(0,0,0,.85)
    );
}
.room-overlay div{
    transform:translateY(25px);
    transition:.5s ease;
}
.room-card:hover .room-overlay div{
    transform:translateY(0);
}
.room-overlay span{
    display:block;
    color:#D4AF37;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:12px;
}
.room-overlay h3{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    font-weight:600;
    line-height:1.1;
    margin-bottom:20px;
}
.room-overlay a{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    letter-spacing:1px;
}
.room-overlay a:hover{
    color:#D4AF37;
}
.room-overlay a i{
    transition:.35s;
}
.room-overlay a:hover i{
    transform:translateX(6px);
}
.rooms-carousel .owl-dots{
    margin-top:45px;
    text-align:center;
}
.rooms-carousel .owl-dot span{
    width:35px !important;
    height:3px !important;
    margin:5px 6px !important;
    background:#555 !important;
    border-radius:0 !important;
    transition:.4s;
}
.rooms-carousel .owl-dot.active span{
    background:#D4AF37 !important;
    width:60px !important;
}
.rooms-section .book-btn{
    display:inline-block;
    margin-top:25px;
}


/* SERVICES */
.services-section{
    padding:90px 0;
    background:#111;
}
.services-header h2{
    color:#fff;
    font-size:56px;
    line-height:1.15;
    margin:20px auto 25px;
    max-width:750px;
}
.services-header p{
    color:#aaa;
    max-width:600px;
    margin:auto;
    line-height:1.8;
}
.service-card{
    background:#171717;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    height:100%;
    transition:.4s;
}
.service-card:hover{
    transform:translateY(-10px);
    border-color:#D4AF37;
}
.service-image{
    height:260px;
    overflow:hidden;
}
.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}
.service-card:hover img{
    transform:scale(1.08);
}
.service-content{
    padding:35px 30px;
    text-align:center;
}
.service-content h3{
    color:#fff;
    font-size:32px;
    margin-bottom:18px;
}
.service-content p{
    color:#aaa;
    line-height:1.8;
    margin-bottom:25px;
}
.service-content a{
    color:#D4AF37;
    text-decoration:none;
    font-size:14px;
    letter-spacing:1px;
}
.service-content a i{
    margin-left:8px;
    transition:.3s;
}
.service-content a:hover i{
    transform:translateX(5px);
}

/* GALLERY CAROUSEL */
.gallery-section{
    padding:90px 0;
    background:#0d0d0d;
}
.gallery-header h2{
    color:#fff;
    font-size:56px;
    line-height:1.15;
    margin:20px 0 25px;
}
.gallery-header p{
    color:#aaa;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}
.gallery-carousel{
    margin-top:60px;
}
.gallery-carousel .owl-stage{
    display:flex;
}
.gallery-carousel .owl-item{
    padding:0 12px;
}
.gallery-card{
    height:450px;
    border-radius:22px;
    overflow:hidden;
    position:relative;
}
.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s ease;
}
.gallery-card:hover img{
    transform:scale(1.08);
}
.gallery-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.7)
    );
}
.gallery-card a{
    position:absolute;
    bottom:35px;
    left:35px;
    z-index:2;
    color:#fff;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.5);
    padding:12px 25px;
    border-radius:50px;
    font-size:14px;
    transition:.35s;
}
.gallery-card a:hover{
    background:#D4AF37;
    color:#111;
    border-color:#D4AF37;
}
.gallery-carousel .owl-dots{
    margin-top:40px;
    text-align:center;
}
.gallery-carousel .owl-dot span{
    width:35px !important;
    height:3px !important;
    background:#555 !important;
    border-radius:0 !important;
}
.gallery-carousel .owl-dot.active span{
    width:60px !important;
    background:#D4AF37 !important;
}

/* TESTIMONIALS SECTION */
.testimonials-section{
    padding:90px 0;
    background:#111;
}
.testimonials-header h2{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:56px;
    line-height:1.15;
    margin:20px 0 25px;
}
.testimonials-header p{
    color:#aaa;
    max-width:650px;
    margin:0 auto;
    line-height:1.8;
    font-size:16px;
}
.testimonials-carousel{
    margin-top:65px;
}
.testimonials-carousel .owl-stage{
    display:flex;
}
.testimonials-carousel .owl-item{
    padding:0 12px;
}
.testimonial-card{
    position:relative;
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:45px 40px;
    min-height:360px;
    transition:.4s ease;
    overflow:hidden;
}
.testimonial-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:#D4AF37;
    transform:scaleX(0);
    transform-origin:left;
    transition:.5s ease;
}
.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:rgba(212,175,55,.5);
}
.testimonial-card:hover::before{
    transform:scaleX(1);
}
.review-score{
    position:absolute;
    top:25px;
    right:25px;
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#D4AF37;
    color:#111;
    font-family:'Poppins',sans-serif;
    font-size:17px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(212,175,55,.35);
}
.stars{
    display:flex;
    gap:5px;
    margin-bottom:25px;
}
.stars i{
    color:#D4AF37;
    font-size:16px;
}
.testimonial-card p{
    color:#ddd;
    font-size:16px;
    line-height:1.9;
    font-style:italic;
    margin-bottom:35px;
}
.guest{
    display:flex;
    align-items:center;
    gap:15px;
}
.guest-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(212,175,55,.5);
    color:#D4AF37;
    font-size:18px;
}
.guest h4{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:24px;
    margin:0 0 5px;
}
.guest span{
    color:#999;
    font-size:13px;
}
.testimonials-carousel .owl-dots{
    margin-top:45px;
    text-align:center;
}
.testimonials-carousel .owl-dot span{
    width:35px !important;
    height:3px !important;
    margin:5px 6px !important;
    background:#555 !important;
    border-radius:0 !important;
    transition:.4s;
}
.testimonials-carousel .owl-dot.active span{
    width:60px !important;
    background:#D4AF37 !important;
}


/* BOOKING CTA */
.booking-cta{
    position:relative;
    padding:130px 0;
    background:
    url("image/booking-bg.jpg")
    center/cover no-repeat;
}
.booking-overlay{
    position:absolute;
    inset:0;
    background:
    rgba(0,0,0,.65);
}
.booking-content{
    position:relative;
    z-index:2;
    color:#fff;
}
.booking-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:65px;
    line-height:1.1;
    max-width:850px;
    margin:20px auto 25px;
}
.booking-content p{
    color:#ddd;
    max-width:600px;
    margin:0 auto 40px;
    font-size:17px;
    line-height:1.8;
}
.booking-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.booking-buttons .outline-btn{
    padding:13px 35px;
}

/* FOOTER */
.footer{
    padding:70px 20px 5px;
    background:#080808;
    border-top:1px solid rgba(255,255,255,.08);
}
.footer .container-fluid{
    padding-left:60px;
    padding-right:60px;
}
.footer-logo{
    display:inline-block;
    margin-bottom:25px;
}
.footer-logo img{
    width:120px;
    height:auto;
}
.footer p{
    color:#999;
    font-size:14px;
    line-height:1.9;
    max-width:380px;
}
.footer h3{
    font-family:'Cormorant Garamond',serif;
    color:#fff;
    font-size:30px;
    font-weight:600;
    margin-bottom:30px;
    position:relative;
}
.footer h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:45px;
    height:2px;
    background:#D4AF37;
}
.footer-social{
    display:flex;
    gap:12px;
    margin-top:30px;
}
.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#D4AF37;
    border:1px solid rgba(212,175,55,.5);
    text-decoration:none;
    transition:.35s;
}
.footer-social a:hover{
    background:#D4AF37;
    color:#111;
    transform:translateY(-4px);
}
.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}
.footer ul li{
    margin-bottom:15px;
}
.footer ul li a{
    color:#999;
    text-decoration:none;
    font-size:14px;
    transition:.35s;
}
.footer ul li a:hover{
    color:#D4AF37;
    padding-left:6px;
}
.footer-contact{
    display:flex;
    flex-direction:column;
    gap:15px;
}
.footer-contact a{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:#999;
    text-decoration:none;
    font-size:14px;
    line-height:1.7;
    transition:.35s;
}
.footer-contact a:hover{
    color:#D4AF37;
}
.footer-contact i{
    color:#D4AF37;
    font-size:16px;
    margin-top:5px;
    width:18px;
}
.footer-map{
    height:220px;
    overflow:hidden;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.1);
}
.footer-map iframe{
    width:100%;
    height:100%;
    border:0;
    filter:grayscale(30%);
    transition:.5s;
}
.footer-map:hover iframe{
    filter:grayscale(0);
}
.footer-bottom{
    margin-top:30px;
    padding-top:10px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}
.footer-bottom p{
    margin:0;
    max-width:none;
    font-size:13px;
    color:#777;
}
.footer-bottom a{
    text-decoration:none;
}
.designer-logo{
    width:80px;
    height:auto;
    margin-left:8px;
    vertical-align:middle;
    opacity:.8;
    transition:.3s;
}
.designer-logo:hover{
    opacity:1;
}

/* PAGE HERO */
.page-hero{
    height:420px;
    position:relative;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
}

.page-hero.hero-rooms{
    background-image:url("image/rooms-bg.jpg");
}
.page-hero.hero-gallery{
    background-image:url("image/gallery-bg.jpg");
}
.page-hero.hero-about{
    background-image:url("image/about-bg.jpg");
}
.page-hero.hero-contact{
    background-image:url("image/contact-bg.jpg");
}
.page-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.75)
    );
}
.page-hero-content{
    position:relative;
    z-index:2;
    padding-top:70px;
}
.page-hero h1{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    font-weight:600;
    line-height:1.1;
    margin:20px 0 25px;
}
.breadcrumb-nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    color:#aaa;
    font-size:14px;
    letter-spacing:1px;
}
.breadcrumb-nav a{
    color:#D4AF37;
    text-decoration:none;
    transition:.3s;
}
.breadcrumb-nav a:hover{
    color:#fff;
}
.breadcrumb-nav span{
    color:#777;
}

/* ROOMS.HTML */
.rooms-page-section{
    padding:90px 0;
    background:
        radial-gradient(circle at top,#1d1d1d 0%,#111 45%,#0b0b0b 100%);
    position:relative;
}
.rooms-page-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("image/pattern.png");
    opacity:.03;
    pointer-events:none;
}
.room-detail-card{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:70px;
    padding:30px;
    position:relative;
    overflow:hidden;
    border-radius:30px;
    background:#141414;
    border:1px solid rgba(255,255,255,.08);
    transition:.45s ease;
}
.room-detail-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:30px;
    padding:1px;
    background:linear-gradient(
        120deg,
        transparent,
        transparent,
        #D4AF37,
        #fff,
        #D4AF37,
        transparent,
        transparent
    );
    background-size:300% 300%;
    animation:shineBorder 5s linear infinite;
    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
}
/* @keyframes shineBorder{
    0%{
        background-position:0% 50%;
    }
    100%{
        background-position:300% 50%;
    }
} */
.room-detail-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 0 35px rgba(212,175,55,.25),
    0 25px 60px rgba(0,0,0,.45);
}
.room-detail-card:hover::before{
    animation-duration:2.5s;
    filter:drop-shadow(0 0 12px rgba(212,175,55,.5));
}
.room-detail-card.reverse{
    flex-direction:row-reverse;
}
.room-detail-image{
    width:50%;
    height:450px;
    border-radius:25px;
    overflow:hidden;
    position:relative;
}
.room-detail-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.25),
    transparent 45%);
}
.room-detail-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1.2s ease;
}
.room-detail-card:hover img{
    transform:scale(1.08);
}
.room-detail-content{
    width:50%;
}
.room-category{
    display:inline-block;
    color:#D4AF37;
    font-size:12px;
    letter-spacing:5px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:15px;
}
.room-detail-content h2{
    color:#fff;
    font-size:44px;
    line-height:1.1;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:20px;
}
.room-detail-content p{
    color:#9c9c9c;
    font-size:17px;
    line-height:1.9;
    margin-bottom:35px;
    max-width:95%;
}
.room-meta{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:30px;
}
.room-meta div{
    display:flex;
    align-items:center;
    gap:14px;
    background:#171717;
    border:1px solid rgba(255,255,255,.05);
    border-radius:14px;
    padding:14px 18px;
    transition:.35s;
}
.room-meta div:hover{
    border-color:#D4AF37;
    transform:translateY(-3px);
}
.room-meta i{
    color:#D4AF37;
    font-size:18px;
}
.room-meta span{
    color:#ececec;
    font-size:15px;
    font-weight:500;
}
.room-detail-content .book-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 40px;
    border-radius:50px;
    background:#D4AF37;
    color:#111;
    text-decoration:none;
    font-weight:700;
    letter-spacing:1px;
    transition:.35s;
    box-shadow:0 15px 35px rgba(212,175,55,.25);
}
.room-detail-content .book-btn:hover{
    background:#fff;
    color:#111;
    transform:translateY(-3px);
    box-shadow:0 20px 45px rgba(255,255,255,.15);
}

/* GALLERY SECTION */
.gallery-page-section{
    padding:90px 0;
    background:#111;
}
.gallery-page-header{
    margin-bottom:60px;
}
.gallery-page-header h1{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    line-height:1.1;
    margin:20px 0;
}
.gallery-page-header p{
    color:#aaa;
    max-width:600px;
    margin:auto;
    font-size:17px;
    line-height:1.8;
}
.gallery-item{
    overflow:hidden;
    border-radius:18px;
    background:#181818;
    transition:.5s ease;
}
.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    border-radius:18px;
    transition:
        transform .8s cubic-bezier(.2,.8,.2,1),
        filter .5s ease;
}
.gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0,0,0,.45);
}
.gallery-item:hover img{
    transform:scale(1.08);
    filter:brightness(.85);
}
.gallery-item a{
    display:block;
    text-decoration:none;
}

/* CONTACT SECTION */
.contact-section{
    padding:90px 0;
    background:#111;
}
.contact-section h2{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    line-height:1.15;
    margin:20px 0 20px;
}
.contact-section p{
    color:#aaa;
    line-height:1.5;
    margin-bottom:25px;
}
.contact-info{
    display:flex;
    flex-direction:column;
    gap:22px;
}
.info-box{
    background:#161616;
    border:1px solid rgba(255,255,255,.08);
    padding:12px;
    border-radius:18px;
    transition:.4s ease;
}
.info-box:hover{
    border-color:#D4AF37;
    transform:translateX(8px);
}
.info-box h4{
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    font-size:1.3rem;
    margin:0 0 12px;
}
.info-box a{
    display:flex;
    align-items:center;
    gap:15px;
    color:#999;
    font-size:14px;
    text-decoration:none;
    line-height:1.6;
    transition:.3s ease;
    word-break:break-word;
}
.info-box a:hover{
    color:#D4AF37;
}
.info-box i{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid rgba(212,175,55,.6);
    color:#D4AF37;
    font-size:17px;
    flex-shrink:0;
}
.map-wrapper{
    height:650px;
    border-radius:25px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.1);
    box-shadow:
    0 25px 60px rgba(0,0,0,.35);
}
.map-wrapper iframe{
    width:100%;
    height:100%;
    border:0;
    filter:grayscale(20%);
}





/* ================================
   RESPONSIVE
================================ */
/* CONTACT RESPONSIVE */

@media(max-width:1199px){

    .contact-section{
        padding:80px 0;
    }

    .contact-section h2{
        font-size:44px;
    }

    .map-wrapper{
        height:550px;
    }

}


@media(max-width:991px){

    .contact-section{
        padding:70px 0;
    }


    .contact-section h2{
        font-size:40px;
        margin-top:15px;
    }


    .contact-section p{
        font-size:15px;
        line-height:1.7;
    }


    .contact-info{
        gap:18px;
    }


    .info-box{
        padding:15px;
    }


    .info-box:hover{
        transform:none;
    }


    .info-box h4{
        font-size:1.2rem;
    }


    .info-box a{
        font-size:13px;
    }


    .map-wrapper{
        height:450px;
        border-radius:20px;
    }

}



@media(max-width:767px){

    .contact-section{
        padding:60px 0;
    }


    .contact-section h2{
        font-size:36px;
        line-height:1.2;
    }


    .contact-section p{
        margin-bottom:20px;
    }


    .info-box{
        padding:14px;
        border-radius:15px;
    }


    .info-box a{
        align-items:flex-start;
        gap:12px;
    }


    .info-box i{
        width:40px;
        height:40px;
        font-size:15px;
    }


    .map-wrapper{
        height:380px;
        border-radius:18px;
    }

}



@media(max-width:480px){

    .contact-section{
        padding:50px 0;
    }


    .contact-section h2{
        font-size:32px;
    }


    .hero-subtitle{
        font-size:12px;
        letter-spacing:2px;
    }


    .info-box h4{
        font-size:1.1rem;
    }


    .info-box a{
        font-size:12px;
    }


    .map-wrapper{
        height:320px;
    }

}















/* RESPONSIVE MEDIA QUERIES */
@media(max-width:991px){
    .navbar{
        padding:12px 0;
    }
    .logo{
        max-width:85px;
    }
    .navbar-toggler{
        padding:8px;
    }
    .navbar-collapse{
        margin-top:20px;
        background:rgba(10,10,10,.95);
        backdrop-filter:blur(15px);
        -webkit-backdrop-filter:blur(15px);
        border-radius:18px;
        padding:20px;
        border:1px solid rgba(255,255,255,.08);
        box-shadow:
        0 20px 50px rgba(0,0,0,.5);
    }
    .navbar-nav{
        gap:5px;
        align-items:stretch !important;
    }
    .nav-link{
        padding:14px 15px !important;
        font-size:15px;
        border-radius:10px;
    }
    .nav-link:hover{
        background:rgba(212,175,55,.08);
    }
    .nav-link::after{
        display:none;
    }
    .nav-link.active{
        background:rgba(212,175,55,.12);
        color:#D4AF37 !important;
    }
    .navbar-collapse .book-btn{
        display:block;
        text-align:center;
        margin-top:20px;
        padding:14px 25px;
    }
    .language-dropdown{
        margin-top:5px;
    }
    .language-dropdown .dropdown-menu{
        position:static !important;
        transform:none !important;
        width:100%;
        margin-top:5px;
        background:#151515;
        box-shadow:none;
        border:1px solid rgba(255,255,255,.08);
    }
    .language-dropdown .dropdown-item{
        padding:12px 15px;
    }
}
@media(max-width:576px){
    .navbar .container{
        padding-left:18px;
        padding-right:18px;
    }
    .logo{
        max-width:75px;
    }
    .navbar-collapse{
        padding:15px;
        border-radius:15px;
    }
    .nav-link{
        font-size:14px;
    }
}
@media (max-width:1200px){
    .hero{
        height:82vh;
        min-height:620px;
    }
    .hero h1{
        font-size:4.8rem;
    }
    .hero p{
        font-size:1.05rem;
    }
}
@media (max-width:991px){
    .hero{
        height:760px;
        min-height:760px;
    }
    .hero-content{
        max-width:700px;
    }
    .hero-subtitle{
        font-size:11px;
        letter-spacing:2px;
        padding:9px 18px;
        margin-bottom:22px;
    }
    .hero h1{
        font-size:3.8rem;
        margin-bottom:18px;
    }
    .hero p{
        font-size:1rem;
        line-height:1.75;
        margin-bottom:32px;
    }
    .hero-buttons{
        gap:14px;
    }
    .hero-buttons .book-btn{
        padding:14px 30px;
    }
    .outline-btn{
        padding:14px 30px;
    }
}
@media (max-width:767px){
    .hero{
        height:650px;
        min-height:650px;
    }
    .hero-content{
        padding:0 24px;
    }
    .hero-subtitle{
        padding:8px 16px;
        font-size:10px;
        letter-spacing:1.5px;
        gap:6px;
    }
    .hero-subtitle i{
        font-size:10px;
    }
    .hero h1{
        font-size:2.8rem;
        line-height:1.1;
    }
    .hero p{
        font-size:.95rem;
        line-height:1.7;
        margin-bottom:28px;
    }
    .hero-buttons{
        flex-direction:column;
        width:100%;
    }
    .hero-buttons .book-btn,
    .outline-btn{
        width:100%;
        max-width:320px;
    }
    .scroll-indicator{
        display:none;
    }
}
@media (max-width:480px){
    .hero{
        height:620px;
        min-height:620px;
    }
    .hero h1{
        font-size:2.35rem;
    }
    .hero p{
        font-size:.9rem;
    }
    .hero-subtitle{
        font-size:9px;
        padding:7px 14px;
    }
}
@media(max-width:1200px){
    .about-section{
        padding:100px 0;
    }
    .about-images{
        min-height:580px;
    }
    .img-large{
        height:500px;
    }
    .img-small-top{
        height:210px;
    }
    .img-small-bottom{
        height:250px;
    }
    .about-section h2{
        font-size:48px;
    }
    .about-section p{
        font-size:15px;
    }
}
@media(max-width:991px){
    .about-section{
        padding:90px 0;
    }
    .about-images{
        min-height:auto;
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:20px;
    }
    .about-img{
        position:relative;
        width:100%;
        height:260px;
        left:auto;
        right:auto;
        top:auto;
        bottom:auto;
    }
    .img-large{
        grid-column:1 / 3;
        height:420px;
    }
    .img-small-top,
    .img-small-bottom{
        height:230px;
    }
    .about-section h2{
        font-size:44px;
        margin-top:10px;
        margin-bottom:25px;
    }
    .about-section p{
        max-width:100%;
        font-size:15px;
        line-height:1.8;
    }
}
@media(max-width:767px){
    .about-section{
        padding:75px 0;
    }
    .about-images{
        display:flex;
        flex-direction:column;
        gap:18px;
    }
    .about-img,
    .img-large,
    .img-small-top,
    .img-small-bottom{
        width:100%;
        height:260px;
    }
    .img-large{
        height:340px;
    }
    .about-section h2{
        font-size:36px;
        line-height:1.2;
    }
    .about-section p{
        font-size:14px;
        line-height:1.8;
    }
    .about-section .hero-subtitle{
        margin-bottom:20px;
    }
}
@media(max-width:480px){
    .about-section{
        padding:65px 0;
    }
    .img-large{
        height:300px;
    }
    .about-img,
    .img-small-top,
    .img-small-bottom{
        height:220px;
    }
    .about-section h2{
        font-size:32px;
    }
    .about-section p{
        font-size:13.5px;
    }
}
@media(max-width:991px){
    .facilities-section{
        padding:80px 0;
    }
    .facilities-header h2{
        font-size:46px;
    }
    .facility-card{
        padding:40px 22px;
    }
}
@media(max-width:767px){
    .facilities-section{
        padding:70px 0;
    }
    .facilities-header h2{
        font-size:36px;
    }
    .facilities-header p{
        font-size:15px;
    }
    .facility-card{
        padding:35px 20px;
    }
    .facility-card h3{
        font-size:28px;
    }
}
@media(max-width:480px){
    .facilities-header h2{
        font-size:32px;
    }
    .facility-card i{
        width:70px;
        height:70px;
        font-size:28px;
    }
}
@media(max-width:991px){
    .rooms-section{
        padding:80px 0;
    }
    .rooms-header h2{
        font-size:46px;
    }
    .room-card{
        height:500px;
    }
    .room-overlay{
        padding:35px 30px;
    }
    .room-overlay h3{
        font-size:36px;
    }
}
@media(max-width:767px){
    .rooms-header h2{
        font-size:38px;
    }
    .rooms-header p{
        font-size:15px;
    }
    .rooms-carousel{
        margin-top:45px;
    }
    .room-card{
        height:450px;
        border-radius:20px;
    }
    .room-overlay{
        padding:30px 25px;
    }
    .room-overlay h3{
        font-size:32px;
    }
    .room-overlay span{
        font-size:10px;
        letter-spacing:3px;
    }
}
@media(max-width:480px){
    .rooms-header h2{
        font-size:32px;
    }
    .room-card{
        height:420px;
    }
    .room-overlay h3{
        font-size:28px;
    }
}
@media(max-width:991px){
    .services-section{
        padding:70px 0;
    }
    .services-header h2{
        font-size:42px;
    }
    .service-image{
        height:230px;
    }
    .service-content h3{
        font-size:28px;
    }
}
@media(max-width:767px){
    .services-section{
        padding:60px 0;
    }
    .services-header h2{
        font-size:36px;
    }
    .services-header p{
        font-size:15px;
    }
    .service-card{
        max-width:420px;
        margin:auto;
    }
    .service-image{
        height:220px;
    }
    .service-content{
        padding:30px 20px;
    }
    .service-content h3{
        font-size:26px;
    }
}
@media(max-width:991px){
    .gallery-section{
        padding:70px 0;
    }
    .gallery-header h2{
        font-size:44px;
    }
    .gallery-header p{
        font-size:15px;
        padding:0 20px;
    }
    .gallery-carousel{
        margin-top:45px;
    }
    .gallery-card{
        height:380px;
    }
}
@media(max-width:767px){
    .gallery-section{
        padding:60px 0;
    }
    .gallery-header h2{
        font-size:36px;
    }
    .gallery-card{
        height:420px;
        border-radius:18px;
    }
    .gallery-card a{
        bottom:25px;
        left:25px;
        padding:10px 22px;
    }
    .gallery-carousel .owl-item{
        padding:0 8px;
    }
    .gallery-carousel .owl-dots{
        margin-top:30px;
    }
}
@media(max-width:991px){
    .testimonials-section{
        padding:70px 0;
    }
    .testimonials-header h2{
        font-size:44px;
    }
    .testimonials-header p{
        font-size:15px;
        padding:0 20px;
    }
    .testimonials-carousel{
        margin-top:45px;
    }
    .testimonial-card{
        padding:40px 30px;
        min-height:340px;
    }
    .review-score{
        width:55px;
        height:55px;
        font-size:16px;
    }
}
@media(max-width:767px){
    .testimonials-section{
        padding:60px 0;
    }
    .testimonials-header h2{
        font-size:36px;
    }
    .testimonial-card{
        padding:35px 25px;
        min-height:330px;
        border-radius:20px;
    }
    .testimonial-card p{
        font-size:15px;
        line-height:1.8;
        margin-bottom:30px;
    }
    .review-score{
        top:20px;
        right:20px;
        width:50px;
        height:50px;
        font-size:14px;
    }
    .stars{
        margin-bottom:20px;
    }
    .guest h4{
        font-size:22px;
    }
    .guest span{
        font-size:12px;
    }
    .testimonials-carousel .owl-item{
        padding:0 8px;
    }
    .testimonials-carousel .owl-dots{
        margin-top:30px;
    }
}
@media(max-width:992px){
    .booking-cta{
        padding:100px 0;
    }
    .booking-content h2{
        font-size:52px;
    }
    .booking-content p{
        font-size:16px;
        max-width:550px;
    }
}
@media(max-width:768px){
    .booking-cta{
        padding:80px 0;
        background-position:center;
    }
    .booking-content h2{
        font-size:42px;
        line-height:1.15;
        margin:18px auto 20px;
    }
    .booking-content p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:30px;
        padding:0 10px;
    }
    .booking-buttons{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }
    .booking-buttons a{
        width:100%;
        max-width:280px;
        text-align:center;
    }
}
@media(max-width:480px){
    .booking-cta{
        padding:70px 0;
    }
    .booking-content h2{
        font-size:36px;
    }
    .booking-content p{
        font-size:14px;
    }
}
@media(max-width:992px){
    .footer{
        padding:60px 20px 15px;
    }
    .footer-logo{
        margin-bottom:20px;
    }
    .footer h3{
        font-size:28px;
        margin-bottom:25px;
    }
    .footer-map{
        height:260px;
    }
    .footer-bottom{
        margin-top:50px;
    }
}
@media(max-width:768px){
    .footer{
        text-align:center;
    }
    .footer p{
        margin-left:auto;
        margin-right:auto;
    }
    .footer-social{
        justify-content:center;
    }
    .footer h3::after{
        left:50%;
        transform:translateX(-50%);
    }
    .footer ul li a:hover{
        padding-left:0;
    }
    .footer-contact{
        align-items:center;
    }
    .footer-contact a{
        justify-content:center;
        text-align:left;
        max-width:320px;
    }
    .footer-map{
        height:240px;
    }
    .footer-bottom{
        flex-direction:column;
        text-align:center;
        gap:15px;
    }
    .designer-logo{
        margin-left:5px;
    }
}
@media(max-width:480px){
    .footer{
        padding:50px 15px 15px;
    }
    .footer-logo img{
        width:110px;
    }
    .footer h3{
        font-size:26px;
    }
    .footer p,
    .footer-contact a,
    .footer ul li a{
        font-size:13px;
    }
    .footer-map{
        height:220px;
        border-radius:15px;
    }
    .footer-bottom p{
        font-size:12px;
    }
    .designer-logo{
        width:70px;
    }
}
@media(max-width:991px){
    .page-hero{
        height:350px;
    }
    .page-hero h1{
        font-size:55px;
    }
}
@media(max-width:576px){
    .page-hero{
        height:300px;
    }
    .page-hero-content{
        padding-top:50px;
    }
    .page-hero h1{
        font-size:42px;
    }
    .breadcrumb-nav{
        font-size:13px;
    }
}
@media(max-width:991px){
.room-detail-card,
.room-detail-card.reverse{
    flex-direction:column;
    gap:40px;
    padding:25px;
}
.room-detail-image,
.room-detail-content{
    width:100%;
}
.room-detail-image{
    height:430px;
}
.room-detail-content h2{
    font-size:42px;
}
.room-meta,
.room-facilities{
    grid-template-columns:1fr;
}
}
@media(max-width:576px){
.rooms-page-section{
    padding:70px 0;
}
.room-detail-card{
    padding:18px;
    border-radius:22px;
}
.room-detail-image{
    height:300px;
}
.room-detail-content h2{
    font-size:34px;
}
.room-detail-content p{
    font-size:15px;
}
.room-meta div,
.room-facilities div{
    padding:12px 15px;
}
.room-detail-content .book-btn{
    width:100%;
}
}




