/* ============================================================
   SINGLE-PAGE LUXURY REAL ESTATE WEBSITE — GLOBAL STYLES
   FONT: Jost (Google Fonts)
   PALETTE:
   - Campaign Red: #B7192E
   - Champagne Gold: #C7AA78 / #CBB184
   - Near Black: #080607
   - Dark Secondary: #0C090A
   - Warm Ivory: #F7F4EE
   - Off White: #F8F6F1
   - Text Dark: #151515
   - Muted: #8D8984
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --font-main: 'Jost', sans-serif;
  --color-red: #c89b4b;
  --color-red-hover: #b5893a;
  --color-gold: #C7AA78;
  --color-gold-light: #CBB184;
  --color-black: #080607;
  --color-dark-secondary: #0C090A;
  --color-ivory: #F7F4EE;
  --color-offwhite: #F8F6F1;
  --color-white: #FFFFFF;
  --color-text-main: #151515;
  --color-muted: #8D8984;
  --border-dark-panel: rgba(255, 255, 255, 0.18);
  --border-light-panel: rgba(0, 0, 0, 0.12);
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-white);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--color-text-main);
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

p {
  color: #444;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

/* Custom Selection */
::selection {
  background: var(--color-red);
  color: var(--color-white);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-black);
}
::-webkit-scrollbar-thumb {
  background: var(--color-red);
  border-radius: 2px;
}

/* ============================================================
   01. TOP RERA INFORMATION STRIP
   ============================================================ */
.top-rera-strip {
  background-color: var(--color-black);
  color: rgba(255, 255, 255, 0.85);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 15px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  overflow-x: auto;
}

.top-rera-strip span {
  display: inline-block;
  margin: 0 4px;
}

.top-rera-strip a {
  color: var(--color-gold);
  text-decoration: underline;
}

/* ============================================================
   02. MAIN HEADER & NAVIGATION
   ============================================================ */
.main-header {
  background-color: var(--color-white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1040;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.navbar-brand-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-black);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand-logo span.badge-logo {
  color: var(--color-red);
  font-size: 24px;
  line-height: 1;
}

.nav-link-custom {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-main);
  padding: 8px 14px !important;
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--color-red);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background-color: var(--color-red);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  transform: scaleX(1);
}

.header-phone-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-black);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
}

.header-phone-btn:hover {
  color: var(--color-red);
}

.btn-luxury-red {
  background-color: var(--color-red);
  color: var(--color-white) !important;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 1px;
  border: 1px solid var(--color-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-luxury-red:hover {
  background-color: var(--color-red-hover);
  border-color: var(--color-red-hover);
  box-shadow: 0 4px 15px rgba(10, 83, 160, 0.3);
  transform: translateY(-1px);
}

.btn-luxury-outline {
  background-color: transparent;
  color: var(--color-white);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 1px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-luxury-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-luxury-outline.text-dark {
  color: #000000 !important;
  border: 1.5px solid #000000 !important;
}

.btn-luxury-outline.text-dark i {
  color: #000000 !important;
}

.btn-luxury-outline.text-dark:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

.btn-luxury-outline.text-dark:hover i {
  color: #ffffff !important;
}

/* ============================================================
   03. HOMEPAGE HERO (FIRST VIEWPORT REFERENCE)
   ============================================================ */
.hero-section {
  position: relative;
  background-color: var(--color-black);
  min-height: calc(100vh - 85px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-left-wrapper {
  position: relative;
  flex: 0 0 79%;
  max-width: 79%;
  background-image: linear-gradient(to right, rgba(5, 5, 8, 0.82) 0%, rgba(5, 5, 8, 0.55) 60%, rgba(5, 5, 8, 0.88) 100%), url('../assets/images/banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
}

.hero-badge-rent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-red);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 1px;
  margin-bottom: 24px;
  align-self: flex-start;
  box-shadow: 0 0 12px rgba(10, 83, 160, 0.6);
  animation: pulseBadge 2.2s infinite ease-in-out;
}

@keyframes pulseBadge {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 83, 160, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(10, 83, 160, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 83, 160, 0);
  }
}

.hero-h1-heading {
  font-size: clamp(40px, 4.2vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -1.8px;
  color: var(--color-white);
  margin-bottom: 18px;
  max-width: 820px;
}

.hero-h1-heading span.highlight-gold {
  color: var(--color-gold-light);
  font-weight: 800;
}

.hero-sub-text {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  letter-spacing: 0.2px;
}

.hero-stats-strip {
  display: flex;
  align-items: center;
  background: rgba(12, 9, 10, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-dark-panel);
  padding: 16px 24px;
  margin-bottom: 35px;
  max-width: 460px;
  border-radius: 1px;
}

.hero-stat-item {
  flex: 1;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item:last-child {
  border-right: none;
}

.hero-stat-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
}

.hero-stat-lbl {
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold-light);
  margin-top: 4px;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Right Form Panel (~21% Desktop Width) */
.hero-right-panel {
  flex: 0 0 21%;
  max-width: 21%;
  background-color: var(--color-dark-secondary);
  border-left: 1px solid var(--border-dark-panel);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
}

.hero-panel-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-red);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-panel-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 8px;
}

.hero-panel-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  margin-bottom: 15px;
}

.hero-countdown-strip {
  background-color: var(--color-red);
  color: var(--color-white);
  font-size: 10.5px;
  font-weight: 600;
  padding: 8px 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1px;
}

.hero-countdown-strip .timer-digits {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
}

.hero-form-group {
  margin-bottom: 12px;
}

.hero-form-label {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold-light);
  margin-bottom: 5px;
  display: block;
}

.hero-form-input, .hero-form-select {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 1px;
  font-family: var(--font-main);
  transition: all 0.25s ease;
}

.hero-form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.hero-form-input:focus, .hero-form-select:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(199, 170, 120, 0.2);
  color: var(--color-white);
}

.hero-form-select option {
  background-color: var(--color-black);
  color: var(--color-white);
}

.hero-form-microcopy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 10px;
}

/* ============================================================
   04. DESKTOP BOTTOM STICKY BAR
   ============================================================ */
.desktop-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  display: flex;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.desktop-sticky-left {
  flex: 1;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-dark-panel);
}

.desktop-sticky-right {
  flex: 0 0 250px;
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 12px 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.desktop-sticky-right:hover {
  background-color: var(--color-red-hover);
}

/* ============================================================
   05. PROJECT OVERVIEW (WARM IVORY + 6-COLUMN FACTS STRIP)
   ============================================================ */
.section-overview {
  background-color: var(--color-ivory);
  padding: 100px 0 100px 0;
}

.eyebrow-red {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-red);
  text-align: center;
  margin-bottom: 8px;
}

.heading-overview {
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 800;
  color: var(--color-text-main);
  text-align: center;
  margin-bottom: 30px;
}

.overview-body-container {
  max-width: 100%;
  margin: 0 auto 40px auto;
}

.overview-body-text {
  font-size: 16.5px;
  line-height: 1.75;
  color: #333;
  text-align: left;
  margin-bottom: 20px;
}

.red-accent-line {
  width: 45px;
  height: 2.5px;
  background-color: var(--color-red);
  margin-top: 20px;
}

/* Horizontal Continuous 6-Column Facts Strip */
.facts-strip-container {
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 50px;
  margin-bottom: 80px;
}

.fact-col-item {
  padding: 32px 18px 38px 18px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fact-col-item:last-child {
  border-right: none;
}

.fact-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.fact-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1.2;
}

.fact-sub {
  font-size: 11px;
  color: #666;
  font-weight: 400;
  margin-top: 2px;
}

/* ============================================================
   06. PROJECT HIGHLIGHTS
   ============================================================ */
.section-highlights {
  padding: 85px 0;
  background-color: var(--color-white);
}

.highlight-card {
  padding: 30px 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--color-red);
  height: 100%;
  transition: all 0.3s ease;
  background: var(--color-white);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.highlight-number {
  font-size: 38px;
  font-weight: 800;
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 8px;
}

.highlight-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 6px;
}

.highlight-desc {
  font-size: 13.5px;
  color: #666;
  margin: 0;
}

/* ============================================================
   07. IMAGE GALLERY & LIGHTBOX
   ============================================================ */
.section-gallery {
  padding: 85px 0;
  background-color: var(--color-offwhite);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--color-text-main);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.gallery-item-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  cursor: pointer;
  background: var(--color-black);
  border-radius: 1px;
}

.gallery-item-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
  display: block;
}

.gallery-item-wrapper:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.gallery-item-overlay {
  display: none !important;
}

.gallery-item-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.gallery-item-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(8, 6, 7, 0.95);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content-box {
  position: relative;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.lightbox-img-element {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--color-white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  font-size: 36px;
  background: rgba(255,255,255,0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
}

.lightbox-nav-btn:hover {
  background: var(--color-red);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

.lightbox-caption {
  color: var(--color-white);
  font-size: 14px;
  margin-top: 15px;
}

/* ============================================================
   08. CINEMATIC LIFESTYLE
   ============================================================ */
.section-lifestyle {
  position: relative;
  background-image: linear-gradient(rgba(8, 6, 7, 0.7), rgba(8, 6, 7, 0.7)), url('../assets/images/gallery_pool.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 0;
  color: var(--color-white);
  text-align: center;
}

.lifestyle-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
}

.lifestyle-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 30px auto;
}

/* ============================================================
   09. RESIDENCES & FLOOR PLANS
   ============================================================ */
.section-floorplans {
  padding: 85px 0;
  background-color: var(--color-white);
}

.floorplan-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  border-bottom: 2px solid rgba(0,0,0,0.06);
  padding-bottom: 15px;
}

.floorplan-tab-btn {
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-muted);
  padding: 8px 24px;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
}

.floorplan-tab-btn.active {
  color: var(--color-red);
}

.floorplan-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--color-red);
}

.floorplan-card {
  background-color: var(--color-offwhite);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.floorplan-img-box {
  flex: 1;
  background: #fff;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}

.floorplan-img-box svg, .floorplan-img-box img {
  max-width: 100%;
  height: auto;
}

.floorplan-details-box {
  flex: 1;
}

.floorplan-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 25px 0;
  background: #fff;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.spec-item-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
}

.spec-item-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text-main);
}

/* ============================================================
   10. AMENITIES (CLEAN ICON + NAME GRID - REFERENCE MATCH)
   ============================================================ */
.section-amenities {
  padding: 90px 0;
  background-color: var(--color-ivory);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 35px 20px;
  margin-top: 50px;
}

.amenity-item-clean {
  text-align: center;
  padding: 15px 10px;
  transition: transform 0.25s ease;
}

.amenity-item-clean:hover {
  transform: translateY(-4px);
}

.amenity-icon-svg {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
}

.amenity-icon-svg svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-black);
  stroke-width: 1.5;
  fill: none;
}

.amenity-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-main);
  line-height: 1.3;
}

/* ============================================================
   11. MASTER PLAN
   ============================================================ */
.section-masterplan {
  padding: 85px 0;
  background-color: var(--color-white);
}

.masterplan-container {
  position: relative;
  background: var(--color-offwhite);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

.masterplan-img-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.masterplan-hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: var(--color-red);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(183, 25, 46, 0.25);
  transition: transform 0.25s ease;
}

.masterplan-hotspot:hover {
  transform: scale(1.25);
  background-color: var(--color-black);
}

/* ============================================================
   12. EMI CALCULATOR (STRUCTURAL & FUNCTIONAL SYSTEM)
   ============================================================ */
.section-emi {
  padding: 90px 0;
  background-color: var(--color-offwhite);
}

.emi-card-wrapper {
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-wrap: wrap;
}

.emi-inputs-left {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 45px 40px;
}

.emi-results-right {
  flex: 0 0 40%;
  max-width: 40%;
  background-color: var(--color-dark-secondary);
  color: var(--color-white);
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.emi-input-group {
  margin-bottom: 28px;
}

.emi-field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.emi-field-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
}

.emi-field-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-red);
}

.form-range-custom {
  width: 100%;
  accent-color: var(--color-red);
  cursor: pointer;
}

.emi-range-limits {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: #999;
  margin-top: 4px;
}

/* EMI Results Display */
.emi-monthly-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.emi-monthly-amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 25px;
}

.emi-breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.emi-breakdown-lbl {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.emi-breakdown-val {
  font-weight: 700;
  color: var(--color-white);
}

.emi-progress-bar-container {
  margin: 25px 0;
}

.emi-progress-bar-track {
  height: 10px;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  border-radius: 2px;
  overflow: hidden;
}

.emi-bar-principal {
  background-color: var(--color-gold);
  height: 100%;
  transition: width 0.3s ease;
}

.emi-bar-interest {
  background-color: var(--color-red);
  height: 100%;
  transition: width 0.3s ease;
}

.emi-bar-legend {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-top: 8px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot-gold { width: 8px; height: 8px; background: var(--color-gold); border-radius: 50%; }
.dot-red { width: 8px; height: 8px; background: var(--color-red); border-radius: 50%; }

.emi-disclaimer {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 20px;
  line-height: 1.4;
}

/* ============================================================
   13. LOCATION ADVANTAGE
   ============================================================ */
.section-location {
  padding: 90px 0;
  background-color: var(--color-white);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.location-card {
  padding: 24px;
  background: var(--color-ivory);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location-time-badge {
  background: var(--color-red);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 1px;
  white-space: nowrap;
}

.location-place-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 2px;
}

.location-place-sub {
  font-size: 12.5px;
  color: #666;
  margin: 0;
}

/* ============================================================
   14. ABOUT THE DEVELOPER
   ============================================================ */
.section-developer {
  padding: 90px 0;
  background-color: var(--color-ivory);
}

.developer-card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 45px;
}

.developer-stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 25px 35px;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.developer-stats-row > div {
  flex: 1 1 180px;
  min-width: 160px;
  text-align: center;
}

.dev-stat-val {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-red);
  line-height: 1.2;
  margin-bottom: 4px;
}

.dev-stat-lbl {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
}

/* ============================================================
   15. ENQUIRY CTA & FOOTER
   ============================================================ */
.section-cta-banner {
  background-color: var(--color-dark-secondary);
  color: var(--color-white);
  padding: 90px 0;
  text-align: center;
  border-top: 3px solid var(--color-red);
}

.section-cta-banner .btn-luxury-red {
  margin-top: 15px;
}

.footer-main {
  background-color: var(--color-black);
  color: rgba(255, 255, 255, 0.7);
  padding: 25px 0;
  font-size: 13px;
  border-top: 1px solid var(--border-dark-panel);
}

.footer-title {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links-list a:hover {
  color: var(--color-gold);
}

.footer-bottom-bar {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
  font-size: 11.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ============================================================
   16. MOBILE STICKY ACTION BAR (< 768px)
   ============================================================ */
.mobile-sticky-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1050;
  background-color: #0b090a;
  border-top: 1px solid var(--border-dark-panel);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  box-sizing: border-box !important;
  padding-bottom: max(12px, env(safe-area-inset-bottom, 12px)) !important;
}

.mobile-action-item {
  flex: 1 1 33.333% !important;
  width: 33.333% !important;
  max-width: 33.333% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  text-align: center;
  padding: 10px 4px 12px 4px !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.mobile-action-item:hover,
.mobile-action-item:focus,
.mobile-action-item:active,
.mobile-action-item:visited {
  color: #ffffff !important;
  text-decoration: none !important;
}

.mobile-action-item i {
  font-size: 16px !important;
  line-height: 1 !important;
  display: block !important;
  margin-bottom: 2px !important;
}

.mobile-action-item:last-child {
  border-right: none;
  background-color: var(--color-red);
}

/* ============================================================
   17. BESPOKE LUXURY MODAL & FORM STYLING (WHITE THEME)
   ============================================================ */
.modal-luxury-content {
  background-color: var(--color-white) !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
  border-radius: 2px !important;
  color: var(--color-text-main) !important;
}

.modal-luxury-header {
  background-color: var(--color-white) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  padding: 20px 25px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.form-error-msg:empty,
#modalFormError:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.modal-luxury-title {
  font-size: 16px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: var(--color-text-main) !important;
  margin: 0 !important;
}

.modal-subtitle {
  font-size: 13.5px;
  color: #555555;
  line-height: 1.55;
  margin-bottom: 22px;
}

.form-label-luxury {
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  color: var(--color-red) !important;
  margin-bottom: 6px !important;
  display: block !important;
}

.form-control-luxury {
  width: 100% !important;
  background-color: #F8F9FA !important;
  border: 1px solid #D1D5DB !important;
  color: var(--color-text-main) !important;
  font-size: 13.5px !important;
  font-family: var(--font-main) !important;
  padding: 12px 14px !important;
  border-radius: 1px !important;
  transition: all 0.25s ease !important;
}

.form-control-luxury::placeholder {
  color: #888888 !important;
  font-size: 13px !important;
}

.form-control-luxury:focus {
  background-color: var(--color-white) !important;
  border-color: var(--color-red) !important;
  outline: none !important;
  box-shadow: 0 0 8px rgba(183, 25, 46, 0.2) !important;
  color: var(--color-text-main) !important;
}

/* Captcha Styling - Light Theme */
.captcha-box-luxury {
  background-color: var(--color-ivory) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-left: 3px solid var(--color-red) !important;
  padding: 16px 20px !important;
  margin-bottom: 24px !important;
}

.captcha-row-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 15px !important;
}

.captcha-question-text {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--color-red) !important;
  letter-spacing: 1px !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.captcha-refresh-btn {
  background: transparent !important;
  border: none !important;
  color: var(--color-red) !important;
  font-size: 18px !important;
  cursor: pointer !important;
  padding: 2px 4px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.4s ease, color 0.25s ease !important;
}

.captcha-refresh-btn:hover {
  color: var(--color-text-main) !important;
  transform: rotate(180deg) !important;
}

.captcha-input-field {
  max-width: 150px !important;
  text-align: center !important;
  font-weight: 700 !important;
  background-color: var(--color-white) !important;
}

/* Remove number input spin buttons */
.captcha-input-field::-webkit-outer-spin-button,
.captcha-input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.captcha-input-field[type=number] {
  -moz-appearance: textfield;
}

/* ============================================================
   19. FAQ SECTION (REFERENCE SCREENSHOT MATCH)
   ============================================================ */
.section-faq {
  padding: 90px 0;
  background-color: var(--color-white);
}

.faq-container {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 22px 0;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--color-text-main);
  margin: 0;
  transition: color 0.25s ease;
}

.faq-header:hover .faq-question-title {
  color: var(--color-red);
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #EFECE6;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  background-color: var(--color-red);
  color: var(--color-white);
}

.faq-body-content {
  display: none;
  padding-top: 15px;
  padding-right: 40px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
}

.faq-item.active .faq-body-content {
  display: block;
}
/* ============================================================
   21. BESPOKE MOBILE OFFCANVAS NAV MENU (WHITE LUXURY DESIGN)
   ============================================================ */
.offcanvas-luxury {
  background-color: var(--color-white) !important;
  border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: var(--color-text-main) !important;
  width: 320px !important;
  max-width: 85vw !important;
}

.offcanvas-luxury-header {
  background-color: var(--color-white) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  padding: 18px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.offcanvas-luxury-title {
  font-size: 18px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  color: var(--color-text-main) !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

.offcanvas-close-btn {
  background: transparent !important;
  border: none !important;
  color: var(--color-text-main) !important;
  font-size: 28px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  padding: 4px 8px !important;
  transition: color 0.25s ease !important;
}

.offcanvas-close-btn:hover {
  color: var(--color-red) !important;
}

.mobile-nav-link {
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  color: var(--color-text-main) !important;
  padding: 12px 0 !important;
  transition: all 0.25s ease !important;
}

.mobile-nav-link:hover {
  color: var(--color-red) !important;
  padding-left: 6px !important;
}

/* ============================================================
   22. PROJECT PRICING TABLE (CENTERED HEADINGS & CARD SPACING)
   ============================================================ */
.section-pricing {
  padding: 90px 0;
  background-color: var(--color-white);
}

.pricing-subtext {
  font-size: 15px;
  color: var(--color-muted);
  max-width: 680px;
  margin: 0 auto 45px auto;
  text-align: center;
  line-height: 1.6;
}

.pricing-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  border: none;
  box-shadow: none;
}

.pricing-card-col {
  background-color: var(--color-ivory);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  padding: 0 0 25px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.pricing-card-header {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 24px 20px;
}

.pricing-type-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold-light);
  margin-bottom: 4px;
}

.pricing-title-text {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
}

.pricing-specs-list {
  padding: 20px;
  flex: 1;
}

.pricing-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 13.5px;
}

.pricing-spec-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
}

.pricing-spec-val {
  font-weight: 700;
  color: var(--color-text-main);
}

.pricing-price-highlight {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-red);
}

.pricing-card-actions {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-download-brochure {
  background-color: #EFECE3;
  color: var(--color-text-main);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-download-brochure:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* ============================================================
   24. WHAT'S NEARBY & LANDMARKS SECTION (STANDALONE SECTION)
   ============================================================ */
.section-nearby {
  padding: 90px 0;
  background-color: var(--color-white) !important;
}

.nearby-map-container {
  border-radius: 8px;
  overflow: hidden;
  height: 420px;
  margin-bottom: 45px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.nearby-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.landmarks-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 24px;
}

.landmarks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.landmark-category-card {
  background-color: var(--color-white);
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landmark-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.landmark-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.landmark-icon-box {
  width: 44px;
  height: 44px;
  background-color: #FBF9F5;
  border: 1px solid #EFECE3;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-red);
  flex-shrink: 0;
}

.landmark-category-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-main);
  margin: 0;
}

.landmark-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landmark-item-point {
  font-size: 14px;
  color: #555555;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.landmark-check-icon {
  color: #198754;
  font-size: 15px;
  font-weight: bold;
}

.landmark-dist-bold {
  font-weight: 700;
  color: var(--color-text-main);
}

.landmark-more-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-red);
  text-decoration: none;
  margin-top: 6px;
  display: inline-block;
  cursor: pointer;
}

/* ============================================================
   26. OPEN ENQUIRY FORM SECTION (DEDICATED SECTION)
   ============================================================ */
.section-open-form {
  padding: 90px 0;
  background-color: var(--color-ivory);
}

.open-form-wrapper-card {
  max-width: 850px;
  margin: 0 auto;
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  padding: 45px 40px;
}

/* ============================================================
   27. THANK YOU PAGE STYLING SYSTEM
   ============================================================ */
.thankyou-page-wrapper {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-ivory);
  padding: 70px 20px;
}

.thankyou-card {
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--color-red);
  max-width: 680px;
  width: 100%;
  padding: 50px 40px;
  text-align: center;
  border-radius: 2px;
}

.thankyou-icon-badge {
  width: 80px;
  height: 80px;
  background-color: rgba(10, 83, 160, 0.08);
  color: var(--color-red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin-bottom: 24px;
  animation: pulseCheck 2s infinite ease-in-out;
}

@keyframes pulseCheck {
  0% { box-shadow: 0 0 0 0 rgba(10, 83, 160, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(10, 83, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(10, 83, 160, 0); }
}

.thankyou-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-red);
  margin-bottom: 8px;
}

.thankyou-heading {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 16px;
  line-height: 1.15;
}

.thankyou-body-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.thankyou-details-box {
  background-color: var(--color-ivory);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px 24px;
  margin-bottom: 35px;
  text-align: left;
  border-radius: 2px;
}

.thankyou-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  font-size: 13.5px;
}

.thankyou-detail-row:last-child {
  border-bottom: none;
}

.thankyou-detail-lbl {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
}

.thankyou-detail-val {
  font-weight: 700;
  color: var(--color-text-main);
}

.thankyou-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-thankyou-outline {
  border: 1px solid var(--color-text-main);
  color: var(--color-text-main);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 24px;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-thankyou-outline:hover {
  background-color: var(--color-text-main);
  color: var(--color-white);
}

/* ============================================================
   25. RESPONSIVE BREAKPOINTS & MOBILE TYPOGRAPHY RECALIBRATION
   ============================================================ */
@media (max-width: 1200px) {
  .hero-left-wrapper { flex: 0 0 75%; max-width: 75%; }
  .hero-right-panel { flex: 0 0 25%; max-width: 25%; }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  .facts-strip-container { grid-template-columns: repeat(3, 1fr); }
  .fact-col-item:nth-child(3) { border-right: none; }
  .fact-col-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
  .emi-card-wrapper { flex-direction: column; }
  .emi-inputs-left, .emi-results-right { flex: 0 0 100% !important; max-width: 100% !important; width: 100% !important; }
}

@media (max-width: 991px) {
  .hero-section { flex-direction: column; }
  .hero-mobile-image-banner {
    display: block !important;
    width: 100% !important;
    height: 60vw !important;
    min-height: 240px !important;
    max-height: 380px !important;
    background-image: url('../assets/images/banner.jpg') !important;
    background-size: cover !important;
    background-position: center top !important;
    border-bottom: 1px solid var(--border-dark-panel) !important;
  }
  .hero-left-wrapper {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    background-image: none !important;
    background-color: var(--color-black) !important;
    min-height: auto !important;
    padding: 30px 20px 25px 20px !important;
  }
  .hero-right-panel { flex: 0 0 100%; max-width: 100%; border-left: none; border-top: 1px solid var(--border-dark-panel); padding: 40px 25px; }
  .desktop-sticky-bar { display: none; }
  .mobile-sticky-action-bar { display: flex; }
  body { padding-bottom: calc(65px + env(safe-area-inset-bottom, 0px)); }
  .emi-inputs-left, .emi-results-right { flex: 0 0 100%; max-width: 100%; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .floorplan-card { flex-direction: column; gap: 20px; }

  /* Pricing Tablet Layout (2 Columns) */
  .pricing-grid-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .pricing-card-col {
    border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  }
  .pricing-card-col:nth-child(2n) {
    border-right: none !important;
  }
}

@media (max-width: 767px) {
  /* Hero Section Mobile Refinement */
  .hero-left-wrapper {
    padding: 24px 16px 24px 16px !important;
    min-height: auto !important;
    background-image: none !important;
    background-color: var(--color-black) !important;
  }

  .hero-badge-rent {
    font-size: 9.5px !important;
    letter-spacing: 0.5px !important;
    padding: 6px 10px !important;
    margin-bottom: 14px !important;
    line-height: 1.35 !important;
    max-width: 100% !important;
    display: inline-block !important;
  }

  .hero-h1-heading {
    font-size: clamp(26px, 6.8vw, 32px) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.8px !important;
    margin-bottom: 10px !important;
  }

  .hero-sub-text {
    font-size: 12.5px !important;
    line-height: 1.4 !important;
    margin-bottom: 18px !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  /* Stats Strip: Clean 3-Column Row */
  .hero-stats-strip {
    display: flex !important;
    flex-direction: row !important;
    padding: 10px 6px !important;
    margin-bottom: 16px !important;
    max-width: 100% !important;
  }

  .hero-stat-item {
    padding: 0 3px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-bottom: none !important;
    text-align: center !important;
  }

  .hero-stat-item:last-child {
    border-right: none !important;
  }

  .hero-stat-val {
    font-size: 16px !important;
    line-height: 1.1 !important;
  }

  .hero-stat-lbl {
    font-size: 7.5px !important;
    letter-spacing: 0.5px !important;
    margin-top: 2px !important;
  }

  /* CTAs Single Horizontal Line on Mobile */
  .hero-cta-buttons {
    flex-direction: row !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .hero-cta-buttons .btn {
    flex: 1 !important;
    width: 50% !important;
    padding: 10px 4px !important;
    font-size: 9.5px !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Pricing Section Mobile Clean 1-Column Stack */
  .section-pricing {
    padding: 50px 0 !important;
  }

  .pricing-subtext {
    font-size: 13.5px !important;
    margin-bottom: 25px !important;
  }

  .pricing-grid-container {
    grid-template-columns: 1fr !important;
    border: none !important;
    box-shadow: none !important;
    gap: 20px !important;
  }

  .pricing-card-col {
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 2px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    margin-bottom: 0 !important;
  }

  .pricing-card-header {
    padding: 18px 16px !important;
  }

  .pricing-title-text {
    font-size: 18px !important;
  }

  .pricing-specs-list {
    padding: 16px !important;
  }

  .pricing-spec-row {
    padding: 10px 0 !important;
    font-size: 13px !important;
  }

  .pricing-spec-lbl {
    font-size: 10px !important;
    white-space: nowrap !important;
  }

  .pricing-spec-val {
    white-space: nowrap !important;
  }

  .pricing-price-highlight {
    font-size: 17px !important;
    white-space: nowrap !important;
  }

  .pricing-card-actions {
    padding: 0 16px 20px 16px !important;
  }

  .pricing-card-actions .btn {
    white-space: nowrap !important;
    padding: 12px 10px !important;
    font-size: 11px !important;
  }

  /* What's Nearby Mobile Rules */
  .nearby-wrapper-card {
    padding: 24px 16px !important;
  }
  .nearby-map-container {
    height: 260px !important;
    margin-bottom: 25px !important;
  }
  .landmarks-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  /* Overview & Facts Strip */
  .section-overview { padding: 60px 0 60px 0; }
  .heading-overview { font-size: 26px !important; margin-bottom: 20px !important; }
  .overview-body-text { font-size: 14.5px !important; line-height: 1.65 !important; }

  .facts-strip-container { grid-template-columns: repeat(2, 1fr); }
  .fact-col-item:nth-child(2n) { border-right: none; }
  .fact-col-item { padding: 24px 12px 28px 12px !important; }
  .fact-val { font-size: 16px; }

  /* EMI Calculator Mobile */
  .emi-inputs-left, .emi-results-right { padding: 30px 20px; }
  .emi-monthly-amount { font-size: 32px !important; }

  /* Lifestyle Section Mobile */
  .section-lifestyle {
    background-attachment: scroll !important;
    padding: 90px 20px !important;
  }

  /* Amenities & Location Grid */
  .amenities-grid { grid-template-columns: repeat(3, 1fr); gap: 25px 12px; }
  .amenity-name { font-size: 13px; }
  .amenity-icon-svg svg { width: 40px; height: 40px; }
  .location-grid { grid-template-columns: 1fr; }
  .lightbox-prev, .lightbox-next { display: none; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-val { font-size: 15px !important; }
}

/* ============================================================
   WHY INVEST SECTION
   ============================================================ */
.section-why-invest {
  padding: 85px 0;
  background-color: var(--color-offwhite);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.invest-card {
  background: var(--color-white);
  padding: 30px 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--color-red);
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.invest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.invest-card-icon {
  font-size: 28px;
  color: var(--color-red);
  margin-bottom: 15px;
}

.invest-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 10px;
}

.invest-card-text {
  font-size: 13.5px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.invest-eoi-banner {
  background: var(--color-white);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
