/* General Resets & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4 {
  color: #1a1a1a;
  margin-bottom: 12px;
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span {
  color: #c0954b; /* Gold Accent */
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #c0954b;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-nav, .btn-table {
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: #c0954b;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: #a37c38;
}

.btn-nav {
  background-color: #1a1a1a;
  color: #fff !important;
  padding: 8px 18px;
}

.btn-nav:hover {
  background-color: #c0954b !important;
}

.btn-secondary {
  background-color: #1a1a1a;
  color: #fff;
  padding: 10px 20px;
}

.btn-table {
  background-color: #c0954b;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
}

.hero .badge {
  background-color: #c0954b;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  color: #fff;
  font-size: 2.8rem;
  margin: 18px 0 10px;
}

.hero .tagline {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.highlight-item strong {
  display: block;
  font-size: 1.4rem;
  color: #e5be75;
}

.highlight-item span {
  font-size: 0.85rem;
  color: #ddd;
}

.rera-text {
  font-size: 0.8rem;
  margin-top: 15px;
  color: #bbb;
}

/* Section Formatting */
.section {
  padding: 70px 0;
}

.bg-light {
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title h2 {
  font-size: 2.2rem;
  position: relative;
}

.section-title p {
  color: #666;
  font-size: 1rem;
}

/* Overview Section */
.overview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin-top: 15px;
}

.feature-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c0954b;
}

.overview-card {
  background: #fdf8ef;
  border: 1px solid #e5be75;
  padding: 25px;
  border-radius: 8px;
}

.overview-card h4 {
  font-size: 1.2rem;
  color: #a37c38;
}

.overview-card ul {
  list-style: none;
  margin: 15px 0 20px;
}

.overview-card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Pricing Table */
.table-container {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.pricing-table th {
  background-color: #1a1a1a;
  color: #fff;
  font-weight: 600;
}

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.amenity-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Location Grid */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.location-box {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.location-box ul {
  list-style: none;
  margin-top: 15px;
}

.location-box ul li {
  padding: 6px 0;
  border-bottom: 1px dashed #eee;
  font-size: 0.95rem;
}

/* Contact Section & Grid */
.contact-section {
  background: #1a1a1a;
  color: #fff;
  padding: 70px 0;
}

.text-light h2 {
  color: #fff;
}

.text-light p {
  color: #aaa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
  margin-top: 30px;
}

/* Map Column */
.map-container {
  width: 100%;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form Column */
.contact-form-wrapper {
  background: #242424;
  padding: 35px;
  border-radius: 8px;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrapper h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.form-subtext {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.enquiry-form .form-group {
  margin-bottom: 15px;
}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 4px;
  border: 1px solid #444;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
}

.enquiry-form select {
  color: #aaa;
}

.enquiry-form input:focus,
.enquiry-form select:focus {
  outline: none;
  border-color: #c0954b;
}

/* Sales Lounge Info Below Form */
.sales-info {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #ccc;
}

.sales-info p {
  margin-bottom: 8px;
}

.sales-info strong {
  color: #c0954b;
}

/* Responsive adjustment for Mobile screens */
@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: 1fr; /* Stack vertically on smaller screens */
  }

  .map-container {
    height: 300px;
    min-height: 300px;
  }
}


/* Gallery Carousel - 3 Images Per Row */
.gallery-carousel-container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 45px;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  list-style: none;
  transition: transform 0.4s ease-in-out;
  gap: 20px;
}

.carousel-slide {
  /* Fits 3 items per row with gaps factored in */
  flex: 0 0 calc((100% - 40px) / 3); 
  box-sizing: border-box;
}

.slide-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.slide-card:hover img {
  transform: scale(1.05);
}

.slide-card .slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  padding: 20px 12px 10px;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
}

/* Slider Controls */
.gallery-carousel-container .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 10;
}

.gallery-carousel-container .slider-btn:hover {
  background: #c0954b;
}

.gallery-carousel-container .prev-btn { left: 0; }
.gallery-carousel-container .next-btn { right: 0; }

/* Responsive adjustments */
@media (max-width: 900px) {
  .carousel-slide {
    flex: 0 0 calc((100% - 20px) / 2); /* 2 items per row on tablets */
  }
}

@media (max-width: 600px) {
  .carousel-slide {
    flex: 0 0 100%; /* 1 item per row on mobile screens */
  }
}

/* Footer */
.footer {
  background: #111;
  color: #888;
  padding: 30px 0;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid #222;
}

.footer .disclaimer {
  margin: 10px 0;
  font-size: 0.75rem;
  color: #666;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Can be paired with JS for a hamburger toggle */
  }

  .hero h1 {
    font-size: 2rem;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }
}