/* -----------------------------------------------------
   LUXURY COLOR PALETTE
----------------------------------------------------- */
:root{
  --navy:#0A0F2C;
  --champagne:#E8DCC7;
  --gold:#C9A050;
  --offwhite:#F8F5F2;
  --white:#ffffff;
}

*{margin:0;padding:0;box-sizing:border-box;font-family:'Outfit',sans-serif;}

body{
  background:var(--offwhite);
  color:var(--navy);
  overflow-x:hidden;
}

/* -----------------------------------------------------
   WHATSAPP FLOAT
----------------------------------------------------- */
.whatsapp{
  position:fixed;
  left:20px;
  bottom:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  z-index:999;
}
.whatsapp img{width:32px;}

/* -----------------------------------------------------
   FLOAT BUTTON
----------------------------------------------------- */
.consult-btn{
  position:fixed;
  right:20px;
  bottom:20px;
  background:var(--gold);
  color:white;
  border:none;
  padding:16px 30px;
  border-radius:40px;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 12px 35px rgba(0,0,0,.25);
  z-index:999;
}

/* -----------------------------------------------------
   NAVBAR
----------------------------------------------------- */
.navbar{
  width:100%;
  padding:22px 6%;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(12px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  border-bottom:1px solid rgba(255,255,255,0.4);
}
.nav-logo{
  font-size:26px;
  font-weight:700;
  color:var(--navy);
}
.nav-logo span{
  color:var(--gold);
  margin-left:6px;
  font-weight:500;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:26px;
}
.nav-links li a{
  cursor:pointer;
  font-size:17px;
  font-weight:500;
  transition:.3s;
}
.nav-links li a:hover{
  color:var(--gold);
}

.hamburger{display:none;cursor:pointer;}

/* MOBILE MENU */
.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:75%;
  height:100vh;
  background:white;
  z-index:999;
  padding:70px 25px;
  display:flex;
  flex-direction:column;
  gap:22px;
  transition:.4s;
}
.mobile-menu a{
  font-size:20px;
  font-weight:500;
}
.close-menu{
  position:absolute;
  top:20px;
  right:20px;
  background:none;
  border:none;
  font-size:32px;
  cursor:pointer;
}

/* -----------------------------------------------------
   HERO
----------------------------------------------------- */
.hero{
  height:100vh;
  background:url('assets/back.webp') center/cover no-repeat;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}
.hero-content{
  position:relative;
  z-index:2;
  color:white;
  padding:0 20px;
}
.hero h1{
  font-size:70px;
  font-weight:800;
  line-height:1.1;
}
.hero h1 span{
  color:var(--gold);
}
.hero p{
  font-size:22px;
  margin-top:12px;
  opacity:.9;
}
.hero-btns{
  margin-top:32px;
  display:flex;
  gap:16px;
  justify-content:center;
}
.btn-primary{
  padding:14px 32px;
  background:var(--gold);
  color:white;
  border-radius:40px;
  font-size:18px;
  font-weight:600;
}
.btn-secondary{
  padding:14px 32px;
  background:transparent;
  border:2px solid white;
  color:white;
  border-radius:40px;
  font-size:18px;
  font-weight:600;
}

/* -----------------------------------------------------
   SECTIONS
----------------------------------------------------- */
.section{
  padding:100px 6%;
}
.title{
  font-size:42px;
  font-weight:700;
  text-align:center;
  margin-bottom:25px;
}
.title.white{color:white;}
.title::after{
  content:"";
  width:80px;
  height:4px;
  background:var(--gold);
  display:block;
  margin:12px auto 0;
  border-radius:3px;
}
.desc{
  text-align:center;
  font-size:18px;
  max-width:700px;
  margin:auto;
  color:#444;
}
.desc.white{color:var(--champagne);}

/* -----------------------------------------------------
   VISION GRID
----------------------------------------------------- */
.grid-3{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin-top:40px;
}
.feature{
  background:white;
  border-radius:18px;
  padding:30px;
  text-align:center;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}
.feature i{
  width:40px;height:40px;color:var(--gold);margin-bottom:15px;
}
.feature h3{font-size:20px;margin-bottom:6px;}

/* -----------------------------------------------------
   FACTS
----------------------------------------------------- */
.facts-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:40px;
}
.fact-card{
  background:white;
  padding:28px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}
.fact-card h3{font-size:20px;}

/* -----------------------------------------------------
   PRICING
----------------------------------------------------- */
.pricing-section{
  background:url('assets/img_13.jpeg') center/cover no-repeat;
  position:relative;
  padding:160px 6%;
}
.pricing-section .overlay{
  position:absolute;inset:0;background:rgba(0,0,0,.55);
}
.pricing-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:35px;
}
.price-card{
  background:white;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}
.price-card img{
  width:100%;
  height:240px;
  object-fit:cover;
}
.price-info{
  padding:22px;
  text-align:center;
}
.price-info h3{font-size:22px;}
.price{
  color:var(--gold);
  font-size:20px;
  font-weight:700;
  margin:6px 0;
}

/* -----------------------------------------------------
   AMENITIES
----------------------------------------------------- */
.amenities-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin-top:40px;
}
.amenity-card{
  background:white;
  border-radius:22px;
  box-shadow:0 16px 35px rgba(0,0,0,.13);
  overflow:hidden;
  transition:.3s;
}
.amenity-card:hover{transform:translateY(-5px);}
.amenity-card img{
  width:100%;
  height:230px;
  object-fit:cover;
}
.amenity-card h3{
  padding:18px;
  font-size:20px;
  text-align:center;
}

/* -----------------------------------------------------
   GALLERY (3 per row)
----------------------------------------------------- */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  margin-top:40px;
}
.gallery-grid img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
}
@media(max-width:768px){
  .gallery-grid{
    grid-template-columns:1fr;
  }
}

/* -----------------------------------------------------
   LOCATION (Luxury)
----------------------------------------------------- */
.location-section{padding:100px 6%;}

.location-flex{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:50px;
  align-items:center;
  margin-top:50px;
}

.location-image-box img{
  width:100%;
  border-radius:22px;
  box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.location-info-box h3{
  font-size:30px;
  font-weight:700;
  margin-bottom:12px;
}
.location-sub{
  font-size:18px;
  color:#555;
  margin-bottom:25px;
  max-width:480px;
}

.lux-list{
  list-style:none;
  padding-left:0;
}
.lux-list li{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:18px;
  margin-bottom:12px;
}
.lux-list li span{
  width:12px;
  height:12px;
  background:var(--gold);
  border-radius:50%;
  display:inline-block;
}

@media(max-width:900px){
  .location-flex{
    grid-template-columns:1fr;
    gap:35px;
  }
}

/* -----------------------------------------------------
   CONTACT
----------------------------------------------------- */
.contact-section{
  background:var(--navy);
  padding:120px 6%;
}
.contact-form{
  max-width:650px;
  margin:40px auto 0;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.contact-form input,
.contact-form select{
  padding:16px;
  border-radius:14px;
  border:1px solid #ddd;
  background:white;
}
.btn-primary.full{
  width:100%;
  padding:16px;
  border-radius:50px;
}
.form-msg{
  text-align:center;
  color:var(--champagne);
  margin-top:16px;
}

/* -----------------------------------------------------
   FOOTER
----------------------------------------------------- */
footer{
  text-align:center;
  padding:22px;
  background:var(--navy);
  color:var(--champagne);
  font-size:15px;
  margin-top:60px;
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */
@media(max-width:900px){
  .nav-links{display:none;}
  .hamburger{display:block;}
}
