/* ============================================
   Dasnac Westminster — Ultra-Luxury Microsite
   ============================================ */

:root {
  --gold: #c5a059;
  --gold-light: #d4b876;
  --gold-dark: #a8863f;
  --charcoal: #1a1a1a;
  --charcoal-soft: #2b2b2b;
  --cream: #f9f7f2;
  --cream-dark: #ede8df;
  --white: #ffffff;
  --text: #333333;
  --text-muted: #6b6b6b;
  --overlay: rgba(26, 26, 26, 0.72);
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', 'Segoe UI', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  --nav-height: 80px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ---- Typography ---- */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-title.light { color: var(--white); }

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.gold-line.center { margin-inline: auto; }

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 92%);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  flex-shrink: 0;
}

.logo img {
  width: 170px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
  transition: transform var(--transition), filter var(--transition);
}

.logo:hover img {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 12px rgba(197, 160, 89, 0.35));
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.65rem 1.4rem;
  font-size: 0.68rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-sunset.jpg') center/cover no-repeat;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.75) 0%,
    rgba(26, 26, 26, 0.35) 50%,
    rgba(26, 26, 26, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 92%);
  margin-inline: auto;
  padding-top: var(--nav-height);
}

.hero-box {
  max-width: 560px;
  padding: 2.5rem;
  background: rgba(26, 26, 26, 0.72);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--gold);
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--charcoal);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Sections ---- */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-desc {
  margin-inline: auto;
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image:hover img { transform: scale(1.03); }

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-content .gold-line { margin-bottom: 1.25rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.about-feature .icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
}

.about-feature h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.about-feature p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---- USP Cards ---- */
.usps {
  background: var(--charcoal);
  color: var(--white);
}

.usps .section-desc { color: rgba(255, 255, 255, 0.6); }

.usps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.usp-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(197, 160, 89, 0.2);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.usp-card:hover {
  background: rgba(197, 160, 89, 0.08);
  transform: translateY(-4px);
}

.usp-card:hover::before { transform: scaleX(1); }

.usp-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: rgba(197, 160, 89, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.usp-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.usp-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ---- Architecture Feature ---- */
.arch-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.arch-feature.reverse { direction: rtl; }
.arch-feature.reverse > * { direction: ltr; }

.arch-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.arch-feature-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.arch-feature-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.arch-feature-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.arch-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text);
}

.arch-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.arch-features-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

/* ---- Gallery ---- */
.gallery {
  background: var(--cream-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-item .overlay span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* ---- Floor Plans ---- */
.floorplans { background: var(--white); }

.plan-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.plan-tab {
  padding: 0.7rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--cream-dark);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.plan-tab.active,
.plan-tab:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.plan-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.plan-panel.active { display: block; }

.plan-viewer {
  background: var(--cream);
  padding: 2rem;
  text-align: center;
}

.plan-viewer img {
  max-height: 520px;
  margin-inline: auto;
  object-fit: contain;
}

.plan-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.plan-info-card {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid var(--cream-dark);
}

.plan-info-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.plan-info-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---- Amenities ---- */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.amenity-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.12);
}

.amenity-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.amenity-item span {
  font-size: 0.82rem;
  font-weight: 500;
}

.amenity-map img {
  width: 100%;
  border: 1px solid var(--cream-dark);
}

/* ---- Location ---- */
.location {
  background: var(--charcoal);
  color: var(--white);
}

.location .section-desc { color: rgba(255, 255, 255, 0.6); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.location-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.location-item {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.location-item:hover {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.06);
}

.location-item h4 {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.location-item p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.location-map {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-address {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.location-address span { color: var(--gold); }

/* ---- Pricing ---- */
.pricing-card {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  padding: 3.5rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
  position: relative;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
}

.pricing-type {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pricing-area {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.pricing-area small {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-dark);
  margin: 1.5rem 0;
}

.pricing-details {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.pricing-detail span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.pricing-detail strong {
  font-size: 0.95rem;
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

/* ---- Contact ---- */
.contact {
  background: var(--cream-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit { width: 100%; }

/* ---- Footer ---- */
.footer {
  background: #050a14;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 1.75rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.1fr;
  gap: 3rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.75rem;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.housethat-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
  transition: opacity var(--transition), transform var(--transition);
}

.housethat-logo:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.housethat-logo img {
  width: min(280px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 0 transparent);
}

.footer-partner-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 340px;
}

.footer-rera-box {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.9rem 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 1rem;
}

.footer-rera-box .rera-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-rera-box .rera-number {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  word-break: break-all;
}

.footer-project-chip {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.35rem;
}

.footer-visit p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-visit strong {
  color: var(--white);
  font-weight: 600;
}

.footer-visit a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

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

.footer-hours p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.35rem;
}

.footer-hours .hours-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.5rem;
}

.footer-project-meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-project-meta p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.footer-project-meta span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(197, 160, 89, 0.85);
  margin-bottom: 0.15rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 0.68rem;
  line-height: 1.65;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.38);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.rera-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
  font-size: 0.72rem;
  color: var(--gold);
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- Enquiry Modal ---- */
.enquiry-modal[hidden] {
  display: none !important;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.enquiry-modal.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.enquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.78);
  backdrop-filter: blur(6px);
}

.enquiry-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.enquiry-modal.active .enquiry-modal-dialog {
  transform: translateY(0) scale(1);
}

.enquiry-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.enquiry-modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.enquiry-modal-media {
  position: relative;
  min-height: 420px;
}

.enquiry-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enquiry-modal-media-text {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: var(--white);
}

.enquiry-modal-media-text span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.enquiry-modal-media-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.enquiry-modal-media-text p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.enquiry-modal-body {
  padding: 2rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.enquiry-modal-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.enquiry-modal-body h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.enquiry-modal-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.enquiry-modal-form .form-group {
  margin-bottom: 0.9rem;
}

.enquiry-modal-form .form-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.enquiry-whatsapp-link {
  display: inline-flex;
  justify-content: center;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #25d366;
  text-align: center;
}

.enquiry-whatsapp-link:hover {
  text-decoration: underline;
}

.form-status {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-status.success { color: #2d6a4f; }
.form-status.info { color: var(--gold-dark); }
.form-status.error { color: #b42318; }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2500;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem 0.75rem 0.85rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.4s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.whatsapp-float-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #25d366 !important;
}

.footer-wa-link:hover {
  color: var(--gold) !important;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.12); }
}

/* ---- Animations ---- */
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

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

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .usps-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-toggle { display: flex; }

  .about-grid,
  .arch-feature,
  .amenities-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .arch-feature.reverse { direction: ltr; }

  .about-features,
  .amenity-list,
  .location-list,
  .plan-info {
    grid-template-columns: 1fr;
  }

  .usps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .form-row { grid-template-columns: 1fr; }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-copy { white-space: normal; }

  .hero-box { padding: 1.75rem; }
  section { padding: 4rem 0; }

  .enquiry-modal-dialog {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }

  .enquiry-modal-media {
    min-height: 180px;
  }

  .enquiry-modal-close {
    background: rgba(0, 0, 0, 0.55);
  }

  .whatsapp-float-label { display: none; }
  .whatsapp-float {
    padding: 0.85rem;
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .logo img { width: 130px; }
}
