/* =========================
   ROOT VARIABLES
========================= */
:root{
  --bg:#0b0f14;
  --panel:#11161c;
  --panel-soft:#151b22;

  --text:#ffffff;
  --muted:#b6bcc6;

  --gold:#d8b26a;
  --green:#25D366;

  --border:rgba(255,255,255,.12);
}

/* LIGHT THEME */
body.light{
  --bg:#ffffff;
  --panel:#f8fafc;
  --panel-soft:#f1f5f9;

  --text:#0f172a;
  --muted:#475569;

  --border:rgba(15,23,42,.15);
}

/* =========================
   RESET
========================= */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
img{display:block;max-width:100%;}
a{text-decoration:none;color:inherit;}
.container{width:min(1100px,92%);margin:0 auto;}

/* =========================
   FLOATING WHATSAPP
========================= */
.wa-float{
  position:fixed;right:18px;bottom:18px;
  width:56px;height:56px;border-radius:16px;
  background:#25D366;display:flex;align-items:center;
  justify-content:center;z-index:3000;
}
.wa-float img{width:30px;}

/* =========================
   HEADER
========================= */
.header{
  position:fixed;top:0;width:100%;z-index:2000;
  background:rgba(11,15,20,.92);backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
body.light .header{background:#fff;}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 18px;
}

.brand{display:flex;align-items:center;gap:12px;}
.brand-logo{height:52px;}
.brand-title{font-weight:900;letter-spacing:1px;}
.brand-subtitle{font-size:13px;color:var(--muted);}

/* NAV */
.nav{display:flex;gap:18px;}
.nav a{
  font-weight:600;font-size:14px;padding:8px 10px;border-radius:10px;
}
.nav a:hover{background:rgba(255,255,255,.08);}
body.light .nav a:hover{background:#e5e7eb;}

/* HEADER ACTIONS */
.header-actions{display:flex;align-items:center;gap:14px;}

.header-social{display:flex;gap:10px;}
.header-social img{width:22px;}

/* LANGUAGE SWITCH */
.lang-switch{
  display:flex;gap:6px;border:1px solid var(--border);
  border-radius:999px;padding:4px;
}
.lang-btn{
  background:none;border:none;padding:6px 10px;
  font-weight:700;cursor:pointer;border-radius:999px;
  color:var(--muted);
}
.lang-btn.active{
  background:rgba(255,255,255,.18);color:#fff;
}
body.light .lang-btn.active{
  background:#e5e7eb;color:#000;
}

/* MENU BUTTON */
.menu-btn{display:none;background:none;border:none;}
.menu-btn span{
  display:block;width:22px;height:2px;
  background:var(--text);margin:5px 0;
}

/* =========================
   MOBILE DRAWER
========================= */
.mobile-drawer{
  position:fixed;inset:0;background:rgba(0,0,0,.6);
  display:none;z-index:2500;
}
.mobile-drawer.active{display:block;}

.mobile-drawer-inner{
  position:absolute;right:0;width:260px;height:100%;
  background:var(--panel);padding:24px;
}
.mobile-link{
  display:block;padding:14px 0;font-weight:700;
  border-bottom:1px solid var(--border);
}

.mobile-social{display:flex;gap:14px;margin-top:20px;}
.mobile-social img{width:26px;}

/* =========================
   HERO
========================= */
.hero{
  height:100vh;background-size:cover;background-position:center;
  position:relative;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,.7),rgba(0,0,0,.9));
  display:flex;align-items:center;
}
.hero-content{width:min(1100px,92%);margin:0 auto;padding-top:90px;}

.hero-title{
  font-size:52px;font-weight:900;max-width:700px;
  text-shadow:0 3px 12px rgba(0,0,0,.6);
}
.hero-desc{
  margin-top:14px;max-width:650px;font-size:18px;
  color:rgba(255,255,255,.96);text-shadow:0px 1px 8px #000;
}

.hero-buttons{margin-top:26px;display:flex;gap:14px;flex-wrap:wrap;}
.hero-note{margin-top:16px;color:var(--muted);font-size:14px;}

/* BUTTONS */
.btn{padding:14px 22px;border-radius:14px;border:1px solid var(--border);font-weight:800;}
.btn.gold{background:linear-gradient(180deg,#e2c27a,#caa356);color:#000;}
.btn.ghost{background:rgba(255,255,255,.08);}
.btn.call{border:2px solid var(--green);}

/* =========================
   SECTIONS
========================= */
.section{padding:90px 0;}
.section.alt{background:rgba(255,255,255,.03);}
body.light .section.alt{background:#f1f5f9;}
.section-head{margin-bottom:28px;}
.section-head h2{font-size:34px;}
.section-head p{color:var(--muted);}

/* =========================
   GRIDS
========================= */
.grid{display:grid;gap:16px;}
.cards-6{grid-template-columns:repeat(3,1fr);}
.why-grid{grid-template-columns:repeat(4,1fr);}

.card,.why-item{
  background:var(--panel-soft);border:1px solid var(--border);
  border-radius:18px;padding:22px;
}
.card p,.why-item p{color:var(--muted);}

/* =========================
   GALLERY
========================= */
.gallery-wrap{
  position:relative;display:flex;align-items:center;
  justify-content:center;
}

.gallery-frame{
  width:100%;max-width:480px;aspect-ratio:4/3;
  border-radius:20px;overflow:hidden;border:1px solid var(--border);
}
.gallery-frame img{width:100%;height:100%;object-fit:cover;}

.g-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  font-size:26px;width:44px;height:44px;border-radius:50%;
  background:rgba(0,0,0,.55);border:none;color:var(--gold);
  cursor:pointer;
}
.g-arrow.left{left:10px;}
.g-arrow.right{right:10px;}

.gallery-dots{display:flex;justify-content:center;gap:8px;margin-top:14px;}
.gallery-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.4);}
.gallery-dot.active{background:var(--gold);}

.below-gallery-social{
  display:flex;justify-content:center;
  gap:22px;margin-top:20px;
}
.below-gallery-social img{width:40px;}

/* =========================
   REVIEWS
========================= */
.review-card{
  max-width:600px;margin:0 auto;text-align:center;
  background:var(--panel-soft);border:1px solid var(--border);
  padding:26px;border-radius:20px;
}
.stars{color:var(--gold);font-size:22px;}
.review-author{margin-top:10px;color:var(--muted);}

/* =========================
   BOOKING
========================= */
.booking-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:20px;
}

.booking-box{
  background:var(--panel-soft);border:1px solid var(--border);
  border-radius:20px;padding:22px;
}

.label{font-weight:700;margin-bottom:6px;display:block;}

input,textarea{
  width:100%;padding:14px;border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
}

/* NEW PREMIUM TIME RANGE BUTTONS */
.time-slots{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:14px;
}

.time-slot{
  padding:12px 18px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:600;
  cursor:pointer;
  transition:.2s;
}

.time-slot:hover{
  background:rgba(255,255,255,.12);
}

.time-slot.active{
  background:var(--gold);
  color:#000;
  border-color:var(--gold);
}

/* =========================
   CONTACTS
========================= */

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

.contact-card{
  background:var(--panel-soft);
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.contact-card h3{font-size:18px;margin-bottom:10px;}
.contact-card p{line-height:1.5;margin-bottom:10px;}
.contact-social{display:flex;gap:14px;margin-top:auto;}
.contact-social img{width:32px;height:32px;}

/* MOBILE FIX */
@media(max-width:900px){
  .contact-grid{grid-template-columns:1fr;}
}

/* =========================
   FOOTER
========================= */
.footer{
  padding:50px 18px;
  text-align:center;
  border-top:1px solid var(--border);
}
.footer-logo{
  max-width:260px;
  margin:0 auto 20px;
}
.footer-links{margin-bottom:14px;font-size:14px;}
.footer-links a{color:var(--muted);font-weight:600;}
.footer-privacy{font-size:13px;color:var(--muted);margin-bottom:10px;}

/* =========================
   COOKIE BANNER
========================= */
.cookie-banner{
  position:fixed;bottom:20px;left:20px;right:20px;
  max-width:480px;margin:auto;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:16px;padding:14px 16px;
  display:none;z-index:4000;
}
.cookie-banner button{
  background:var(--gold);border:none;border-radius:999px;
  padding:6px 14px;font-weight:700;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:900px){
  .nav,.header-social{display:none;}
  .menu-btn{display:block;}
  .cards-6,.why-grid{grid-template-columns:1fr 1fr;}
  .booking-grid{grid-template-columns:1fr;}
}

@media(max-width:520px){
  .cards-6,.why-grid{grid-template-columns:1fr;}
  .hero-title{font-size:36px;}
}