/* Fixed and optimized CSS with complete overflow fixes, improved mobile responsiveness, and better layout structure */

/* CSS Variables - Design System */
:root {
  /* Colors */
  --primary-color: #1e6f5c;
  --primary-dark: #155742;
  --primary-light: #2e8b72;
  --accent-color: #c9a24d;
  --accent-dark: #b38e3a;
  --text-dark: #1f2933;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --bg-light: #f8faf9;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;

  /* Container */
  --container-width: 1200px;
  --container-padding: 24px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  background-color: var(--bg-white);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

section {
  padding: var(--space-xl) 0;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

p {
  max-width: 680px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-outline-white {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--primary-color);
}

.btn.full {
  width: 100%;
}

/* ================= HEADER FIX ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  height: 72px;
  width: 100%;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
  padding: 0 var(--container-padding);
}

/* Logo */
.logo-image {
  height: 58px !important;
  width: auto;
  object-fit: contain;
  display: block;
}

/* NAV MENU */
.nav-menu {
  display: flex;
  justify-content: center;
  flex: 1;
}

.nav-list {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-list a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000000 !important;
  padding: 6px 8px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-list a:hover {
  color: var(--primary-color) !important;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  background: var(--primary-color);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.dev-logo-image {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Mobile Menu Button */
.mobile-toggle {
  display: none !important;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* ================= HERO SLIDER ================= */
.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
  margin-top: 72px;
  width: 100%;
}

.slides {
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 600px;
  padding-top: 120px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.eyebrow-text {
  display: block;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 16px;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(5px);
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

/* Project Snapshot */
.project-snapshot {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  width: 100%;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
}

.snapshot-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.snapshot-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.snapshot-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

.snapshot-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ================= VIDEO SECTION ================= */
.video-section {
  background-color: #0a1929;
  padding: 80px 0;
  color: #ffffff;
  width: 100%;
}

.video-content-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-content-centered .section-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.25;
  color: #d4af37;
}

.video-description {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.video-player {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background-color: #000;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

/* ================= WHY SECTION ================= */
.why-section {
  padding: var(--space-2xl) 0;
  width: 100%;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.why-content {
  padding-right: var(--space-xl);
}

.why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.highlight {
  display: flex;
  gap: var(--space-md);
}

.highlight i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 4px;
  flex-shrink: 0;
}

.highlight h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.highlight p {
  color: var(--text-light);
}

/* ================= CONFIGURATIONS ================= */
.configurations {
  background-color: var(--bg-light);
  padding: var(--space-2xl) 0;
  width: 100%;
}

.config-tabs {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.config-tab {
  flex: 1;
  min-width: 250px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.config-tab.active {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-lg);
}

.tab-title {
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
}

.tab-size,
.tab-price {
  font-size: 0.95rem;
  display: block;
}

.tab-price {
  font-weight: 600;
  margin-top: var(--space-xs);
}

.config-content {
  margin-bottom: var(--space-xl);
}

.config-preview {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.config-preview.active {
  display: grid;
}

.preview-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.quick-details {
  display: flex;
  gap: var(--space-lg);
  margin: var(--space-md) 0;
  flex-wrap: wrap;
}

.detail {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-light);
}

.detail i {
  color: var(--primary-color);
  flex-shrink: 0;
}

.view-details-btn {
  margin-top: var(--space-md);
}

.detailed-configuration {
  display: none;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.detailed-configuration.active {
  display: block;
}

.config-details-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--primary-color);
}

.spec-tabs {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.spec-tab {
  background: none;
  border: none;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
}

.spec-tab.active {
  color: var(--primary-color);
  font-weight: 600;
}

.spec-tab.active::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--primary-color);
}

.spec-tab-content {
  display: none;
}

.spec-tab-content.active {
  display: block;
}

.floor-plan-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-xl);
}

.floor-plan-image {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  text-align: center;
  color: var(--text-light);
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.floor-plan-details h4 {
  margin-bottom: var(--space-md);
}

.floor-plan-details ul {
  list-style: none;
}

.floor-plan-details li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-color);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.spec-category h4 {
  margin-bottom: var(--space-md);
  color: var(--primary-color);
}

.spec-category ul {
  list-style: none;
}

.spec-category li {
  padding: var(--space-xs) 0;
  color: var(--text-light);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
  font-weight: 600;
  color: var(--primary-color);
}

.pricing-table tr:hover {
  background-color: var(--bg-light);
}

.price-request-box {
  text-align: center;
  padding: var(--space-xl) 0;
}

.price-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
  text-align: left;
}

.price-highlights li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.price-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: var(--space-md);
}

/* ================= AMENITIES ================= */
.amenities {
  padding: var(--space-xl) 0;
  background: var(--bg-white);
  width: 100%;
}

.amenity-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.amenity-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  background: none;
  border: none;
  padding: var(--space-md) var(--space-lg);
  color: var(--text-light);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: color var(--transition-fast);
  border-bottom: 3px solid transparent;
}

.amenity-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.amenity-tab i {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.amenity-tab-content {
  display: none;
}

.amenity-tab-content.active {
  display: block;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  width: 100%;
}

.amenity-card {
  text-align: center;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.amenity-image {
  height: 180px;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-image img {
  transform: scale(1.1);
}

.amenity-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  color: var(--primary-color);
}

.amenity-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 100%;
  margin: 0 auto;
}

.view-all-amenities {
  text-align: center;
}

/* ================= SUSTAINABILITY ================= */
.sustainability {
  background-color: var(--bg-light);
  padding: var(--space-2xl) 0;
  width: 100%;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.sustainability-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.sustainability-content {
  text-align: left;
}

.sustainability-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.feature {
  display: flex;
  gap: var(--space-md);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.feature p {
  color: var(--text-light);
}

/* ================= GALLERY ================= */
.gallery {
  background-color: var(--bg-light);
  padding: var(--space-2xl) 0;
  width: 100%;
}

.gallery-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-slides {
  height: 500px;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
  cursor: zoom-in;
}

.gallery-slide.active img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-align: center;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border: none;
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.gallery-nav:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-lg);
}

.gallery-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-dots .dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.gallery-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.gallery-popup.active {
  display: flex;
}

.gallery-popup img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.popup-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
}

/* ================= LOCATION ================= */
.location {
  padding: var(--space-2xl) 0;
  width: 100%;
}

.location-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  align-items: stretch;
}

.map-container {
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.map-embed {
  width: 100%;
  height: 100%;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-details h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xl);
  color: var(--primary-color);
}

.connectivity-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.connectivity-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.connectivity-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.connectivity-icon i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.connectivity-item h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.connectivity-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ================= DEVELOPER ================= */
.developer {
  text-align: center;
  background-color: var(--bg-light);
  padding: var(--space-2xl) 0;
  width: 100%;
}

.developer-content {
  max-width: 800px;
  margin: 0 auto;
}

.developer-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin: var(--space-xl) 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: var(--space-xs);
}

.developer-info {
  margin-top: var(--space-xl);
}

/* ================= PAYMENT PLANS ================= */
.payment-plans {
  padding: var(--space-2xl) 0;
  width: 100%;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.plan-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-icon {
  width: 80px;
  height: 80px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.plan-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.plan-card p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.plan-features {
  list-style: none;
  text-align: left;
}

.plan-features li {
  padding: var(--space-xs) 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.plan-features i {
  color: var(--primary-color);
}

/* ================= FAQ ================= */
.faq {
  padding: var(--space-2xl) 0;
  width: 100%;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-question i {
  transition: transform var(--transition-fast);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-answer.active {
  padding: 0 var(--space-lg) var(--space-lg);
  max-height: 500px;
}

/* ================= FINAL CTA ================= */
.final-cta {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: var(--space-2xl) 0;
  width: 100%;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ================= ENQUIRY SECTION ================= */
.enquiry-section {
  background: var(--bg-light);
  padding: var(--space-2xl) 0;
  width: 100%;
}

.enquiry-box {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.enquiry-box h2 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.enquiry-box p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.enquiry-form input,
.enquiry-form textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.enquiry-form button {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.enquiry-form button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ================= ENQUIRY MODAL ================= */
#enquiryModal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}

#enquiryModal.active {
  display: flex;
}

.enquiry-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.enquiry-modal {
  position: relative;
  background: white;
  margin: auto;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.enquiry-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-light);
}

.enquiry-title {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
  text-align: center;
}

.enquiry-subtitle {
  color: var(--text-light);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.enquiry-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.enquiry-form-grid input {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
}

.enquiry-form-grid input:nth-child(n + 3) {
  grid-column: auto;
}

.enquiry-form-grid .btn {
  grid-column: 1 / -1;
}

/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
  color: white;
  padding: var(--space-2xl) 0 var(--space-xl);
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: var(--space-2xl);
  align-items: start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.footer-logo img {
  max-width: 190px;
  height: auto;
}

.footer-description {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  max-width: 420px;
}

.rera-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 111, 92, 0.18);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-top: 8px;
}

.rera-badge i {
  color: var(--primary-color);
}

.footer-col h4 {
  font-size: 1.15rem;
  margin-bottom: 22px;
  color: #f8fafc;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #94a3b8;
  font-size: 0.95rem;
}

.contact-item i {
  width: 18px;
  color: #cbd5f5;
  flex-shrink: 0;
}

.contact-item a {
  color: #94a3b8;
  text-decoration: none;
}

.contact-item a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background-color: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.developer-logo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.developer-logo img {
  max-width: 170px;
  height: auto;
}

.developer-experience {
  color: #94a3b8;
  font-size: 0.95rem;
}

.newsletter {
  margin-top: 28px;
}

.newsletter p {
  color: #94a3b8;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  background-color: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  color: white;
}

.newsletter-form input::placeholder {
  color: #64748b;
}

.newsletter-form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0 16px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: var(--space-xl);
}

.copyright {
  text-align: center;
  color: #94a3b8;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 8px;
}

/* ================= CHATBOT ================= */
#chatbot-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1e6f5c, #145a46);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  border: none;
}

#chatbot-launcher:hover {
  transform: translateY(-4px);
}

#chatbot-launcher.pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(30, 111, 92, 0.35);
  animation: pulseRing 2.8s ease-out infinite;
  z-index: -1;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

#chatbot {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 340px;
  max-height: 520px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

.chatbot-header {
  background: #0f172a;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h4 {
  margin: 0;
  font-size: 1rem;
}

.chatbot-header span {
  font-size: 0.75rem;
  opacity: 0.8;
}

#chatbot-close {
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

.chatbot-body {
  padding: 14px;
  overflow-y: auto;
  flex: 1;
}

.chatbot-msg {
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.bot {
  background: #f1f5f9;
  padding: 10px 12px;
  border-radius: 10px;
}

.user {
  background: #1e6f5c;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  margin-left: auto;
}

.chatbot-footer {
  padding: 12px;
  border-top: 1px solid #e5e7eb;
}

.chatbot-options button {
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 8px;
  border: 1px solid #1e6f5c;
  background: #fff;
  color: #1e6f5c;
  cursor: pointer;
  font-size: 0.9rem;
}

.chatbot-options button:hover {
  background: #1e6f5c;
  color: #fff;
}

.chatbot-footer input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  margin-bottom: 8px;
}

/* ================= AMENITIES MODAL ================= */
.amenities-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}

.amenities-modal.active {
  display: flex;
}

.amenities-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.amenities-box {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 900px;
  max-height: 80vh;
  margin: auto;
  padding: 32px;
  border-radius: 16px;
  overflow-y: auto;
  animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.amenities-box h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  color: var(--primary-color);
}

.amenities-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.amenity-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

/* ================= RESPONSIVE DESIGN ================= */

@media (max-width: 1024px) {
  .snapshot-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid,
  .sustainability-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-slides {
    height: 400px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  /* FIXED MOBILE MENU */
  .nav-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: white;
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    width: 100%;
    max-width: none;
    flex-direction: column;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--space-md);
    align-items: stretch;
  }

  .nav-list a {
    padding: 12px 0;
    display: block;
  }

  .mobile-toggle {
    display: block !important;
    order: 2;
  }

  .header-right {
    display: none;
  }

  .navbar {
    padding: 0 16px;
  }

  .config-preview {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quick-details {
    justify-content: center;
    flex-direction: column;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .developer-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gallery-slides {
    height: 300px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .slider-nav.prev {
    left: 10px;
  }

  .slider-nav.next {
    right: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .amenities-box {
    width: 95%;
    padding: 20px;
  }

  #chatbot {
    width: 100%;
    max-width: calc(100vw - 20px);
    bottom: 70px;
    right: 10px;
    left: 10px;
  }

  #chatbot-launcher {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 640px) {
  .snapshot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .config-tabs {
    flex-direction: column;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .floor-plan-content {
    grid-template-columns: 1fr;
  }

  .gallery-slides {
    height: 250px;
  }

  .hero-content {
    padding-top: 80px;
  }

  .logo-image {
    height: 50px !important;
  }

  .dev-logo-image {
    display: none;
  }

  .spec-tabs {
    gap: var(--space-xs);
  }

  .spec-tab {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.9rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .spec-tabs {
    flex-wrap: wrap;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .connectivity-grid {
    gap: var(--space-md);
  }

  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sustainability-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-content {
    padding-right: 0;
  }

  .gallery-nav.prev,
  .gallery-nav.next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .enquiry-form-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-form-grid input {
    grid-column: 1 / -1;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.3rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .navbar {
    padding: 0 12px;
  }

  .container {
    padding: 0 12px;
  }

  .logo-image {
    height: 45px !important;
  }

  .config-tabs {
    gap: var(--space-sm);
  }

  .config-tab {
    min-width: auto;
    padding: var(--space-md);
  }

  .tab-title {
    font-size: 1rem;
  }

  .tab-size,
  .tab-price {
    font-size: 0.85rem;
  }
}
