﻿/* The Flagship â€” Sector 140A Noida Â· Brand theme */

:root {
  --navy: #283e76;
  --navy-deep: #1e2f5c;
  --navy-mid: #32498a;
  --navy-soft: #3d5694;
  --slate: #4a5f8a;
  --steel: #6b7f9e;
  --mist: #d4dce8;
  --snow: #f7f8fb;
  --white: #ffffff;
  --gold: #c5a059;
  --gold-bright: #d4b574;
  --gold-deep: #a8863f;
  --gold-glow: rgba(197, 160, 89, 0.4);
  --amber: var(--gold);
  --amber-bright: var(--gold-bright);
  --amber-glow: var(--gold-glow);
  --glass: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(40, 62, 118, 0.12);
  --text: #1e2f5c;
  --text-muted: #5a6d8c;
  --radius: 0;
  --header-h: 4.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--snow);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

/* Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 1000;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  pointer-events: none;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(36, 57, 104, 0.22);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, box-shadow 0.4s;
}

.site-header.is-scrolled {
  background: rgba(30, 47, 92, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(197, 160, 89, 0.22);
}

.header-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 2;
  flex-shrink: 0;
}

.logo-img {
  height: 2.65rem;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: opacity 0.25s;
}

.logo:hover .logo-img {
  opacity: 0.9;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.nav a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav a:not(.nav-cta):hover {
  color: var(--white);
}

.nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.2rem;
  background: transparent;
  color: var(--gold) !important;
  font-weight: 600 !important;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy-deep) !important;
  box-shadow: 0 0 20px var(--gold-glow);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  animation: ctaPulse 3.2s ease-in-out infinite;
}

.btn-primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 28px var(--gold-glow);
  transform: translateY(-2px);
  animation: none;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-sm {
  padding: 0.7rem 1.25rem;
  font-size: 0.72rem;
  animation: none;
}

.btn-block {
  width: 100%;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
  50% { box-shadow: 0 0 20px var(--gold-glow); }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  animation: heroZoom 22s ease-out forwards;
  will-change: transform;
}

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 43, 82, 0.62) 0%, rgba(36, 57, 104, 0.3) 40%, rgba(26, 43, 82, 0.82) 100%),
    linear-gradient(90deg, rgba(26, 43, 82, 0.55) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 0 0 5.5rem;
  max-width: 38rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.85rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.4s forwards;
}

.hero-lead {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
  margin-bottom: 1.85rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.6s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1.5rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 0.4rem;
}

.hero-scroll span {
  width: 3px;
  height: 8px;
  background: var(--gold-bright);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(8px); }
}

/* Sections common */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--navy-deep);
  max-width: 22ch;
}

.section-head.light h2 {
  color: var(--white);
}

.section-sub {
  margin-top: 0.75rem;
  color: var(--text-muted);
  max-width: 40rem;
  font-weight: 300;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-head.light .eyebrow {
  color: var(--gold-bright);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > *.reveal,
.stagger.reveal > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.stagger.reveal.is-visible > *,
.stagger.is-visible > *.reveal {
  opacity: 1;
  transform: translateY(0);
}

.stagger.reveal.is-visible > *:nth-child(1),
.stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.reveal.is-visible > *:nth-child(2),
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.reveal.is-visible > *:nth-child(3),
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.reveal.is-visible > *:nth-child(4),
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.reveal.is-visible > *:nth-child(5),
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.reveal.is-visible > *:nth-child(6),
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger.reveal.is-visible > *:nth-child(7),
.stagger.is-visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger.reveal.is-visible > *:nth-child(8),
.stagger.is-visible > *:nth-child(8) { transition-delay: 0.4s; }
.stagger.reveal.is-visible > *:nth-child(9),
.stagger.is-visible > *:nth-child(9) { transition-delay: 0.45s; }
.stagger.reveal.is-visible > *:nth-child(10),
.stagger.is-visible > *:nth-child(10) { transition-delay: 0.5s; }
.stagger.reveal.is-visible > *:nth-child(11),
.stagger.is-visible > *:nth-child(11) { transition-delay: 0.55s; }
.stagger.reveal.is-visible > *:nth-child(12),
.stagger.is-visible > *:nth-child(12) { transition-delay: 0.6s; }

/* Snapshot */
.snapshot {
  background: var(--white);
  position: relative;
}

.snapshot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  margin-bottom: 1.75rem;
}

.stat {
  background: var(--snow);
  padding: 1.35rem 1.25rem;
  transition: background 0.35s;
}

.stat:hover {
  background: var(--white);
}

.stat dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.4rem;
}

.stat dd {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy-deep);
  line-height: 1.3;
}

.price-line {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-top: 0.25rem;
}

.price-line strong {
  color: var(--navy-deep);
}

/* Concept */
.concept {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  padding: 0;
  background: var(--navy-deep);
  color: var(--white);
  min-height: min(720px, 90vh);
}

.concept-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.concept-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1.2s var(--ease);
}

.concept:hover .concept-visual img {
  transform: scale(1.04);
}

.concept-copy {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.75rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(197, 160, 89, 0.14), transparent 50%),
    var(--navy);
}

.concept-copy .section-head h2 {
  color: var(--white);
  max-width: 18ch;
}

.concept-copy > p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  font-weight: 300;
}

.use-cases {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.use-cases li {
  display: grid;
  gap: 0.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

.use-cases strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-bright);
}

.use-cases span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
}

/* Products */
.products {
  background: var(--snow);
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.product-tab {
  padding: 0.65rem 1.25rem;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}

.product-tab:hover {
  border-color: var(--steel);
  color: var(--navy);
}

.product-tab.is-active {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}

.product-panels {
  position: relative;
}

.product-panel {
  display: none;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line-dark);
  overflow: hidden;
  animation: panelIn 0.55s var(--ease);
}

.product-panel.is-active {
  display: grid;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-panel-media {
  overflow: hidden;
  min-height: 320px;
}

.product-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.product-panel:hover .product-panel-media img {
  transform: scale(1.05);
}

.product-panel-body {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.15rem;
}

.product-panel-body h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.product-panel-body ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.product-panel-body li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 0.85rem;
  position: relative;
}

.product-panel-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.product-panel-body strong {
  color: var(--navy);
}

.panel-price {
  font-size: 0.95rem;
  color: var(--steel);
}

.panel-price strong {
  color: var(--navy);
  font-family: var(--font-display);
}

/* Pricing */
.pricing {
  background: var(--white);
}

.price-table {
  border-top: 1px solid var(--line-dark);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.98rem;
  transition: padding-left 0.3s var(--ease);
}

.price-row:hover {
  padding-left: 0.5rem;
}

.price-row span:first-child {
  font-weight: 500;
  color: var(--navy);
}

.price-row span:last-child {
  color: var(--text-muted);
  text-align: right;
}

.fine-print {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--steel);
  font-weight: 300;
}

/* Location */
.location {
  background: var(--snow);
}

.location-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.location-map {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 360px;
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1s var(--ease);
}

.location-map:hover img {
  transform: scale(1.06);
}

.location-map-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(26, 43, 82, 0.9));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.connectivity {
  display: flex;
  flex-direction: column;
}

.connectivity li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.connectivity li span {
  font-weight: 500;
  color: var(--navy);
}

.connectivity li em {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--steel);
  text-align: right;
  flex-shrink: 0;
}

/* Amenities */
.amenities {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.amenities-bg {
  position: absolute;
  inset: 0;
}

.amenities-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.amenities-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 43, 82, 0.88), rgba(36, 57, 104, 0.62));
}

.amenities .container {
  position: relative;
  z-index: 1;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem 1.5rem;
}

.amenity-list li {
  padding: 0.9rem 1rem;
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  font-size: 0.92rem;
  font-weight: 400;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.amenity-list li:hover {
  border-color: rgba(197, 160, 89, 0.55);
  background: rgba(197, 160, 89, 0.12);
  transform: translateY(-2px);
}

.amenity-note {
  margin-top: 1.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 48rem;
  font-weight: 300;
}

/* Gallery */
.gallery {
  background: var(--navy-deep);
}

.gallery .section-head h2 {
  color: var(--white);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  cursor: default;
}

.gallery-item.span-2 {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.9s var(--ease), filter 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(26, 43, 82, 0.85));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  transform: translateY(8px);
  opacity: 0.85;
  transition: transform 0.4s, opacity 0.4s;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

/* USP */
.usp {
  background: var(--white);
}

.usp-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.usp-list li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
  transition: background 0.3s;
}

.usp-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.2;
}

.usp-list h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--navy-deep);
}

.usp-list p {
  color: var(--text-muted);
  font-weight: 300;
  max-width: 42rem;
}

/* Audience */
.audience {
  background: var(--snow);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.audience-list li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-muted);
}

.audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 1.5px;
  background: var(--gold);
}

.caution {
  background: var(--navy-deep);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}

.caution h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--gold-bright);
}

.caution p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  margin-bottom: 1rem;
}

.rera-badge {
  margin-bottom: 0 !important;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  color: var(--mist) !important;
}


/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(197, 160, 89, 0.18), transparent 50%),
    var(--navy);
  color: var(--white);
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
  color: var(--white);
}

.cta-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  max-width: 32rem;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Lead modal */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.lead-modal[hidden] {
  display: none !important;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 22, 45, 0.72);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s ease;
}

.lead-modal-panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: min(92vh, 740px);
  overflow-y: auto;
  background: linear-gradient(165deg, #2a4080 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(197, 160, 89, 0.35);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  animation: modalIn 0.4s var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.lead-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}

.lead-modal-close:hover { color: var(--gold-bright); }

.lead-modal-head {
  margin-bottom: 1.25rem;
  padding-right: 1.5rem;
  color: var(--white);
}

.lead-modal-head h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.lead-modal-head p:not(.eyebrow) {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
}

.lead-form .honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.field { margin-bottom: 1rem; }

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
  color: var(--mist);
}

.optional {
  font-weight: 400;
  opacity: 0.6;
  text-transform: lowercase;
  letter-spacing: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  background: rgba(14, 22, 45, 0.45);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.35); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.22);
}

.field select { cursor: pointer; }
.field select option { background: var(--navy-deep); color: var(--white); }

.field-error {
  display: block;
  min-height: 1.05em;
  font-size: 0.75rem;
  color: #ff8a8a;
  margin-top: 0.25rem;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: #e06060; }

.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.35rem;
  cursor: pointer;
}

.consent input {
  margin-top: 0.2rem;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form-status {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  min-height: 1.4em;
}

.form-status.is-success { color: #7dcea0; }
.form-status.is-error { color: #ff8a8a; }

body.modal-open { overflow: hidden; }

/* Footer — HouseThat */
.site-footer {
  background: #0a0e1a;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 3.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.housethat-logo {
  height: 3.25rem;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin-bottom: 0.85rem;
}

.footer-presented {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gold-bright);
  margin-bottom: 1.15rem;
  line-height: 1.5;
  max-width: 22rem;
}

.footer-rera-box {
  display: inline-block;
  border: 1px solid rgba(197, 160, 89, 0.55);
  padding: 0.75rem 1rem;
  margin-bottom: 0.85rem;
}

.footer-rera-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.footer-rera-box strong {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-project-rera {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-project-rera strong { color: var(--gold-bright); }

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0.55rem;
  font-weight: 300;
}

.footer-contact-line span {
  display: inline-block;
  min-width: 5.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col a { color: var(--white); transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-bright); }

.footer-closed {
  color: rgba(255, 255, 255, 0.45) !important;
  margin-bottom: 1.25rem !important;
}

.footer-project-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.footer-project-meta p {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.45rem;
}

.footer-project-meta span {
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
}

.disclaimer {
  font-size: 0.75rem !important;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.4) !important;
  padding-bottom: 1.25rem;
}

.footer-bottom {
  padding: 1.15rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Floating CTA + WhatsApp */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 5.5rem;
  z-index: 90;
  padding: 0.85rem 1.35rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 8px 28px rgba(26, 43, 82, 0.35), 0 0 18px var(--gold-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s, background 0.25s;
}

.floating-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta:hover { background: var(--gold-bright); }

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 3.4rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: waPulse 2.4s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 960px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .concept { grid-template-columns: 1fr; }
  .concept-visual { min-height: 340px; }
  .product-panel.is-active { grid-template-columns: 1fr; }
  .product-panel-media { min-height: 240px; }
  .location-layout,
  .split,
  .footer-grid { grid-template-columns: 1fr; }
  .amenity-list { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; }
  .gallery-item.span-2 { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .logo-img { height: 2.25rem; max-width: 160px; }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(30, 47, 92, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
  }

  .nav.is-open { opacity: 1; visibility: visible; }
  .nav a, .nav .nav-cta { font-size: 1rem; }
  .hero-content { padding-bottom: 4.5rem; }
  .price-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .price-row span:last-child { text-align: left; }
  .amenity-list { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item.span-2 { grid-column: span 1; min-height: 220px; }
  .usp-list li { grid-template-columns: 3rem 1fr; gap: 1rem; }
  .floating-cta { right: 5.25rem; bottom: 1.25rem; padding: 0.75rem 1.1rem; }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-img,
  .btn-primary,
  .hero-eyebrow,
  .hero-title,
  .hero-lead,
  .hero-actions,
  .hero-scroll span,
  .whatsapp-float {
    animation: none !important;
  }

  .hero-img { transform: none; }

  .hero-eyebrow,
  .hero-title,
  .hero-lead,
  .hero-actions { opacity: 1; }

  .reveal,
  .stagger.reveal > *,
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
