:root {
  --burgundy: #650a34;
  --burgundy-light: #a4737d;
  --gold: #d5a82b;
  --gold-light: #e8c86a;
  --charcoal: #414042;
  --off-white: #f8f5f0;
  --white: #ffffff;
  --dark: #0e0a0c;
  --overlay: rgba(14, 10, 12, 0.72);
}

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

html {
  scroll-behavior: smooth;
}

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

/*  STICKY NAV  */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 48px;
  background: linear-gradient(to bottom, rgba(14, 10, 12, 0.95), transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(2px);
  transition: background 0.4s;
}
nav.scrolled {
  background: rgba(14, 10, 12, 0.97);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
}
.nav-logo span {
  color: var(--white);
  font-style: italic;
}
.nav-cta {
  background: var(--burgundy);
  color: var(--white);
  padding: 10px 28px;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/*  HERO  */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 60%,
      rgba(101, 10, 52, 0.35) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(213, 168, 43, 0.12) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #0e0a0c 0%, #1a0a10 40%, #0e0a0c 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D5A82B' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  animation: heroReveal 1.4s ease forwards;
}
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  animation: heroReveal 1.4s 0.2s ease both;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 12px;
  animation: heroReveal 1.4s 0.35s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-collab {
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--burgundy-light);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
  animation: heroReveal 1.4s 0.5s ease both;
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 48px;
  animation: heroReveal 1.4s 0.65s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroReveal 1.4s 0.8s ease both;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  padding: 16px 44px;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: 0;
}
.btn-primary:hover::after {
  transform: translateX(0);
}
.btn-primary span {
  position: relative;
  z-index: 1;
}
.btn-primary:hover span {
  color: var(--dark);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  padding: 16px 44px;
  border: 1px solid rgba(213, 168, 43, 0.5);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: rgba(213, 168, 43, 0.1);
  border-color: var(--gold);
}
.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 64px;
  animation: heroReveal 1.4s 1s ease both;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  display: block;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

/*  SECTION BASE  */
section {
  padding: 100px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-label {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
  opacity: 0.6;
}

/*  URGENCY BAND  */
.urgency-band {
  background: var(--burgundy);
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  border-top: 1px solid rgba(213, 168, 43, 0.3);
  border-bottom: 1px solid rgba(213, 168, 43, 0.3);
}
.urgency-band span {
  color: var(--gold);
}

/*  COLLAB SECTION  */
.collab-section {
  background: var(--off-white);
  padding: 100px 0;
}
.collab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.collab-text .section-label {
  color: var(--burgundy);
}
.collab-text .section-title {
  color: var(--dark);
}
.collab-text .section-title em {
  color: var(--burgundy);
}
.collab-text .divider {
  background: var(--burgundy);
}
.collab-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--charcoal);
  font-weight: 300;
  margin-bottom: 32px;
}
.collab-names {
  display: flex;
  gap: 32px;
  align-items: center;
}
.collab-name-item {
  text-align: center;
}
.collab-name-big {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--burgundy);
  letter-spacing: 2px;
}
.collab-name-sub {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--charcoal);
  text-transform: uppercase;
  opacity: 0.6;
}
.collab-x {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--burgundy-light);
  opacity: 0.5;
}
.collab-visual {
  position: relative;
}
.collab-card {
  background: var(--dark);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.collab-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
}
.collab-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 24px;
}
.collab-quote-attr {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.pill {
  border: 1px solid var(--burgundy-light);
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--charcoal);
  text-transform: uppercase;
}

/*  LEAD FORM  */
.form-section {
  background: linear-gradient(135deg, #0e0a0c 0%, #1a0510 50%, #0e0a0c 100%);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: "BURGUNDY";
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 220px;
  font-weight: 700;
  color: rgba(101, 10, 52, 0.06);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -10px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-offer h2 {
  margin-bottom: 16px;
}
.form-offer-desc {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin-bottom: 40px;
}
.offer-list {
  list-style: none;
}
.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.6;
}
.offer-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}
.form-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(213, 168, 43, 0.2);
  padding: 48px 40px;
  position: relative;
}
.form-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--burgundy),
    var(--gold),
    var(--burgundy)
  );
}
.form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-input,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus {
  border-color: var(--gold);
  background: rgba(213, 168, 43, 0.05);
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-select {
  cursor: pointer;
}
.form-select option {
  background: var(--dark);
  color: var(--white);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.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;
}
.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;
}
.form-submit:hover::after {
  transform: translateX(0);
}
.form-submit span {
  position: relative;
  z-index: 1;
}
.form-submit:hover span {
  color: var(--dark);
}
.form-privacy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/*  AMENITIES  */
.amenities-section {
  background: var(--dark);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.amenity-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.amenity-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--burgundy);
  transition: height 0.3s;
  z-index: 0;
}
.amenity-card:hover::before {
  height: 3px;
}
.amenity-card:hover {
  background: rgba(101, 10, 52, 0.12);
  transform: translateY(-4px);
}
.amenity-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.amenity-name {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/*  UNIT TYPES  */
.units-section {
  background: var(--off-white);
}
.units-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.unit-card {
  background: var(--white);
  border: 1px solid rgba(101, 10, 52, 0.1);
  padding: 40px 36px;
  position: relative;
  transition: all 0.3s;
}
.unit-card:hover {
  box-shadow: 0 20px 60px rgba(101, 10, 52, 0.15);
  transform: translateY(-6px);
}
.unit-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
}
.unit-type {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--burgundy);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.unit-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.unit-size {
  font-size: 22px;
  font-weight: 500;
  color: var(--burgundy);
  margin-bottom: 20px;
}
.unit-size span {
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 400;
}
.unit-features {
  list-style: none;
}
.unit-features li {
  font-size: 13px;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
}
.unit-features li:last-child {
  border-bottom: none;
}
.unit-features li strong {
  color: var(--dark);
  font-weight: 600;
}
.unit-cta {
  margin-top: 28px;
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s;
}
.unit-cta:hover {
  background: var(--burgundy);
  color: var(--white);
}
/* Price block inside unit card */
.price-block {
  margin: 16px 0 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(101, 10, 52, 0.1);
  border-bottom: 1px solid rgba(101, 10, 52, 0.1);
}

.price-label {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--charcoal);
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.6;
}

.price-value {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 38px;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 6px;
}

.price-note {
  font-size: 10px;
  color: var(--charcoal);
  opacity: 0.5;
  letter-spacing: 0.5px;
}

/* RERA note below cards */
.units-rera-note {
  text-align: center;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.3);
  margin-top: 32px;
  letter-spacing: 1px;
  line-height: 1.7;
}

/*  LOCATION  */
.location-section {
  background: var(--dark);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.location-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.loc-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 20px;
}
.loc-dist {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
}
.loc-name {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  letter-spacing: 1px;
}
.location-map-box {
  background: rgba(101, 10, 52, 0.12);
  border: 1px solid rgba(101, 10, 52, 0.3);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.location-map-box::before {
  content: "📍";
  font-size: 48px;
  display: block;
  margin-bottom: 20px;
}
.location-map-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.location-map-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.location-cta {
  margin-top: 24px;
  padding: 12px 32px;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s;
}
.location-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/*  PARTNERS  */
.partners-section {
  background: rgba(255, 255, 255, 0.02);
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.partners-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  margin-bottom: 48px;
}
.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.partner-item {
  text-align: center;
}
.partner-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  transition: color 0.3s;
}
.partner-item:hover .partner-name {
  color: var(--gold);
}
.partner-role {
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
}

/*  TESTIMONIAL  */
.testimonial-section {
  background: var(--burgundy);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 400px;
  color: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 3.5vw, 40px);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}
.testimonial-attr {
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/*  FINAL CTA  */
.final-cta {
  background: var(--dark);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(101, 10, 52, 0.3) 0%,
    transparent 70%
  );
}
.final-cta .container {
  position: relative;
  z-index: 1;
}
.final-cta .section-title {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 24px;
}
.final-cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.final-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-phone {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 4px;
  margin-top: 40px;
  display: block;
  text-decoration: none;
}
.rera-note {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  text-align: center;
}

/*  FOOTER  */
footer {
  background: #080406;
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}

/*  FLOATING WHATSAPP  */
.floating-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: #25d366;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-decoration: none;
}
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.call_us {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 999;
  background: #25d366;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-decoration: none;
}
.call_us:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}
.floating-wa img,
.call_us img {
  width: 100%;
}
/*  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: var(--dark);
  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: var(--white);
}
.modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
}

/*  THANK YOU  */
.thankyou {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.thankyou-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}
.thankyou h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 12px;
}
.thankyou p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}
.iti__flag-box,
.iti__country-name {
  color: black;
}

.iti {
  width: 100%;
}
/*  SMALLER QR SECTION PATCH  */
.rera-phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.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;
}

.phase-pill {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid rgba(213, 168, 43, 0.3);
}

.qr-img-frame {
  background: var(--white);
  padding: 8px;
  display: block;
  position: relative;
}

.qr-img-frame img {
  width: 100px;
  height: 100px;
  display: block;
  object-fit: contain;
}

.qr-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
}

.qr-scan-hint {
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.rera-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 4px;
  word-break: break-all;
}

.rera-num-label {
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

.card-rule {
  width: 24px;
  height: 1px;
  background: rgba(213, 168, 43, 0.3);
  margin: 12px auto;
}

.verify-link {
  font-size: 8px;
  letter-spacing: 1.5px;
}

.project-logo {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.project-logo .right-logo {
  display: none;
}

.project-logo .right-logo img {
  max-width: 110px;
  filter: invert(1) brightness(8.5);
}

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

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

.errors {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  color: red;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 0;
}

/*  RESPONSIVE  */
@media (max-width: 900px) {
  .nav-logo img {
    max-width: 142px;
  }
  .collab-inner,
  .form-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .nav-cta {
    padding: 10px 6px;
    font-size: 10px;
    letter-spacing: 1px;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .units-grid {
    grid-template-columns: 1fr;
  }
  nav {
    padding: 16px 24px;
  }
  .container {
    padding: 0 24px;
  }
  .hero-stats {
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px 32px;
    padding: 0 24px;
    bottom: 24px;
  }

  .hero-stat {
    flex: 0 0 calc(50% - 16px);
    max-width: 140px;
  }

  .hero-stat-num {
    font-size: 28px;
  }
  .hero {
    height: 100vh;
    min-height: 870px;
  }
  .hero-content {
    position: absolute;
    top: 11%;
  }
  .form-submit {
    padding: 10px 18px;
    letter-spacing: 0px;
    font-size: 11px;
  }
  .form-row {
    gap: unset;
  }
  .location-cta {
    letter-spacing: 2px;
  }
  .unit-cta {
    letter-spacing: 1px;
  }
  .btn-primary {
    letter-spacing: 2px;
  }
  .form-box {
    padding: 48px 30px;
  }
  .rera-phases-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  .project-logo .right-logo {
    display: none;
  }

  .call_us {
    left: 20px;
  }

  .floating-wa {
    right: 20px;
  }
}
