/* ═══════════════════════════════════════════════════════════
   BRIGADE VANAGARAM — LUXURY LIGHT THEME STYLESHEET
   Clean Pearl & White Foundations · Warm Champagne Gold & Bronze Accents
   Typography: Outfit (Headings) & Inter (Body & UI)
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Core Light Palette */
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-card-border: rgba(15, 23, 42, 0.08);
  --bg-card-border-hover: rgba(168, 131, 76, 0.5);
  --bg-glass: rgba(255, 255, 255, 0.92);
  --bg-glass-blur: blur(14px);

  /* Gold & Warm Bronze Accents */
  --gold-primary: #a8834c;
  --gold-light: #c5a880;
  --gold-dark: #87622c;
  --gold-gradient: linear-gradient(135deg, #c5a880 0%, #a8834c 50%, #87622c 100%);
  --gold-gradient-hover: linear-gradient(135deg, #d4b893 0%, #b5925e 50%, #946f38 100%);
  --gold-glow: rgba(168, 131, 76, 0.22);
  --gold-tint: rgba(168, 131, 76, 0.08);

  /* Typography Colors */
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-gold: #936b31;

  /* UI & Accents */
  --accent-green: #25d366;
  --accent-red: #ef4444;
  --input-bg: #ffffff;
  --input-border: #cbd5e1;
  --input-focus: #a8834c;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.1);
  --shadow-hover: 0 20px 48px rgba(168, 131, 76, 0.16);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Transitions */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ─── Typography & Section Headers ────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

.text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section {
  padding: 96px 0;
  position: relative;
  background-color: var(--bg-primary);
}

.section--alt {
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: var(--gold-tint);
  border: 1px solid rgba(168, 131, 76, 0.25);
  border-radius: var(--radius-pill);
}

.section-title {
  font-size: 2.45rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
}

/* ─── Navigation Header ───────────────────────────────────── */
.bg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: var(--bg-glass-blur);
  -webkit-backdrop-filter: var(--bg-glass-blur);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.bg-header.scrolled {
  background: #ffffff;
  border-bottom-color: rgba(168, 131, 76, 0.3);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.nav-brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 2px;
  position: relative;
}

.nav-link:hover, .nav-link:focus {
  color: var(--gold-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: 0 4px 18px var(--gold-glow);
}

.btn--primary:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 131, 76, 0.4);
}

.btn--outline {
  background: #ffffff;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold-primary);
  box-shadow: var(--shadow-sm);
}

.btn--outline:hover {
  background: var(--gold-tint);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* ─── Hero Section ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
  background-color: #f8fafc;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.85) 0%,
    rgba(248, 250, 252, 0.72) 40%,
    rgba(248, 250, 252, 0.95) 90%,
    var(--bg-primary) 100%
  );
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 660px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(168, 131, 76, 0.3);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero-tagline {
  font-size: 1.18rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-highlights-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 34px;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid rgba(168, 131, 76, 0.25);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hero-highlight-item {
  display: flex;
  flex-direction: column;
}

.hero-hl-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hero-hl-value {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.hero-price-strip {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-price-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-price-amount {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold-dark);
  font-family: var(--font-heading);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ─── Hero Form Card ──────────────────────────────────────── */
.hero-form-card {
  background: #ffffff;
  border: 1px solid rgba(168, 131, 76, 0.25);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}

.form-card-head {
  text-align: center;
  margin-bottom: 24px;
}

.form-card-title {
  font-size: 1.45rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ─── Shared Enquiry Form Styles ─────────────────────────── */
.bg-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bg-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.bg-form__label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
}

.bg-form__input {
  width: 100%;
  padding: 12px 16px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.bg-form__input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(168, 131, 76, 0.2);
}

.bg-form__input.is-error {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.bg-form__phone-row {
  display: flex;
  align-items: stretch;
}

.bg-form__phone-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: #f1f5f9;
  border: 1px solid var(--input-border);
  border-right: none;
  border-top-left-radius: var(--radius-sm);
  border-bottom-left-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.92rem;
}

.bg-form__phone-row .bg-form__input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.bg-form__error {
  font-size: 0.78rem;
  color: var(--accent-red);
  min-height: 16px;
  line-height: 1.2;
}

/* Config Option Radio Chips */
.bg-config-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.bg-config-option {
  position: relative;
  cursor: pointer;
}

.bg-config-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bg-config-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  transition: var(--transition);
}

.bg-config-option:hover .bg-config-chip {
  border-color: var(--gold-light);
  color: var(--gold-dark);
}

.bg-config-option input:checked + .bg-config-chip {
  background: var(--gold-tint);
  border-color: var(--gold-primary);
  color: var(--gold-dark);
  box-shadow: 0 0 10px rgba(168, 131, 76, 0.2);
}

.bg-form__submit {
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}

.bg-form__submit.loading .btn-text {
  visibility: hidden;
}

.bg-form__submit.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  margin-left: -11px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.bg-form__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.bg-form__privacy svg {
  width: 13px;
  height: 13px;
  fill: var(--gold-primary);
  flex-shrink: 0;
}

/* ─── Overview Section ────────────────────────────────────── */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.overview-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bg-card-border);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

.overview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.overview-media:hover .overview-img {
  transform: scale(1.03);
}

.overview-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(168, 131, 76, 0.35);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.overview-badge-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-dark);
  font-family: var(--font-heading);
}

.overview-badge-lbl {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overview-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.overview-points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 34px;
}

.overview-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.point-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 1px solid rgba(168, 131, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.point-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* ─── Highlights Section ──────────────────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.highlight-card {
  background: #ffffff;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}

.highlight-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.highlight-card:hover::before {
  opacity: 1;
}

.hl-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--gold-tint);
  border: 1px solid rgba(168, 131, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 22px;
}

.hl-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.hl-card-title {
  font-size: 1.24rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.hl-card-text {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Pricing & Typology Matrix ───────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.pricing-card.featured {
  border-color: var(--gold-primary);
  box-shadow: 0 12px 36px rgba(168, 131, 76, 0.15);
  background: #ffffff;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold-gradient);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-hover);
}

.pricing-typology {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pricing-area {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-cost {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.price-val {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gold-dark);
  font-family: var(--font-heading);
}

.price-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-feature svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-primary);
  flex-shrink: 0;
}

/* ─── Amenities Section (Photo Cards) ─────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amenity-card {
  background: #ffffff;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.amenity-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-hover);
}

.amenity-media {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
}

.amenity-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-card-img {
  transform: scale(1.08);
}

.amenity-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.amenity-title {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.amenity-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Floor Plans Section ─────────────────────────────────── */
.floor-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.floor-tab-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--text-secondary);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.floor-tab-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

.floor-tab-btn.active {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 18px var(--gold-glow);
}

.floor-panel {
  display: none;
}

.floor-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.floor-display-card {
  background: #ffffff;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.floor-media-preview {
  position: relative;
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  cursor: pointer;
}

.floor-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  filter: blur(4px);
  transition: var(--transition);
}

.floor-media-preview:hover .floor-img {
  filter: blur(5px);
  transform: scale(1.02);
}

.floor-overlay-prompt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  transition: var(--transition);
}

.floor-overlay-prompt svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold-light);
}

.floor-specs-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.floor-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}

.spec-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
}

.spec-lbl {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.spec-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: var(--font-heading);
}

/* ─── Gallery Section ─────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--bg-card-border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-hover-overlay {
  opacity: 1;
}

.gallery-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

/* ─── Location & Connectivity Section ─────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.location-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bg-card-border);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

.location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.location-media:hover .location-img {
  transform: scale(1.02);
}

.connectivity-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.connectivity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.connectivity-item:hover {
  border-color: var(--gold-primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.conn-dest {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}

.conn-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 1px solid rgba(168, 131, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.conn-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.conn-dist {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: var(--font-heading);
}

/* ─── Developer Credibility Section ───────────────────────── */
.developer-card {
  background: #ffffff;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.dev-title {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.dev-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.dev-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.dev-stat-val {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gold-dark);
  font-family: var(--font-heading);
}

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

.dev-quote-box {
  background: var(--bg-secondary);
  border: 1px solid rgba(168, 131, 76, 0.25);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
}

.dev-quote-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.dev-badge-brand {
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-size: 0.88rem;
}

/* ─── Bottom Contact / Booking Section ────────────────────── */
.booking-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #ffffff 100%);
}

.booking-wrapper {
  background: #ffffff;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.booking-info h2 {
  font-size: 2.3rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.booking-info p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.booking-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-row-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-row-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 1px solid rgba(168, 131, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.contact-row-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-row-text h4 {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-row-text a, .contact-row-text span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ─── Footer (Light Luxury Theme) ─────────────────────────── */
.bg-footer {
  background: #f8fafc;
  padding: 56px 0 100px;
  border-top: 1px solid #e2e8f0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #e2e8f0;
}

.footer-brand img {
  height: 48px;
  width: auto;
  filter: none;
}

.footer-rera-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  color: var(--text-secondary);
}

.rera-tag {
  color: var(--gold-dark);
  font-weight: 700;
}

.footer-disclaimer-text {
  line-height: 1.7;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.footer-more-content {
  display: none;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.footer-more-toggle {
  display: inline-block;
  color: var(--gold-dark);
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 24px;
  text-decoration: underline;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ─── Modal Popup ─────────────────────────────────────────── */
.bg-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bg-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.bg-modal-dialog {
  background: #ffffff;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 38px;
  position: relative;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s ease;
}

.bg-modal-overlay.open .bg-modal-dialog {
  transform: translateY(0) scale(1);
}

.bg-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: var(--text-secondary);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.bg-modal-close:hover {
  background: #e2e8f0;
  color: var(--text-primary);
}

.modal-head {
  text-align: center;
  margin-bottom: 24px;
}

.modal-head h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.modal-head p {
  font-size: 0.88rem;
  color: var(--gold-dark);
}

/* ─── Floating Actions & Mobile Bottom Bar ───────────────── */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 990;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 995;
  background: #ffffff;
  border-top: 1px solid rgba(168, 131, 76, 0.25);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
  padding: 10px 14px;
}

.mobile-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 10px;
}

.mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
}

.mobile-btn--call {
  background: #f1f5f9;
  color: var(--text-primary);
  border: 1px solid #cbd5e1;
}

.mobile-btn--wa {
  background: #25d366;
  color: #ffffff;
}

.mobile-btn--enquire {
  background: var(--gold-gradient);
  color: #ffffff;
}

/* Toast Notifications */
.bg-toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.bg-toast {
  background: #ffffff;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateX(120%);
  transition: transform 0.35s ease;
  pointer-events: auto;
}

.bg-toast.visible {
  transform: translateX(0);
}

.bg-toast--error {
  border-color: var(--accent-red);
}

/* ─── Rotating Conversion Nudge Toast ────────────────────── */
.bg-conversion-nudge {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 980;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(420px, calc(100vw - 40px));
  padding: 14px 18px;
  border: 1px solid rgba(168, 131, 76, 0.35);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--text-primary);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.bg-conversion-nudge.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bg-nudge-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}

.bg-nudge-close:hover {
  color: var(--text-primary);
}

.bg-nudge-status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2), 0 0 10px rgba(16, 185, 129, 0.6);
  animation: bgNudgePulse 2s infinite ease-in-out;
}

@keyframes bgNudgePulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2), 0 0 10px rgba(16, 185, 129, 0.6);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(16, 185, 129, 0.35), 0 0 14px rgba(16, 185, 129, 0.85);
  }
}

.bg-nudge-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-right: 8px;
}

.bg-nudge-kicker {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 2px;
}

.bg-nudge-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

.bg-nudge-text {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 2px;
}

.bg-nudge-cta {
  background: var(--gold-gradient);
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 2px 10px var(--gold-glow);
}

.bg-nudge-cta:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-1px);
}

/* ─── Responsive Media Queries ────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-price-strip {
    justify-content: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-highlights-bar {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .overview-grid, .location-grid, .developer-card, .booking-wrapper, .floor-display-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .highlights-grid, .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Container & Section Spacing */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 1.85rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .section-eyebrow {
    font-size: 0.74rem;
    padding: 5px 12px;
    margin-bottom: 8px;
  }

  /* Header & Navigation */
  .nav-wrapper {
    height: 64px;
  }

  .nav-brand img {
    height: 38px;
  }

  .nav-menu {
    display: none;
  }

  .nav-actions .btn,
  .nav-btn-desktop {
    display: none !important;
  }

  .hamburger {
    display: block;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--bg-card-border);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 1001;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 36px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-badge {
    font-size: 0.74rem;
    padding: 6px 14px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .hero-tagline {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .hero-highlights-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 12px 10px;
    margin-bottom: 22px;
    border-radius: var(--radius-sm);
  }

  .hero-hl-label {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }

  .hero-hl-value {
    font-size: 0.95rem;
  }

  .hero-price-strip {
    margin-bottom: 20px;
    gap: 8px;
  }

  .hero-price-label {
    font-size: 0.85rem;
  }

  .hero-price-amount {
    font-size: 1.9rem;
  }

  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    padding: 12px 6px;
    font-size: 0.84rem;
    white-space: normal;
    text-align: center;
  }

  .hero-form-card {
    padding: 22px 16px;
    margin-top: 6px;
    border-radius: var(--radius-md);
  }

  .form-card-title {
    font-size: 1.3rem;
  }

  .form-card-desc {
    font-size: 0.84rem;
  }

  /* Form Elements */
  .bg-form {
    gap: 14px;
  }

  .bg-form__input {
    font-size: 16px; /* Prevents auto-zoom on mobile iOS */
    padding: 11px 14px;
  }

  .bg-config-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .bg-config-chip {
    padding: 8px 4px;
    font-size: 0.74rem;
  }

  /* Overview Section */
  .overview-grid {
    gap: 24px;
  }

  .overview-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .overview-points {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .overview-point {
    font-size: 0.9rem;
  }

  .overview-badge-float {
    bottom: 12px;
    left: 12px;
    padding: 10px 16px;
  }

  .overview-badge-num {
    font-size: 1.4rem;
  }

  .overview-badge-lbl {
    font-size: 0.7rem;
  }

  /* Highlights Section */
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlight-card {
    padding: 22px 18px;
  }

  .hl-icon-wrap {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
  }

  .hl-card-title {
    font-size: 1.15rem;
  }

  .hl-card-text {
    font-size: 0.88rem;
  }

  /* Pricing Section */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 24px 18px;
  }

  .pricing-typology {
    font-size: 1.3rem;
  }

  .price-val {
    font-size: 1.85rem;
  }

  .pricing-badge {
    top: -10px;
    right: 18px;
    font-size: 0.7rem;
  }

  /* Amenities Section */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .amenity-media {
    height: 140px;
  }

  .amenity-content {
    padding: 14px;
  }

  .amenity-title {
    font-size: 1.02rem;
    margin-bottom: 4px;
  }

  .amenity-desc {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  /* Floor Plans Section */
  .floor-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 8px;
    padding: 4px 2px 14px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .floor-tabs::-webkit-scrollbar {
    display: none;
  }

  .floor-tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 0.84rem;
  }

  .floor-display-card {
    padding: 20px 16px;
    gap: 22px;
    border-radius: var(--radius-md);
  }

  .floor-specs-panel h3 {
    font-size: 1.45rem;
  }

  .floor-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 16px 0 22px;
  }

  .spec-box {
    padding: 10px 12px;
  }

  .spec-val {
    font-size: 1rem;
  }

  /* Gallery Section */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-hover-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, 0.8) 100%);
    padding: 12px;
  }

  .gallery-title {
    font-size: 0.82rem;
  }

  /* Location Section */
  .location-grid {
    gap: 24px;
  }

  .connectivity-item {
    padding: 12px 14px;
  }

  .conn-dest {
    font-size: 0.86rem;
    gap: 8px;
  }

  .conn-icon {
    width: 30px;
    height: 30px;
  }

  .conn-icon svg {
    width: 15px;
    height: 15px;
  }

  .conn-dist {
    font-size: 0.86rem;
  }

  /* Developer Credibility Section */
  .developer-card {
    padding: 24px 18px;
    gap: 20px;
  }

  .dev-title {
    font-size: 1.6rem;
  }

  .dev-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 16px;
  }

  .dev-stat-val {
    font-size: 1.45rem;
  }

  .dev-stat-lbl {
    font-size: 0.68rem;
  }

  .dev-quote-box {
    padding: 18px 14px;
  }

  .dev-quote-text {
    font-size: 0.92rem;
  }

  /* Site Visit / Booking Section */
  .booking-section {
    padding: 48px 0;
  }

  .booking-wrapper {
    padding: 24px 16px;
    gap: 24px;
  }

  .booking-info h2 {
    font-size: 1.6rem;
  }

  .booking-info p {
    margin-bottom: 20px;
  }

  .contact-row-item {
    gap: 12px;
  }

  .contact-row-icon {
    width: 38px;
    height: 38px;
  }

  .contact-row-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-row-text a,
  .contact-row-text span {
    font-size: 1rem;
  }

  /* Floating WhatsApp */
  .floating-whatsapp {
    bottom: 74px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }

  /* Mobile Bottom Bar */
  .mobile-bottom-bar {
    display: block;
    padding: 8px 12px;
  }

  .mobile-bar-inner {
    grid-template-columns: 1fr 1fr 1.35fr;
    gap: 8px;
  }

  .mobile-btn {
    padding: 10px 6px;
    font-size: 0.84rem;
    border-radius: var(--radius-sm);
  }

  /* Popup Modal */
  .bg-modal-dialog {
    padding: 24px 16px;
    max-width: 95%;
    max-height: 92vh;
    overflow-y: auto;
  }

  .modal-head h3 {
    font-size: 1.35rem;
  }

  .modal-head p {
    font-size: 0.82rem;
  }

  /* Conversion Nudge Toast Mobile */
  .bg-conversion-nudge {
    left: 12px;
    right: 12px;
    bottom: 74px; /* Floats directly above mobile bottom bar */
    width: auto;
    padding: 10px 14px;
    gap: 10px;
    z-index: 994;
  }

  .bg-nudge-title {
    font-size: 0.84rem;
  }

  .bg-nudge-text {
    font-size: 0.72rem;
  }

  .bg-nudge-cta {
    padding: 6px 10px;
    font-size: 0.76rem;
  }

  /* Footer */
  .bg-footer {
    padding: 40px 0 100px;
  }

  .footer-top-row,
  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-rera-box {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights-bar {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .hero-ctas {
    grid-template-columns: 1fr;
  }

  .bg-config-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

