/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: #222;
}

a {
  text-decoration: none;
  color: inherit;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #b8962e, #d4af37, #b8962e);
  display: block;
  margin: 12px auto 0;
}

/* ===== HEADER ===== */
.main-header {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nav-logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-weight: 500;
  position: relative;
  color: #000000;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #d4af37;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
 
}

.nav-menu a:hover::after {
  width: 100%;
}

.call-pill {
  background: #0a9f4b;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
}

/* ===== HERO ===== */
.hero-section {
  height: 100vh;
  background: url("images/banner1.webp") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  color: #fff;
  z-index: 1;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero-content h4 {
  margin: 10px 0;
}

.hero-content h3 {
  color: #d4af37;
  margin-top: 15px;
}

/* ===== AMENITIES ===== */
.amenities-row {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.amenity-item {
  width: 190px;
  height: 160px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
  transition: 0.5s ease;
}

.amenity-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.amenity-item:hover img {
  transform: scale(1.15);
}

.amenity-item span {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #d4af37;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.2),
    transparent
  );
}

.amenity-item:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.35),
    0 0 0 1px rgba(212,175,55,0.4);
}

/* ===== PRICE LIST ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

}

.price-card {
  background: #000000;
  padding: 35px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card strong {
 color: #fff;
  display: block;
  margin-top: 10px;
}

/* ===== LOCATION ===== */
iframe {
  border-radius: 14px;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 30px 10px;
}

/* ===== FLOATING QUERY ===== */
.floating-query {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #000000;
  padding: 20px;
  width: 260px;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  z-index: 999;
}

.floating-query h4 {
  text-align: center;
  margin-bottom: 15px;
}

.floating-query input,
.floating-query select,
.floating-query textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.floating-query button {
  width: 100%;
  background: #0a9f4b;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .floating-query {
    display: none;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}





.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  z-index: 999;
}




/* ===== FULL WEBSITE PREMIUM TEXTURE ===== */
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;

  /* TEXTURE BACKGROUND */
  background: 
    linear-gradient(
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.65)
    ),
    url("images/texture.webp");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  color: #eee;
}



#price-list h2,
#price-list .price-head h2 {
  color: #000 !important;
}

#price-list p {
  color: #333 !important;
}
/* ===== PROJECT HIGHLIGHTS TEXT BLACK ===== */
#highlights,
#highlights * {
  color: #000 !important;
}

/* ===== GALLERY SECTION ===== */

/* ===== PROJECT GALLERY HEADING FIX ===== */
#gallery .lux-section,
#gallery {
  text-align: center;
}

#gallery .lux-title,
.gallery-title {
  font-size: 42px;
  font-weight: 700;   /* EXTRA BOLD */
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 18px;
margin-top: 8px;
}

#gallery .lux-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #e0e0e0;
}

/* GOLD LINE */
#gallery .lux-subtitle::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 14px auto 0;
  background: linear-gradient(
    90deg,
    #b8962e,
    #d4af37,
    #b8962e
  );
  border-radius: 2px;
}

.gallery-section {
  padding: 90px 0;
text-align: center;

}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.18);
}

/* Optional dark overlay */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}
/* ===== LOCATION SECTION ===== */
.location-section {
  padding: 90px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

/* LEFT USP */
.location-usp {
  background: rgba(0,0,0,0.55);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.location-usp ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.location-usp li {
  font-size: 16px;
  margin-bottom: 14px;
  color: #fff;
}

.location-usp strong {
  color: #d4af37;
}

/* Button */
.map-btn {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(135deg, #b8962e, #d4af37);
  color: #000;
  font-weight: 600;
  border-radius: 30px;
}

/* RIGHT MAP */
.location-map iframe {
  width: 100%;
  height: 360px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    height: 300px;
  }
}

/* ===== LOCATION HEADING CENTER & BOLD ===== */
#location {
  text-align: center;
}

#location .lux-title,
#location h2 {
  font-size: 42px;
  font-weight: 700;   /* EXTRA BOLD */
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

#location .lux-subtitle,
#location p {
  font-size: 18px;
  font-weight: 500;
  color: #e0e0e0;
}

/* GOLDEN LINE UNDER SUBTITLE */
#location .lux-subtitle::after,
#location p::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 14px auto 0;
  background: linear-gradient(
    90deg,
    #b8962e,
    #d4af37,
    #b8962e
  );
  border-radius: 2px;
}






/* ===== PROJECT HIGHLIGHTS BLACK BOX ===== */
#highlights .highlight-box {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px 20px;
  border-radius: 16px;
  margin: 15px 0;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  transition: 0.4s ease;
}

/* Text inside */
#highlights .highlight-box p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Gold accent on hover */
#highlights .highlight-box:hover {
  transform: translateY(-8px);
  box-shadow:
    0 35px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(212,175,55,0.5);
}


/* ===== HIGHLIGHTS TEXT WHITE ===== */
#highlights .highlight-box,
#highlights .highlight-box p {
  color: #ffffff !important;
}

/* Thoda aur premium look */
#highlights .highlight-box p {
  font-weight: 600;
  letter-spacing: 0.3px;
}


/* ===== NAV TOGGLE BLACK ===== */
.nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #000;   /* BLACK */
}

/* ===== MOBILE NAVBAR ===== */
@media (max-width: 991px) {

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
  }

  .nav-menu a {
    padding: 14px 20px;
    border-top: 1px solid #eee;
    color: #000;
  }

  .nav-menu.active {
    display: flex;
  }
}
.disclaimer-section {
  background: #111;
  color: #bbb;
  padding: 40px 0;
  font-size: 14px;
  line-height: 1.7;
}

.disclaimer-section h3 {
  color: #fff;
  margin-bottom: 15px;
}

.disclaimer-section a {
  color: #d4af37;
  text-decoration: none;
}

.disclaimer-section a:hover {
  text-decoration: underline;
}