/* ================= GLOBAL ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial;
}

body{
  padding-top:70px;
  background:#faf9f7;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.section{
  padding:70px 0;
}

.bg-light{
  background:#f5f5f5;
}

/* ================= SECTION TITLE ================= */
.section-title{
  text-align:center;
  margin-bottom:40px;
}

.section-title h2{
  color:#000;
  font-size:28px;
  font-weight:700;
  position:relative;
  display:inline-block;
  padding-bottom:10px;
}

.section-title h2::after{
  content:"";
  width:70px;
  height:3px;
  background:#caa24d;
  display:block;
  margin:12px auto 0;
}

/* ================= HEADER / NAVBAR ================= */
.header{
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,.15);
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  border-bottom:3px solid #caa24d;
}

.header-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
}

.logo img{
  height:45px;
}

.navbar a{
  margin:0 10px;
  text-decoration:none;
  color:#000;
  font-weight:500;
  transition:.3s;
}

.navbar a:hover{
  color:#caa24d;
}

/* ================= HERO ================= */
.hero{
  height:100vh;
  background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
  url("../images/banner.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
}

.hero-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.hero-left{
  color:#fff;
}

.hero-left h1{
  font-size:48px;
}

.hero-left p{
  font-size:20px;
  margin-top:10px;
}

/* ================= HERO FORM ================= */
.hero-form-box{
  width:360px;
  background:#000;
}

.form-heading{
  background:#caa24d;
  color:#fff;
  text-align:center;
  padding:12px;
  font-weight:bold;
}

.form-inner{
  padding:20px;
}

.call-text{
  text-align:center;
  color:#fff;
}

.call-text span{
  color:#caa24d;
  font-weight:bold;
}

.form-inner input,
.form-inner textarea{
  width:100%;
  margin:10px 0;
  padding:10px;
  background:#111;
  color:#fff;
  border:1px solid #555;
}

.form-inner button{
  width:100%;
  padding:12px;
  background:#caa24d;
  border:none;
  font-weight:bold;
  cursor:pointer;
}

.form-inner button:hover{
  background:#b8943f;
}

/* ================= AMENITIES ================= */
.amenities-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.amenity-box{
  border:1px solid #ddd;
  border-radius:6px;
  overflow:hidden;
  background:#fff;
}

.amenity-box img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}

.amenity-box p{
  margin:0;
  padding:10px 0;
  text-align:center;
  background:rgba(0,0,0,0.75);
  color:#fff;
  font-size:15px;
  font-weight:600;
}

/* ================= HIGHLIGHTS ================= */
.highlights-detailed{
  max-width:800px;
  margin:auto;
}

.highlight-item{
  margin-bottom:20px;
}

.highlight-item h4{
  margin-bottom:6px;
  color:#000;
}

/* ================= PRICE ================= */
.price-box table{
  width:100%;
  border-collapse:collapse;
}

.price-box th,
.price-box td{
  border:1px solid #ccc;
  padding:12px;
  text-align:center;
}

/* ================= LOCATION ================= */
.location-center{
  text-align:center;
}

.map-wrapper iframe{
  width:100%;
  height:450px;
  border:0;
}

/* ================= GALLERY ================= */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.gallery-grid img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:6px;
  display:block;
}

/* ================= CONTACT FINAL ================= */
.contact-final{
  background:#7a7a7a;
  padding:80px 0;
}

.contact-final-wrap{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:40px;
}

/* ================= FOOTER ================= */
.footer{
  text-align:center;
  background:#000;
  color:#aaa;
  padding:20px;
}

/* ================= CALLBACK & WHATSAPP ================= */
.callback-btn{
  position:fixed;
  right:-45px;
  top:50%;
  transform:rotate(-90deg);
  background:#caa24d;
  padding:10px;
  font-weight:bold;
  cursor:pointer;
}

.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
}

.whatsapp-float img{
  width:55px;
  border-radius:50%;
}

/* ================= POPUP (CORRECTED & STABLE) ================= */
.popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.85);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:99999;
}

.popup-box{
  background:#111;
  width:420px;
  max-width:90%;
  padding:35px 30px 30px;
  border-top:4px solid #caa24d;
  position:relative;
}

.popup-box h3{
  margin-bottom:20px;
  color:#fff;
  font-size:22px;
}

.popup-form{
  display:flex;
  flex-direction:column;
}

.popup-form input,
.popup-form textarea{
  width:100%;
  margin-bottom:14px;
  padding:12px;
  background:#1c1c1c;
  color:#fff;
  border:1px solid #444;
}

.popup-form textarea{
  resize:none;
}

.popup-form button{
  width:100%;
  padding:14px;
  background:#caa24d;
  border:none;
  font-weight:bold;
  cursor:pointer;
  color:#000;
}

.popup .close{
  position:absolute;
  top:12px;
  right:15px;
  font-size:26px;
  color:#fff;
  cursor:pointer;
}
/* ================= CONTACT FORM FIX (DO NOT TOUCH ANYTHING ELSE) ================= */
.contact-final{
  background:#7a7a7a;
  padding:80px 0;
}

.contact-final-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:50px;
}

/* LEFT */
.contact-left{
  color:#fff;
}

.contact-left h6{
  letter-spacing:2px;
  font-size:14px;
  margin-bottom:15px;
}

.contact-left h2{
  font-size:36px;
  margin-bottom:20px;
}

.contact-left p{
  max-width:520px;
  line-height:1.7;
  margin-bottom:40px;
}

.contact-info .info-item{
  margin-bottom:30px;
}

.contact-info span{
  display:block;
  font-size:13px;
  letter-spacing:1px;
  opacity:.8;
}

.contact-info strong{
  font-size:18px;
  display:block;
  margin-top:6px;
}

/* RIGHT */
.contact-right{
  background:#fff;
  padding:35px;
}

.contact-right h3{
  margin-bottom:10px;
}

.contact-right p{
  font-size:14px;
  color:#555;
  margin-bottom:20px;
}

.contact-right input,
.contact-right textarea{
  width:100%;
  padding:12px;
  margin-bottom:14px;
  border:1px solid #ccc;
}

.contact-right textarea{
  resize:none;
}

.contact-right button{
  background:#4a3525;
  color:#fff;
  padding:14px;
  border:none;
  width:100%;
  font-size:16px;
  cursor:pointer;
}
/* ================= MOBILE RESPONSIVE (ONLY ADD, NO CHANGE) ================= */
@media (max-width:768px){

  /* HEADER */
  .header-flex{
    flex-direction:column;
    gap:10px;
  }

  .navbar{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
  }

  /* HERO */
  .hero{
    height:auto;
    padding:80px 0 40px;
  }

  .hero-flex{
    flex-direction:column;
    gap:30px;
    text-align:center;
  }

  .hero-left h1{
    font-size:32px;
  }

  .hero-left p{
    font-size:16px;
  }

  .hero-form-box{
    width:100%;
    max-width:360px;
  }

  /* AMENITIES */
  .amenities-grid{
    grid-template-columns:repeat(2,1fr);
  }

  /* GALLERY */
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  /* CONTACT SECTION */
  .contact-final-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }

  .contact-right{
    width:100%;
  }

  /* MAP */
  .map-wrapper iframe{
    height:300px;
  }

}

/* EXTRA SMALL DEVICES */
@media (max-width:480px){

  .amenities-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .hero-left h1{
    font-size:26px;
  }

  .section{
    padding:50px 0;
  }

}
.callback-btn,
.whatsapp-float{
  display:none;
}
