*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
scroll-behavior:smooth;
}

body{
background:#fff;
color:#222;
overflow-x:hidden;
}

/* NAVBAR */

.nav{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 25px;
background:#0a2140;
color:#fff;
z-index:999;
}

.logo{
font-size:26px;
font-weight:700;
}

.nav-menu{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.nav-menu a{
color:#fff;
text-decoration:none;
background:rgba(255,255,255,.12);
padding:12px 16px;
border-radius:10px;
transition:.3s;
font-size:15px;
}

.nav-menu a:hover{
background:#d4af37;
}

/* =========================
HERO SLIDER CLEAN VERSION
========================= */

.hero{
position:relative;
height:100vh;
overflow:hidden;
display:flex;
justify-content:center;
align-items:center;
}

.hero-slider{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:opacity 1.2s ease-in-out;
}

.slide.active{
opacity:1;
z-index:1;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(.78);
}

/* OVERLAY */

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.18);
z-index:2;
}

/* HERO CONTENT */

.hero-content{
position:relative;
z-index:3;
text-align:center;
color:#fff;
padding:20px;
}

.hero-content h1{
font-size:72px;
font-weight:700;
margin-bottom:20px;
}

.hero-content p{
font-size:24px;
margin-bottom:35px;
}

/* BUTTON */

.btn{
display:inline-block;
padding:15px 34px;
background:#d4af37;
color:#fff;
text-decoration:none;
border-radius:10px;
font-weight:600;
transition:.3s;
}

.btn:hover{
background:#b8942e;
transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

.hero{
height:75vh;
}

.hero-content h1{
font-size:42px;
line-height:1.2;
}

.hero-content p{
font-size:18px;
}

}

@media(max-width:480px){

.hero-content h1{
font-size:32px;
}

.hero-content p{
font-size:16px;
}

.btn{
padding:12px 24px;
font-size:14px;
}

}

/* SECTIONS */

.section{
padding:90px 8%;
}

h2{
text-align:center;
margin-bottom:40px;
color:#0a2140;
font-size:42px;
}

/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

/* CARDS */

.card{
background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
padding-bottom:20px;
transition:.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card img,
.gallery img{
width:100%;
height:240px;
object-fit:cover;
}

/* ABOUT */

/* MODERN ABOUT SECTION */

.about-modern{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
padding:100px 8%;
}

.about-images{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
}

.about-images img{
width:100%;
height:260px;
object-fit:cover;
border-radius:12px;
transition:.4s;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.about-images img:hover{
transform:scale(1.03);
}

.about-content h2{
font-size:72px;
font-family:serif;
font-style:normal;
font-weight:500;
line-height:1.1;
margin-bottom:30px;
text-align:left;
color:#111;
}


.about-tag{
color:#000;
font-weight:700;
font-size:31.5px;
font-family:Arial,sans-serif;
letter-spacing:3px;
text-transform:capitalize;
display:block;
margin-bottom:20px;
}

.about-content h2{
padding-top:20px;
font-size:64px;
font-family:serif;
font-style:normal;
font-weight:500;
line-height:1.2;
margin-bottom:25px;
text-align:left;
color:#111;
}

.about-content p{
font-size:18px;
line-height:2;
color:#666;
margin-bottom:20px;
}

.about-btn{
display:inline-block;
padding:14px 30px;
background:#d4af37;
color:#fff;
text-decoration:none;
border-radius:6px;
font-weight:600;
margin-top:10px;
}

.about-btn:hover{
background:#ccddb07;
}

@media(max-width:900px){

.about-modern{
grid-template-columns:1fr;
}

.about-content h2{
font-size:42px;
}

.about-images img{
height:200px;
}

}
/* SERVICES SECTION */

.services-section{
padding:100px 8%;
background:#fff;
}

.services-heading{
text-align:center;
margin-bottom:60px;
}

.services-heading span{
color:#c57d2a;
letter-spacing:3px;
font-size:14px;
font-weight:700;
display:block;
margin-bottom:18px;
}

.services-heading h2{
font-size:68px;
font-family:Arial,sans-serif;
font-style:normal;
font-weight:500;
color:#111;
margin-bottom:20px;
}

.services-heading .line{
width:100px;
height:3px;
background:#d4af37;
margin:auto;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1100px;
margin:auto;
}

.service-card{
background:#f7f7f7;
padding:45px 25px;
border-radius:14px;
text-align:center;
transition:.4s;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.service-icon{
width:90px;
height:90px;
background:#d4af37;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
margin:0 auto 25px;
}

.service-icon i{
font-size:34px;
color:#fff;
}

.service-card h3{
font-size:24px;
color:#111;
font-weight:600;
line-height:1.5;
}

@media(max-width:900px){

.services-grid{
grid-template-columns:1fr;
}

.services-heading h2{
font-size:42px;
}

}

/* REVIEWS */

.review-wrap{
max-width:900px;
margin:auto;
background:#f5f5f5;
padding:50px;
border-radius:18px;
position:relative;
overflow:hidden;
min-height:220px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.review-slide{
position:absolute;
top:0;
left:0;
width:100%;
padding:50px;
opacity:0;
transform:translateX(100%);
transition:1s;
text-align:center;
font-size:24px;
line-height:1.8;
}

.review-slide.active{
opacity:1;
transform:translateX(0);
}

/* FORM */

form{
max-width:600px;
margin:auto;
display:grid;
gap:15px;
}

input,
select,
textarea,
button{
padding:14px;
border:1px solid #ccc;
border-radius:10px;
font-size:16px;
width:100%;
}

textarea{
min-height:120px;
resize:vertical;
}

button{
background:#25D366;
color:#fff;
border:none;
font-weight:600;
cursor:pointer;
transition:.3s;
}

button:hover{
background:#1fb85a;
}

/* MAP */

.map{
width:100%;
height:700px;
border:0;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* GALLERY */

.gallery{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
margin-top:25px;
}

.gallery-item{
height:180px;
overflow:hidden;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
background:#eee;
}

.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
display:block;
cursor:pointer;
transition:.4s;
}

.gallery-item img:hover{
transform:scale(1.06);
}

@media(max-width:900px){

.gallery{
grid-template-columns:1fr 1fr;
}

.gallery-item{
height:150px;
}

}

/* LIGHTBOX */

#lightbox{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,.9);
justify-content:center;
align-items:center;
z-index:9999;
}

#lightbox img{
max-width:90%;
max-height:90%;
border-radius:16px;
}

/* FLOATING WHATSAPP */

.float-wa{
position:fixed;
right:20px;
bottom:20px;
width:65px;
height:65px;
border-radius:50%;
background:#25D366;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
color:#fff;
text-decoration:none;
z-index:999;
box-shadow:0 10px 25px rgba(0,0,0,.2);
}

/* PREMIUM FOOTER */

/* PREMIUM FOOTER FIXED */

.premium-footer{
background:#fff;
display:grid;
grid-template-columns:380px 1fr;
gap:60px;
padding:60px 8% 30px;
align-items:flex-start;
}

.footer-left{
background:#000;
padding:25px;
border-radius:18px;
display:flex;
justify-content:center;
align-items:center;
height:320px;
}

.footer-left img{
max-width:100%;
max-height:100%;
object-fit:contain;
}

.footer-right{
padding-top:10px;
}

.footer-right h2{
font-size:46px;
margin-bottom:30px;
color:#d4af37;
line-height:1.2;
}

/* FINAL PREMIUM FOOTER */

/* LUXURY FOOTER */

.luxury-footer{
background:#151515;
color:#fff;
padding-top:70px;
margin-top:70px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:50px;
padding:0 8% 50px;
}

.footer-logo{
width:180px;
margin-bottom:25px;
}

.footer-text{
line-height:2;
color:#bbb;
font-size:16px;
}

.luxury-footer h3{
font-size:32px;
margin-bottom:25px;
color:#fff;
}

.luxury-footer ul{
list-style:none;
padding:0;
}

.luxury-footer ul li{
margin-bottom:18px;
color:#bbb;
font-size:17px;
line-height:1.8;
}

.luxury-footer ul li a{
color:#bbb;
text-decoration:none;
}

.luxury-footer ul li a:hover{
color:#d4af37;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.08);
padding:22px;
text-align:center;
color:#bbb;
font-size:15px;
}

@media(max-width:900px){

.footer-grid{
grid-template-columns:1fr;
}

.about-modern{
padding:70px 6%;
}

}

.gallery{
grid-template-columns:1fr 1fr;
}
/* SOCIAL ICONS */

/* SOCIAL ICONS */

.social-icons{
display:flex;
justify-content:center;
gap:18px;
padding-bottom:30px;
margin-top:20px;
}

.social-icons a{
width:52px;
height:52px;
display:flex;
justify-content:center;
align-items:center;
background:#222;
color:#fff;
text-decoration:none;
font-size:20px;
border-radius:10px;
transition:.3s;
border:1px solid rgba(255,255,255,.08);
}

.social-icons a:hover{
background:#d4af37;
transform:translateY(-4px);
}
/* GALLERY PAGE */

.gallery-page{
padding:140px 8% 80px;
}

.gallery-page h1{
text-align:center;
font-size:56px;
margin-bottom:50px;
color:#111;
}

.gallery-full{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:22px;
}

.gallery-full img{
width:100%;
height:280px;
object-fit:cover;
border-radius:14px;
cursor:pointer;
transition:.4s;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gallery-full img:hover{
transform:scale(1.03);
}

@media(max-width:900px){

.gallery-full{
grid-template-columns:1fr 1fr;
}

.gallery-full img{
height:180px;
}

}
html{
scroll-behavior:smooth;
}
/* ROOMS PAGE */

.rooms-page{
padding:140px 8% 80px;
}

.rooms-page h1{
text-align:center;
font-size:64px;
margin-bottom:80px;
color:#111;
}

.room-detail{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
margin-bottom:100px;
}

.room-detail.reverse{
direction:rtl;
}

.room-detail.reverse .room-info{
direction:ltr;
}

.room-image img{
width:100%;
height:500px;
object-fit:cover;
border-radius:18px;
box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.room-info h2{
font-size:52px;
margin-bottom:25px;
text-align:left;
}

.room-info p{
font-size:18px;
line-height:2;
color:#666;
margin-bottom:30px;
}

.room-features{
display:flex;
flex-wrap:wrap;
gap:18px;
margin-bottom:35px;
}

.room-features span{
background:#f5f5f5;
padding:12px 18px;
border-radius:30px;
font-size:16px;
}

.room-features i{
color:#d4af37;
margin-right:8px;
}

.room-btn{
display:inline-block;
padding:15px 32px;
background:#d4af37;
color:#fff;
text-decoration:none;
border-radius:8px;
font-weight:600;
}

.room-btn:hover{
background:#b8942e;
}

@media(max-width:900px){

.room-detail{
grid-template-columns:1fr;
gap:35px;
}

.room-image img{
height:320px;
}

.rooms-page h1{
font-size:42px;
}

.room-info h2{
font-size:36px;
}

}
.room-link{
text-decoration:none;
color:inherit;
display:block;
}
/* SINGLE ROOM PAGE */

.room-gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-bottom:50px;
}

.room-gallery img{
width:100%;
height:320px;
object-fit:cover;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;
}

.room-gallery img:hover{
transform:scale(1.03);
}

.room-single-info{
max-width:900px;
margin:auto;
text-align:center;
}

.room-single-info h2{
font-size:52px;
margin-bottom:25px;
}

.room-single-info p{
font-size:18px;
line-height:2;
color:#666;
margin-bottom:35px;
}

@media(max-width:900px){

.room-gallery{
grid-template-columns:1fr;
}

.room-gallery img{
height:240px;
}

.room-single-info h2{
font-size:36px;
}

}
/* ROOMS MAIN PAGE */

.rooms-main-page{
padding:140px 8% 80px;
}

.rooms-main-page h1{
text-align:center;
font-size:64px;
margin-bottom:70px;
color:#111;
}

.rooms-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
}

.room-page-card{
background:#fff;
border-radius:18px;
overflow:hidden;
text-decoration:none;
color:#111;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.room-page-card:hover{
transform:translateY(-8px);
}

.room-page-card img{
width:100%;
height:280px;
object-fit:cover;
}

.room-page-content{
padding:28px;
}

.room-page-content h2{
font-size:34px;
margin-bottom:18px;
color:#0a2140;
}

.room-page-content p{
font-size:16px;
line-height:1.8;
color:#666;
margin-bottom:25px;
}

.explore-btn{
display:inline-block;
padding:12px 24px;
background:#d4af37;
color:#fff;
border-radius:8px;
font-weight:600;
}

@media(max-width:768px){

.rooms-main-page h1{
font-size:42px;
}

}
/* FLOATING WHATSAPP */

.floating-whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25D366;
color:#fff;
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,.2);
z-index:9999;
transition:.3s;
}

.floating-whatsapp:hover{
transform:scale(1.1);
background:#1ebe5d;
}
/* =========================
/* =====================================
MOBILE RESPONSIVE
===================================== */

@media(max-width:992px){

.section{
padding:70px 5%;
}

.hero{
height:85vh;
width:100%;
margin-top:80px;
border-radius:0;
}

.hero-content h1{
font-size:48px;
line-height:1.2;
}

.hero-content p{
font-size:20px;
}

.room-box,
.about-container,
.footer-container,
.room-detail{
flex-direction:column !important;
}

.room-box img,
.room-detail img{
width:100% !important;
}

.about-images{
grid-template-columns:1fr 1fr;
}

.map{
height:450px;
}

}


/* =====================================
TABLET
===================================== */

@media(max-width:768px){

body{
overflow-x:hidden;
}

.nav{
padding:14px 18px;
flex-wrap:wrap;
}

.nav-menu{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:10px;
margin-top:10px;
width:100%;
}

.nav-menu a{
font-size:14px;
padding:8px 14px;
}

.hero{
height:75vh;
margin-top:70px;
}

.hero-content{
padding:20px;
}

.hero-content h1{
font-size:38px;
line-height:1.3;
}

.hero-content p{
font-size:17px;
}

.btn{
padding:12px 22px;
font-size:14px;
}

.section{
padding:60px 20px;
}

h2{
font-size:34px;
}

.grid{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:1fr 1fr;
gap:15px;
}

.gallery-grid img{
height:180px;
}

.about-container{
display:flex;
flex-direction:column;
gap:30px;
}

.about-images{
grid-template-columns:1fr 1fr;
}

.about-text h2{
font-size:42px;
}

.services-grid{
grid-template-columns:1fr 1fr;
gap:18px;
}

.review-wrap{
padding:25px;
}

.review-slide{
font-size:18px;
}

form{
width:100%;
}

input,
select,
textarea{
font-size:15px;
}

.footer{
padding:60px 25px;
}

.footer-container{
display:flex;
flex-direction:column;
gap:35px;
}

.footer-col{
width:100%;
}

.chatbot-box{
width:92%;
right:4%;
bottom:110px;
}

.chatbot-toggle{
width:58px;
height:58px;
font-size:24px;
bottom:85px;
right:18px;
}

.whatsapp-float{
width:58px;
height:58px;
bottom:18px;
right:18px;
}

}


/* =====================================
MOBILE
===================================== */

@media(max-width:480px){

.hero{
height:68vh;
}

.hero-content h1{
font-size:30px;
}

.hero-content p{
font-size:15px;
}

h2{
font-size:30px;
}

.about-text h2{
font-size:34px;
}

.gallery-grid{
grid-template-columns:1fr;
}

.about-images{
grid-template-columns:1fr;
}

.services-grid{
grid-template-columns:1fr;
}

.review-wrap{
padding:20px;
min-height:auto;
}

.review-slide{
font-size:16px;
line-height:1.7;
}

.map{
height:300px;
}

.footer{
padding:45px 20px;
}

.footer h3{
font-size:22px;
}

.footer p,
.footer a{
font-size:14px;
line-height:1.8;
}

.nav-logo{
font-size:24px;
}

.nav-menu a{
font-size:13px;
padding:7px 12px;
}

.btn{
font-size:13px;
padding:11px 20px;
}

.room-features{
flex-wrap:wrap;
gap:10px;
}

.room-features span{
font-size:13px;
}

}
/* =========================
CHATBOT
========================= */

.chatbot-toggle{
position:fixed;
bottom:100px;
right:25px;
width:65px;
height:65px;
background:#d4af37;
color:#fff;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
cursor:pointer;
z-index:9999;
box-shadow:0 10px 25px rgba(0,0,0,.2);
transition:.3s;
}

.chatbot-toggle:hover{
transform:scale(1.08);
}

.chatbot-box{
position:fixed;
bottom:180px;
right:25px;
width:360px;
max-height:520px;
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.18);
display:none;
flex-direction:column;
z-index:9999;
}

.chatbot-header{
background:#0a2140;
color:#fff;
padding:18px 20px;
display:flex;
justify-content:space-between;
align-items:center;
font-weight:600;
}

.chatbot-header button{
background:none;
border:none;
color:#fff;
font-size:20px;
cursor:pointer;
}

.chatbot-body{
padding:20px;
height:340px;
overflow-y:auto;
background:#f8f8f8;
}

.bot-message,
.user-message{
padding:14px 16px;
margin-bottom:15px;
border-radius:14px;
max-width:85%;
line-height:1.6;
font-size:15px;
}

.bot-message{
background:#ececec;
color:#111;
}

.user-message{
background:#d4af37;
color:#fff;
margin-left:auto;
}

.chatbot-footer{
display:flex;
border-top:1px solid #eee;
}

.chatbot-footer input{
flex:1;
border:none;
padding:16px;
font-size:15px;
outline:none;
}

.chatbot-footer button{
width:70px;
border:none;
background:#d4af37;
color:#fff;
font-size:18px;
cursor:pointer;
}

/* MOBILE */

@media(max-width:768px){

.chatbot-box{
width:92%;
right:4%;
bottom:120px;
}

.chatbot-toggle{
bottom:90px;
right:18px;
width:58px;
height:58px;
font-size:24px;
}

}