*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#f8f8f8;
    color:#333;
    line-height:1.7;
    padding-top:80px;
}

html{
    scroll-behavior:smooth;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);
    z-index:999;
}

.navbar{
    width:90%;
    max-width:1200px;
    margin:auto;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo{
    color:#fff;
    font-size:30px;
    font-weight:bold;
    letter-spacing:2px;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:35px;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

nav ul li a:hover{
    color:#d4af37;
}

.hero{
    height:calc(100vh - 80px);

    background:
    linear-gradient(rgba(0,0,0,.40),rgba(0,0,0,.40)),
    url("ChatGPT Image Jul 15, 2026, 02_21_45 PM.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}

.hero h1{
    font-size:64px;
    margin-bottom:20px;
}

.hero p{
    max-width:750px;
    font-size:20px;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    background:#d4af37;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    transition:.3s;
}

.btn:hover{
    background:#b89428;
}

.about{

padding:100px 0;
background:#fff;

}

.about-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

.about-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
    transition:.4s ease;
}

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

.subtitle{

color:#d4af37;
font-weight:700;
letter-spacing:2px;

}

.about-content h2{

font-size:42px;
margin:15px 0 25px;

}

.about-content p{

margin-bottom:20px;
font-size:18px;
color:#555;

}


#amenities{

padding:100px 0;
background:#f7f7f7;

}

.section-title{

text-align:center;
font-size:42px;
margin-bottom:60px;

}

.amenity-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;

}

.card{

background:#fff;
padding:35px;
border-radius:15px;
transition:.4s;
box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.card:hover{

transform:translateY(-10px);

}

.card h3{

margin-bottom:15px;

}


.why-choose{
padding:100px 0;
background:#ffffff;
}

.section-heading{
text-align:center;
max-width:700px;
margin:0 auto 60px;
}

.section-heading span{
color:#c9a227;
font-weight:700;
letter-spacing:2px;
font-size:14px;
}

.section-heading h2{
font-size:42px;
margin:15px 0;
color:#222;
}

.section-heading p{
color:#666;
font-size:17px;
}

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

.why-card{
background:#fff;
padding:35px;
border-radius:15px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;
}

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

.icon{
font-size:42px;
margin-bottom:20px;
}

.why-card h3{
margin-bottom:15px;
}


.footer{
background:#111;
color:#fff;
padding:70px 0 0;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:50px;
}

.footer h2,
.footer h3{
margin-bottom:20px;
}

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

.footer ul li{
margin-bottom:12px;
}

.footer a{
color:#ddd;
text-decoration:none;
transition:.3s;
}

.footer a:hover{
color:#d4af37;
}

.copyright{
margin-top:50px;
padding:25px;
text-align:center;
background:#0a0a0a;
border-top:1px solid rgba(255,255,255,.1);
}

@media(max-width:768px){

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

}

section{
    width:100%;
}

img{
    display:block;
    max-width:100%;
}

.footer *{
    color:#fff;
}

.footer p{
    color:#cfcfcf;
}


.gallery{
padding:100px 0;
background:#f8f8f8;
}

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

.gallery-item{
overflow:hidden;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.gallery-item img{
width:100%;
height:280px;
object-fit:cover;
transition:.5s;
display:block;
}

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

@media(max-width:768px){

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

}


.testimonials{
padding:100px 0;
background:#ffffff;
}

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

.testimonial-card{

background:#fff;
padding:35px;
border-radius:15px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;

}

.testimonial-card:hover{

transform:translateY(-8px);

}

.stars{

font-size:22px;
color:#D4AF37;
margin-bottom:20px;

}

.testimonial-card p{

font-style:italic;
margin-bottom:20px;

}

.testimonial-card h4{

color:#444;

}

.whatsapp{

    position:fixed;
    right:25px;
    bottom:25px;

    width:68px;
    height:68px;

    background:#25D366;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    color:#fff;

    z-index:9999;

    box-shadow:0 12px 35px rgba(37,211,102,.45);

    animation:whatsappPulse 2s infinite;

    transition:.35s ease;

    opacity:0;
animation:whatsappEntry .8s ease forwards, whatsappPulse 2s 1s infinite;

}

.whatsapp i{

    font-size:38px;
    transition:.35s ease;

}

.whatsapp:hover{

    transform:translateX(0) scale(1.12);

    box-shadow:0 18px 45px rgba(37,211,102,.65);

}

.whatsapp:hover i{

    transform:rotate(15deg);

}

@keyframes whatsappPulse{

0%{

    transform:scale(1);

    box-shadow:0 0 0 0 rgba(37,211,102,.65);

}

70%{

    transform:scale(1.08);

    box-shadow:0 0 0 18px rgba(37,211,102,0);

}

100%{

    transform:scale(1);

    box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}

@keyframes whatsappEntry{

0%{
    opacity:0;
    transform:translateX(80px) scale(.8);
}

100%{
    opacity:1;
    transform:translateX(0) scale(1);
}

}

/* ==========================
   WHATSAPP TOOLTIP
========================== */

.whatsapp{

    overflow:visible;

}

.wa-tooltip{

    position:absolute;

    right:80px;

    white-space:nowrap;

    background:rgba(17,17,17,.92);

    color:#fff;

    padding:10px 16px;

    border-radius:30px;

    font-size:14px;

    font-weight:500;

    letter-spacing:.3px;

    opacity:0;

    visibility:hidden;

    transform:translateX(10px);

    transition:.35s ease;

    pointer-events:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.whatsapp:hover .wa-tooltip{

    opacity:1;

    visibility:visible;

    transform:translateX(0);

}

/* ==========================
   WHATSAPP RIPPLE EFFECT
========================== */

.whatsapp::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:50%;

    background:rgba(37,211,102,.35);

    z-index:-1;

    animation:waRipple 2s infinite;

}

@keyframes waRipple{

0%{

    transform:scale(1);

    opacity:.8;

}

70%{

    transform:scale(1.8);

    opacity:0;

}

100%{

    transform:scale(1.8);

    opacity:0;

}

}

/* ==========================
   WHATSAPP BOUNCE
========================== */

.wa-bounce{

    animation:
    whatsappEntry .8s ease forwards,
    whatsappPulse 2s 1s infinite,
    waBounce .7s ease;

}

@keyframes waBounce{

0%{

    transform:translateY(0);

}

25%{

    transform:translateY(-12px);

}

50%{

    transform:translateY(0);

}

75%{

    transform:translateY(-6px);

}

100%{

    transform:translateY(0);

}

}

@media(max-width:768px){

.whatsapp{

    width:60px;
    height:60px;

    right:18px;
    bottom:18px;

}

.whatsapp i{

    font-size:34px;

}

.wa-tooltip{

    display:none;

}


}

.page-banner{

margin-top:80px;
padding:100px 0;
background:#111;
color:#fff;
text-align:center;

}

.page-banner h1{

font-size:52px;
margin-bottom:15px;

}

.about-page{

padding:100px 0;
background:#fff;

}

.about-page h2{

font-size:34px;
margin:40px 0 20px;
color:#222;

}

.about-page p{

font-size:18px;
color:#555;
margin-bottom:20px;

}

.gallery-page{

padding:100px 0;

}

.gallery-page img{

width:100%;
height:300px;
object-fit:cover;
border-radius:15px;
transition:.4s;
cursor:pointer;

}

.gallery-page img:hover{

transform:scale(1.05);

}


.contact-page{

padding:100px 0;

}

.contact-page h2{

font-size:36px;
margin-bottom:25px;

}

.contact-page p{

font-size:18px;
margin-bottom:18px;
line-height:1.8;

}

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

.gallery-item{
position:relative;
overflow:hidden;
border-radius:18px;
cursor:pointer;
}

.gallery-item img{
width:100%;
height:320px;
object-fit:cover;
display:block;
transition:.5s ease;
}

.gallery-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(to top,rgba(0,0,0,.75),rgba(0,0,0,.15));
display:flex;
justify-content:flex-end;
align-items:center;
flex-direction:column;
padding-bottom:25px;
opacity:0;
transition:.4s;
}

.gallery-overlay h3{
color:#fff;
font-size:24px;
letter-spacing:1px;
transform:translateY(20px);
transition:.4s;
}

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

.gallery-item:hover .gallery-overlay{
opacity:1;
}

.gallery-item:hover .gallery-overlay h3{
transform:translateY(0);
}


.gallery-item a{
    display:block;
    text-decoration:none;
}

/* ===== PRELOADER ===== */

#preloader{
    position:fixed;
    inset:0;
    background:#0b0b0b;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:opacity .8s ease, visibility .8s ease;
}

#preloader.hide{
    opacity:0;
    visibility:hidden;
}

.loader-content{
    text-align:center;
}

.loader-content h1{
    color:#d4af37;
    font-size:52px;
    letter-spacing:10px;
    margin-bottom:15px;
    animation:fadeUp 1s ease;
}

.loader-content p{
    color:#ffffff;
    letter-spacing:5px;
    text-transform:uppercase;
    animation:fadeUp 1.3s ease;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(30px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* ===== SCROLL PROGRESS BAR ===== */

#progress-bar{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:4px;
    background:linear-gradient(90deg,#d4af37,#f5d76e);
    z-index:999999;
    transition:width .15s linear;
}


/* ===== BACK TO TOP ===== */

#backToTop{
    position:fixed;
    bottom:30px;
    left:30px;
    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:#d4af37;
    color:#111;

    font-size:24px;
    font-weight:bold;

    cursor:pointer;

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    z-index:9999;

    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

#backToTop:hover{

    transform:translateY(-6px);

    background:#f1c84b;

}

#backToTop.show{

    opacity:1;
    visibility:visible;

}


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

@media (max-width:768px){

.container{
    width:92%;
}

/* Header */

.navbar{
    height:70px;
}

.logo{
    font-size:24px;
}

/* Hero */

.hero{
    height:85vh;
}

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

.hero p{
    font-size:16px;
    padding:0 10px;
}

.btn{
    padding:14px 28px;
}

/* About */

.about{
    padding:70px 0;
}

.about-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.about-content{
    text-align:center;
}

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

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

/* Amenities */

#amenities{
    padding:70px 0;
}

.section-title{
    font-size:34px;
}

/* Why Choose */

.why-choose{
    padding:70px 0;
}

.section-heading h2{
    font-size:34px;
}

/* Gallery */

.gallery,
.gallery-page{
    padding:70px 0;
}

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

/* Testimonials */

.testimonials{
    padding:70px 0;
}

/* Footer */

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

/* Buttons */

.whatsapp{
    width:58px;
    height:58px;
    font-size:28px;
}

#backToTop{
    width:50px;
    height:50px;
    left:18px;
    bottom:20px;
}

}

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

.menu-toggle{
    display:none;
    font-size:34px;
    color:#fff;
    cursor:pointer;
    transition:.3s ease;
    user-select:none;
}

.menu-toggle:hover{
    color:#d4af37;
    transform:rotate(90deg);
}


@media(max-width:768px){

.menu-toggle{
    display:block;
}

nav{

    position:fixed;
    top:70px;
    right:-100%;
    width:260px;
    height:calc(100vh - 70px);

    background:#111;

    transition:.4s ease;

    padding:40px 25px;

}

nav.active{

    right:0;

}

nav ul{

    flex-direction:column;

}

nav ul li{

    margin:20px 0;

}

nav ul li a{

    font-size:18px;

}

}

/* Remove Mobile Tap Highlight */

*{
    -webkit-tap-highlight-color: transparent;
}


.logo img{
    height:80px;
    width:auto;
    display:block;
    transition:.3s ease;
}

.logo img:hover{
    transform:scale(1.05);
}


@media(max-width:768px){

.logo img{
    height:60px;
}

}

.footer-logo img{
    height:80px;
    width:auto;
    margin-bottom:20px;
}

@media(max-width:768px){

.footer-logo img{
    margin:0 auto 20px;
}

}
