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

body{
font-family:'Segoe UI',sans-serif;
background:linear-gradient(135deg,#000,#0d0d0d);
color:#fff;
overflow-x:hidden;
}

/* HEADER */
.header{
text-align:center;
padding:20px 0;
}

.logo{
width:110px;
}

/* HERO */
.hero{
text-align:center;
padding:40px 15px;
}

.hero h1{
font-size:28px;
letter-spacing:2px;
}

.hero p{
color:#d4af37;
margin-top:10px;
}

/* ABOUT */
.about-section{
padding:20px;
text-align:center;
}

.about-section h2{
margin-bottom:10px;
}

/* SERVICES */
.services{
padding:30px 15px;
}

.services h2{
text-align:center;
margin-bottom:25px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.service-card{
background:rgba(255,255,255,0.05);
border-radius:18px;
overflow:hidden;
text-align:center;
color:#d4af37;
transition:0.4s ease;
}

.service-card img{
width:100%;
height:150px;
object-fit:cover;
}

.service-card span{
display:block;
padding:14px;
}

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 0 25px rgba(212,175,55,0.5);
}

/* ===== PREMIUM GALLERY HOME ===== */

.luxury-gallery{
padding:60px 20px;
text-align:center;
}

.luxury-gallery h2{
color:#d4af37;
margin-bottom:25px;
}

.luxury-box{
position:relative;
display:block;
max-width:520px;
margin:auto;
border-radius:22px;
overflow:hidden;
box-shadow:0 0 50px rgba(212,175,55,0.25);
transition:0.5s;
}

.luxury-box img{
width:100%;
height:260px;
object-fit:cover;
transition:0.6s;
}

.luxury-box:hover{
transform:translateY(-6px);
box-shadow:0 0 70px rgba(212,175,55,0.6);
}

.luxury-overlay{
position:absolute;
inset:0;
background:linear-gradient(to top,rgba(0,0,0,0.85),transparent);
display:flex;
flex-direction:column;
justify-content:flex-end;
align-items:center;
padding-bottom:30px;
opacity:0;
transition:0.4s;
}

.luxury-overlay i{
font-size:28px;
color:#d4af37;
margin-bottom:8px;
}

.luxury-overlay span{
background:#d4af37;
color:#000;
padding:10px 28px;
border-radius:30px;
font-weight:bold;
}

.luxury-box:hover .luxury-overlay{
opacity:1;
}

/* REVIEW BUTTON */
.review-wrapper{
text-align:center;
margin:50px 0;
}

.review-btn{
background:linear-gradient(45deg,#d4af37,#f1c40f);
padding:14px 35px;
border-radius:30px;
color:#000;
font-weight:bold;
text-decoration:none;
box-shadow:0 0 25px rgba(212,175,55,0.6);
transition:0.3s;
display:inline-block;
}

.review-btn:hover{
transform:scale(1.08);
box-shadow:0 0 40px rgba(212,175,55,1);
}

/* ===== GALLERY PAGE GRID FIX ===== */

.gallery-section{
padding:30px 15px;
}

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

.gallery-grid img{
width:100%;
height:150px;
object-fit:cover;
border-radius:16px;
cursor:pointer;
transition:0.3s ease;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

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

.lightbox img{
max-width:90%;
max-height:85%;
border-radius:18px;
object-fit:contain;
}

/* FLOAT BUTTONS */
.floating-buttons{
position:fixed;
right:15px;
bottom:20px;
display:flex;
flex-direction:column;
gap:15px;
z-index:999;
}

.float-btn{
width:55px;
height:55px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:22px;
color:#fff;
transition:0.3s;
}

.float-btn:hover{
transform:scale(1.1);
}

.call{background:rgba(80,80,80,0.7);}
.whatsapp{background:#25D366;}
.maps{background:#d4af37;color:#000;}
.book{background:#111;border:1px solid #d4af37;}

/* FOOTER */
footer{
text-align:center;
padding:20px;
font-size:12px;
color:#888;
}

/* DESKTOP */
@media(min-width:768px){
.service-grid{
grid-template-columns:repeat(3,1fr);
}
.gallery-grid{
grid-template-columns:repeat(3,1fr);
}
}
.section-title{
text-align:center;
color:#d4af37;
margin-top:35px;
margin-bottom:15px;
font-size:20px;
font-weight:600;
}

.gallery-grid video{
width:100%;
height:150px;
object-fit:cover;
border-radius:16px;
background:#000;
cursor:pointer;
transition:0.3s ease;
}

.gallery-grid video:hover{
transform:scale(1.05);
box-shadow:0 0 20px rgba(212,175,55,0.5);
}

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

#lightbox-video{
max-width:90%;
max-height:85%;
border-radius:15px;
}
