:root {
  --burgundy: #650a34;
  --burgundy-light: #8b1a4a;
  --burgundy-dark: #3d0620;
  --mauve: #a4737d;
  --charcoal: #414042;
  --cream: #f8f4ef;
  --warm-white: #fdfaf7;
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --text-dark: #1a1a1a;
  --text-mid: #555;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ========== STICKY NAV ========== */
.sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(10px);
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  transition: all 0.3s ease;
}
.sticky-cta .logo-nav {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.sticky-cta .logo-nav span {
  color: var(--mauve);
  font-style: italic;
  font-size: 0.75rem;
  display: block;
  letter-spacing: 0.08em;
}
.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav-phone {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-weight: 500;
}
.nav-phone:hover {
  color: var(--gold-light);
}
.btn-nav {
  background: var(--burgundy);
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-nav:hover {
  background: var(--burgundy-light);
  transform: translateY(-1px);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #0d0408 0%,
    #1a0812 40%,
    #2a0e1c 70%,
    #0d0408 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(101, 10, 52, 0.45) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 40% at 20% 80%,
      rgba(164, 115, 125, 0.2) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 80% 70%,
      rgba(201, 169, 110, 0.1) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(101, 10, 52, 0.04) 80px,
      rgba(101, 10, 52, 0.04) 81px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 80px,
      rgba(201, 169, 110, 0.03) 80px,
      rgba(201, 169, 110, 0.03) 81px
    );
  pointer-events: none;
}

.hero-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 8vw, 0.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.01em;
  /* margin-bottom: 16px; */
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}

.hero-title img {
  filter: brightness(34.4);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-title .subtitle-brand {
  font-family: "Jost", sans-serif;
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mauve);
  display: block;
  margin-top: 12px;
}

.hero-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 28px auto;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.85s forwards;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: block;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.btn-primary {
  background: var(--burgundy);
  color: #fff;
  border: none;
  padding: 14px 44px;
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  height: 100%;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::after {
  transform: translateX(0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(101, 10, 52, 0.5);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 13px 44px;
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  height: 100%;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
}
.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201, 169, 110, 0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ========== URGENCY BANNER ========== */
.urgency-bar {
  background: var(--burgundy);
  padding: 14px 40px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.urgency-bar .pulse-dot {
  width: 8px;
  height: 8px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
  flex-shrink: 0;
}

/* ========== SOCIAL PROOF ========== */
.trust-strip {
  background: var(--charcoal);
  padding: 22px 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.trust-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ========== SECTION STYLES ========== */
section {
  padding: 100px 40px;
}

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--burgundy);
  opacity: 0.5;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--burgundy);
}

.section-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 600px;
}

/* ========== USP GRID ========== */
.usp-section {
  background: var(--cream);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.usp-card {
  background: #fff;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.usp-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.usp-card:hover::before {
  transform: scaleX(1);
}
.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.usp-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(101, 10, 52, 0.08);
  line-height: 1;
  margin-bottom: 24px;
}
.usp-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.usp-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
}
.usp-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* ========== CONFIGURATIONS ========== */
.config-section {
  background: #fff;
}
.config-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.config-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 40px;
  position: relative;
  transition: all 0.35s ease;
  cursor: pointer;
}
.config-card:hover {
  border-color: var(--burgundy);
  box-shadow: 0 12px 40px rgba(101, 10, 52, 0.1);
}
.config-card.featured {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #fff;
}
.config-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
}
.config-type {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.config-card.featured .config-type {
  color: var(--gold-light);
}
.config-area {
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", serif;
}
.config-area-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.config-card.featured .config-area-label {
  color: rgba(255, 255, 255, 0.55);
}
.config-features {
  list-style: none;
  margin-bottom: 28px;
}
.config-features li {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.config-card.featured .config-features li {
  color: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.config-features li::before {
  content: "✦";
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
}
.config-cta {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.config-cta:hover,
.config-card.featured .config-cta {
  background: var(--burgundy);
  color: #fff;
}
.config-card.featured .config-cta {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.config-card.featured .config-cta:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ========== AMENITIES ========== */
.amenities-section {
  background: var(--charcoal);
  color: #fff;
}
.amenities-section .section-title {
  color: #fff;
}
.amenities-section .section-title em {
  color: var(--gold-light);
}
.amenities-section .section-eyebrow {
  color: var(--gold);
}
.amenities-section .section-eyebrow::after {
  background: var(--gold);
}

.amenities-masonry {
  columns: 3;
  column-gap: 20px;
  margin-top: 60px;
}
.amenity-block {
  break-inside: avoid;
  margin-bottom: 20px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--burgundy);
  transition: all 0.3s ease;
}
.amenity-block:hover {
  background: rgba(255, 255, 255, 0.07);
  border-left-color: var(--gold);
}
.amenity-category {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.amenity-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}
.amenity-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* ========== LOCATION ========== */
.location-section {
  background: var(--cream);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.location-category {
  margin-bottom: 32px;
}
.location-cat-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(101, 10, 52, 0.15);
}
.location-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.88rem;
  color: var(--text-mid);
}
.location-item .distance {
  font-weight: 600;
  color: var(--burgundy);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
}
.location-visual {
  background: #fff;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}
.location-visual h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.location-visual p {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.6;
}
.address-block {
  background: var(--burgundy);
  color: #fff;
  padding: 20px 24px;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
}
.address-block strong {
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
}

/* ========== LEAD FORM ========== */
.form-section {
  background: linear-gradient(135deg, #0d0408 0%, #1a0812 50%, #0d0408 100%);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    rgba(101, 10, 52, 0.3) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.form-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.form-left .section-title {
  color: #fff;
}
.form-left .section-title em {
  color: var(--gold-light);
}
.form-left .section-eyebrow {
  color: var(--gold);
}
.form-left .section-eyebrow::after {
  background: var(--gold);
}
.form-bullets {
  margin-top: 32px;
  list-style: none;
}
.form-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.form-bullets li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.lead-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px;
  backdrop-filter: blur(10px);
}
.form-title-inner {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 14px 16px;
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}
.form-group select {
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.form-group select option {
  background: #1a0812;
  color: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--burgundy);
  border: none;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.btn-submit:hover {
  background: var(--burgundy-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(101, 10, 52, 0.5);
}
.form-disclaimer {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 12px;
  line-height: 1.6;
  text-align: center;
}

/* ========== DEVELOPER CRED ========== */
.developer-section {
  background: #fff;
}
.developer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.dev-stat {
  background: var(--cream);
  padding: 32px 24px;
  text-align: center;
  border-top: 3px solid transparent;
  transition: all 0.3s ease;
}
.dev-stat:hover {
  border-top-color: var(--burgundy);
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.dev-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1;
  display: block;
}
.dev-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  display: block;
  margin-top: 8px;
  line-height: 1.4;
}

/* ========== FOOTER STRIP ========== */
.footer-cta {
  background: var(--burgundy-dark);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: column;
  text-align: center;
}
.footer-left {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
}
.footer-left strong {
  color: var(--gold);
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.footer-rera {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
}
.footer-actions {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.3);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.iti {
  width: 100%;
}

.iti__selected-flag {
  color: white;
}

.nav-logo img {
  filter: invert(1) brightness(8.5);
  max-width: 150px;
}

.rera-phases-grid {
  text-transform: capitalize;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 35px;
  max-width: 300px;
  /* margin-left: auto; */
  /* margin-right: auto; */
  justify-self: anchor-center;
}
.phase-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(213, 168, 43, 0.18);
  padding: 22px 16px 20px;
  text-align: center;
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
/* Shared Styles for both buttons */
.call_us,
.floating-wa {
  position: fixed;
  bottom: 32px;
  z-index: 999;
  background: #25d366;
  color: white;
  width: 48px; /* Slightly larger for better tap targets */
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  text-decoration: none;
  animation: pulse-green 2s infinite;
}

/* Positioning */
.call_us {
  left: 32px;
}
.floating-wa {
  right: 32px;
}

/* Image handling */
.floating-wa img,
.call_us img {
  width: 60%; /* Prevents images from touching the edges */
  height: auto;
}

/* Hover Effect */
.call_us:hover,
.floating-wa:hover {
  transform: scale(1.1);
}

/* Improved Pulse Animation */
@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.config-area.price {
  font-size: 38px;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 6px;
  font-family: unset;
}

.config-card.featured .config-area.price {
  color: white;
}

/*  MODAL  */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: black;
  border: 1px solid rgba(213, 168, 43, 0.3);
  max-width: 480px;
  width: 90%;
  padding: 48px 40px;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover {
  color: white;
}
.modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
}

.modal .form-title {
  font-size: 28px;
  font-weight: 400;
  color: white;
  margin-bottom: 8px;
}

.modal .form-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.modal .form-group {
  margin-bottom: 20px;
}

.modal .form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal .form-input,
.modal .form-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
  text-transform: capitalize;
}

.modal .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modal .form-submit {
  width: 100%;
  padding: 18px;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 8px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.modal .form-submit span {
  position: relative;
  z-index: 1;
  color: white;
}

.modal .form-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold), #c8941a);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
  z-index: 0;
}

.modal .form-privacy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-divider {
    display: none;
  }
  .usp-grid {
    grid-template-columns: 1fr;
  }
  .config-grid {
    grid-template-columns: 1fr;
  }
  .amenities-masonry {
    columns: 1;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .developer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-strip {
    gap: 24px;
  }
  .sticky-cta {
    padding: 12px 20px;
  }
  .nav-phone {
    display: none;
  }
  section {
    padding: 70px 24px;
  }
  .hero {
    padding: 100px 24px 80px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-cta {
    flex-direction: column;
    text-align: center;
  }
  .urgency-bar {
    flex-direction: column;
    gap: 8px;
    font-size: 0.72rem;
  }
  .nav-logo img {
    max-width: 110px;
  }
  .btn-nav {
    padding: 10px 7px;
  }
  .hero .btn-primary {
    padding: 13px 7px;
  }
  .hero .hero-scroll {
    /* left: 50%; */
  }
  .lead-form {
    padding: 23px 10px;
  }
  .footer-actions {
    justify-content: center;
    margin-top: 10px;
    gap: 20px;
  }

  .modal .form-submit,
  .btn-submit {
    padding: 18px 10px;
    letter-spacing: 1px;
    font-size: 11px;
  }
  .modal .form-row {
    grid-template-columns: 1fr;
  }

  .modal .form-title {
    font-size: 23px;
  }

  .modal {
    padding: 33px 40px;
  }
}
