@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500&display=swap');

/* ============================================================
   THE ARC — Jain Fairmount | Landing Page Styles
   Stack: Pure CSS3 — no frameworks
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --color-navy:        #1a2744;
  --color-navy-dark:   #0e1a30;
  --color-navy-mid:    #1e3060;
  --color-gold:        #b8973a;
  --color-gold-light:  #d4af5a;
  --color-gold-pale:   #f0d98a;
  --color-white:       #ffffff;
  --color-off-white:   #f5f2ec;
  --color-light-gray:  #e8e4dc;
  --color-dark-text:   #111827;
  --color-body-text:   #6b7280;
  --color-success:     #22c55e;
  --color-error:       #ef4444;
  --color-cta:         #b8973a;
  --color-cta-hover:   #d4af5a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --font-ui:      'DM Sans', sans-serif;

  --transition: all 0.35s ease-in-out;
  --shadow-gold: 0 0 20px rgba(184, 151, 58, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--color-navy-dark);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── CUSTOM CURSOR ──────────────────────────────────────────── */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], input, textarea, select, label { cursor: none; }

  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    margin: -4px 0 0 -4px;
    background: var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: width 0.2s ease, height 0.2s ease, margin 0.2s ease, opacity 0.2s ease;
    will-change: left, top;
  }
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    margin: -18px 0 0 -18px;
    border: 1.5px solid rgba(184, 151, 58, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    will-change: left, top;
  }
  .cursor-dot.cursor-hover {
    width: 12px; height: 12px;
    margin: -6px 0 0 -6px;
  }
  .cursor-ring.cursor-hover {
    width: 52px; height: 52px;
    margin: -26px 0 0 -26px;
    border-color: var(--color-gold);
  }
  .cursor-dot.cursor-hidden,
  .cursor-ring.cursor-hidden { opacity: 0; }
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

p {
  font-family: var(--font-body);
  font-size: 1.075rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: var(--color-body-text);
}

li, span, label, td, th {
  font-family: var(--font-body);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── UTILITY CLASSES ────────────────────────────────────────── */
.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }
.hidden { display: none !important; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-block;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-gold);
  vertical-align: middle;
  margin-right: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal-scale.active { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.18s; }
.stagger-3 { transition-delay: 0.28s; }
.stagger-4 { transition-delay: 0.38s; }
.stagger-5 { transition-delay: 0.48s; }
.stagger-6 { transition-delay: 0.58s; }

/* ── SECTION LABEL DRAW ─────────────────────────────────────── */
.section-label {
  position: relative;
  display: inline-block;
}
.section-label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 1s cubic-bezier(0.16,1,0.3,1) 0.3s;
}
.reveal.active .section-label::after,
.reveal-left.active .section-label::after,
.reveal-right.active .section-label::after { width: 100%; }

/* ── SECTION TITLE CLIP REVEAL ──────────────────────────────── */
.section-title-wrap {
  overflow: hidden;
}
.section-title-wrap .section-title {
  transform: translateY(100%);
  transition: transform 0.9s cubic-bezier(0.16,1,0.3,1) 0.15s;
}
.reveal.active .section-title-wrap .section-title { transform: translateY(0); }

/* ── GOLD RULE DRAW ─────────────────────────────────────────── */
.gold-rule {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  width: 0;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1) 0.4s;
  margin: 16px 0;
}
.reveal.active .gold-rule,
.active > .gold-rule { width: 80px; }

/* ── CARD HOVER PREMIUM ─────────────────────────────────────── */
.amenity-card {
  transition: background 0.35s ease, border-color 0.35s ease,
              transform 0.45s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.45s ease !important;
}
.amenity-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(184,151,58,0.4) !important;
}
.amenity-card:hover .amenity-icon { transform: scale(1.15) rotate(-3deg) !important; }

.usp-card {
  transition: background 0.35s ease, transform 0.45s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.45s ease !important;
}
.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.1), 0 0 0 1px rgba(184,151,58,0.3);
}

/* ── GALLERY ITEM HOVER ─────────────────────────────────────── */
.gallery-item {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.5s ease !important;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  z-index: 2;
}

/* ── COUNTER ITEM HOVER ─────────────────────────────────────── */
.counter-item {
  transition: background 0.35s ease, transform 0.45s cubic-bezier(0.16,1,0.3,1) !important;
  cursor: default;
}
.counter-item:hover { transform: translateY(-4px); }

/* ── FLOOR PLAN TAB HOVER ───────────────────────────────────── */
.floor-plan-tab {
  transition: color 0.3s ease, border-color 0.3s ease,
              background 0.3s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1) !important;
}
.floor-plan-tab:not(.active):hover { transform: translateY(-2px); }

/* ── TESTIMONIAL CARD HOVER ─────────────────────────────────── */
.testimonial-card {
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.45s ease, border-color 0.3s ease !important;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184,151,58,0.4) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35) !important;
}

/* ── PARTNER LOGO HOVER ─────────────────────────────────────── */
.partner-item {
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.16,1,0.3,1) !important;
}
.partner-item:hover { opacity: 1 !important; transform: scale(1.06); }

/* ── HERO LOAD ANIMATIONS ───────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroLineIn {
  from { width: 0; }
  to   { width: 60px; }
}
.hero-badge    { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 2.1s both; }
.hero-tagline  { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 2.3s both; }
.hero-subtitle { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 3.2s both; }
.hero-specs    { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 3.5s both; }
.hero-ctas     { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 3.8s both; }

/* ── BUTTON SECONDARY HOVER ─────────────────────────────────── */
.btn-secondary {
  transition: color 0.3s ease, border-color 0.3s ease,
              transform 0.35s cubic-bezier(0.16,1,0.3,1), background 0.3s ease !important;
}
.btn-secondary:hover { transform: translateY(-2px) !important; }

/* ── SECTION BG SUBTLE PARALLAX OVERLAY ────────────────────── */
.section-parallax-bg {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ── SCROLL PROGRESS BAR ────────────────────────────────────── */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gold), #e8c96e);
  z-index: 99997;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary, .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.btn-primary::after, .btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-primary:hover::after, .btn-gold:hover::after { transform: translateX(100%); }
.btn-primary:hover, .btn-gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 151, 58, 0.4);
}

.btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-secondary:hover, .btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

/* ── PRELOADER ──────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--color-navy-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.preloader-logo {
  width: 160px;
  animation: preloaderFade 0.6s ease forwards;
  opacity: 0;
}
@keyframes preloaderFade {
  to { opacity: 1; }
}
.preloader-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  animation: sweepLine 0.9s ease 0.4s forwards;
}
@keyframes sweepLine {
  to { width: 200px; }
}
.preloader-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  opacity: 0;
  animation: preloaderFade 0.5s ease 0.9s forwards;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
  transform: translateY(-100%);
}
#navbar.nav-visible { transform: translateY(0); }
#navbar.scrolled {
  background: rgba(14, 26, 48, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(184,151,58,0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo-right img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-logo-fallback {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-fallback span { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--color-white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--color-gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.75rem !important;
  padding: 10px 22px !important;
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open {
  display: flex;
  opacity: 1;
}
.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.mobile-nav-overlay a:hover { color: var(--color-gold); }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--color-white);
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}
.mobile-nav-close:hover { color: var(--color-gold); }

/* ── HERO SECTION ───────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 12s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14,26,48,0.97) 0%,
    rgba(14,26,48,0.92) 30%,
    rgba(14,26,48,0.65) 58%,
    rgba(14,26,48,0.15) 80%,
    rgba(14,26,48,0.0) 100%
  );
}
/* Fallback gradient when no image */
.hero-bg-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0e1a30 0%, #1a2744 40%, #1e3060 70%, #1a2744 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 140px 0 100px;
}

.hero-text {
  max-width: 620px;
  text-align: left;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  margin: 0;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(184,151,58,0.5);
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease 2.2s forwards;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--color-gold-pale);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.6s ease 2.4s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
  overflow: hidden;
}
.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
}
.hero-title-line:nth-child(1) { animation: slideUpLine 0.8s ease 2.5s forwards; }
.hero-title-line:nth-child(2) {
  color: var(--color-gold);
  font-style: italic;
  animation: slideUpLine 0.8s ease 2.7s forwards;
}
@keyframes slideUpLine {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 28px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.6s ease 3s forwards;
}

.hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
  padding: 18px 0;
  border-top: 1px solid rgba(184,151,58,0.25);
  border-bottom: 1px solid rgba(184,151,58,0.25);
  opacity: 0;
  animation: fadeUp 0.6s ease 3.1s forwards;
  justify-content: flex-start;
}
.hero-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.hero-spec-item svg { color: var(--color-gold); flex-shrink: 0; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  opacity: 0;
  animation: fadeUp 0.6s ease 3.2s forwards;
}

/* Hero form panel */
.hero-form-panel {
  background: rgba(14, 26, 48, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(184,151,58,0.3);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 2.8s forwards;
}
.form-header {
  text-align: center;
  margin-bottom: 24px;
}
.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-header p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.form-header .gold-divider {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin: 10px auto;
}

/* ── FORMS ──────────────────────────────────────────────────── */
.lead-form { display: flex; flex-direction: column; gap: 14px; }

.form-group { position: relative; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group select::placeholder { color: rgba(255,255,255,0.45); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-gold);
  background: rgba(255,255,255,0.09);
}
.form-group input.error,
.form-group select.error { border-color: var(--color-error); }
.form-group select option { background: var(--color-navy-dark); color: var(--color-white); }

.phone-wrapper { position: relative; display: flex; align-items: center; }
.phone-flag {
  position: absolute;
  left: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}
.phone-wrapper input { padding-left: 80px; }

.error-msg {
  display: none;
  font-size: 0.72rem;
  color: var(--color-error);
  margin-top: 4px;
  font-family: var(--font-ui);
}
.form-group.has-error .error-msg { display: block; }

.btn-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.btn-submit .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: var(--color-navy-dark);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  font-family: var(--font-ui);
  margin-top: 4px;
}
.form-disclaimer a { color: var(--color-gold); text-decoration: underline; }

/* Light form variant (on off-white sections) */
.form-light .form-group input,
.form-light .form-group select {
  background: var(--color-white);
  border-color: var(--color-light-gray);
  color: var(--color-dark-text);
}
.form-light .form-group input::placeholder { color: var(--color-body-text); }
.form-light .form-group input:focus,
.form-light .form-group select:focus { border-color: var(--color-gold); }
.form-light .phone-flag { color: var(--color-body-text); }
.form-light .form-disclaimer { color: var(--color-body-text); }

/* ── MOBILE FORM SECTION ────────────────────────────────────── */
.mobile-form-section {
  display: none;
  background: var(--color-navy);
  border-top: 3px solid var(--color-gold);
  padding: 48px 0;
}
.mobile-form-section h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 24px;
}

/* ── SECTION DIVIDERS ───────────────────────────────────────── */
.divider-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}
.divider-wave svg { display: block; width: 100%; }

/* ── OVERVIEW SECTION ───────────────────────────────────────── */
#overview {
  background: var(--color-off-white);
  padding: 100px 0;
  color: var(--color-dark-text);
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.overview-text .section-label { color: var(--color-gold); }
.overview-text .section-title { color: var(--color-dark-text); }
.overview-text p {
  color: var(--color-body-text);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1.075rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}
.detail-pill {
  padding: 14px 22px;
  border: 1.5px solid var(--color-gold);
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark-text);
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(184,151,58,0.06);
  box-shadow: 0 2px 12px rgba(184,151,58,0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  min-width: 130px;
}
.detail-pill:hover {
  background: rgba(184,151,58,0.12);
  box-shadow: 0 4px 20px rgba(184,151,58,0.2);
  transform: translateY(-2px);
}
.detail-pill span:first-child {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.overview-image-wrap {
  position: relative;
}
.image-frame {
  position: relative;
  padding: 12px;
}
.image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-gold);
  pointer-events: none;
  z-index: 1;
}
.image-frame::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(184,151,58,0.4);
  pointer-events: none;
  z-index: 1;
}
.image-frame img, .image-frame .img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.img-placeholder {
  background: linear-gradient(135deg, #1a2744 0%, #1e3060 50%, #0e1a30 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(184,151,58,0.6);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
}
.img-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }

/* ── COUNTER SECTION ────────────────────────────────────────── */
#counters {
  background: var(--color-navy);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
#counters::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(184,151,58,0.03) 30px,
    rgba(184,151,58,0.03) 31px
  );
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.counter-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(184,151,58,0.2);
}
.counter-item:last-child { border-right: none; }
.counter-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.counter-number .suffix {
  font-size: 0.5em;
  font-weight: 400;
}
.counter-label {
  font-size: 0.8rem;
  color: rgb(255, 255, 255);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}
.counter-sublabel {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.counter-divider {
  width: 30px;
  height: 1px;
  background: var(--color-gold);
  margin: 12px auto;
}

/* ── VIDEO SECTION ──────────────────────────────────────────── */
#video-section {
  background: var(--color-navy-dark);
  padding: 100px 0;
}
.video-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(184,151,58,0.3);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.video-thumbnail img, .video-thumbnail .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,26,48,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.video-thumbnail:hover .video-overlay { background: rgba(14,26,48,0.25); }
.play-btn {
  width: 80px;
  height: 80px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
}
.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(184,151,58,0.6);
}
.play-btn svg { color: var(--color-navy-dark); margin-left: 4px; }

.video-iframe-container {
  position: relative;
  aspect-ratio: 16/9;
}
.video-iframe-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-usp-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.usp-tag {
  padding: 8px 20px;
  border: 1px solid rgba(184,151,58,0.4);
  border-radius: 2px;
  font-size: 0.8rem;
  color: var(--color-gold-pale);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.usp-tag-star { color: var(--color-gold); }

/* ── USP SECTION ────────────────────────────────────────────── */
#usps {
  background: var(--color-off-white);
  padding: 110px 0 100px;
  color: var(--color-dark-text);
  position: relative;
  overflow: hidden;
}
#usps::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184,151,58,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.usps-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 40px;
}
.usps-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
.usps-header .section-title { color: var(--color-dark-text); }
.usps-header .section-label { color: var(--color-gold); }

.usps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184,151,58,0.2);
  border: 1px solid rgba(184,151,58,0.2);
  border-radius: 2px;
  position: relative;
}
.usp-card {
  background: var(--color-white);
  padding: 48px 36px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease;
}
.usp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.usp-card:hover { background: #fffdf8; }
.usp-card:hover::before { opacity: 1; }

.usp-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(184,151,58,0.1);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  letter-spacing: -0.02em;
  user-select: none;
}
.usp-body { position: relative; z-index: 1; }
.usp-icon {
  width: 44px;
  height: 44px;
  color: var(--color-gold);
  margin-bottom: 20px;
  opacity: 0.9;
}
.usp-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark-text);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.usp-gold-line {
  width: 32px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: 14px;
  border-radius: 2px;
}
.usp-card p {
  font-size: 0.95rem;
  color: var(--color-body-text);
  line-height: 1.85;
  letter-spacing: 0.01em;
}

/* ── AMENITIES SECTION ──────────────────────────────────────── */
#amenities {
  background: var(--color-navy);
  padding: 100px 0;
}
.amenities-header { text-align: center; margin-bottom: 40px; }
.amenities-count {
  display: inline-block;
  background: rgba(184,151,58,0.15);
  border: 1px solid rgba(184,151,58,0.4);
  padding: 6px 20px;
  border-radius: 2px;
  font-size: 0.8rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.amenities-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 9px 22px;
  border: 1px solid rgba(184,151,58,0.3);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }
.tab-btn.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy-dark);
  font-weight: 700;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.amenity-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,151,58,0.15);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  text-align: center;
  cursor: default;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.amenity-card:hover {
  background: rgba(184,151,58,0.1);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}
.amenity-card.hidden-card { display: none; }
.amenity-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  color: var(--color-gold);
  transition: transform 0.3s ease;
}
.amenity-card:hover .amenity-icon { transform: scale(1.1); }
.amenity-card h4 {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  letter-spacing: 0.03em;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
#testimonials {
  background: var(--color-off-white);
  padding: 100px 0;
  overflow: hidden;
}
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-header .section-title { color: var(--color-dark-text); }

.testimonials-track-outer { position: relative; }
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 8px;
}
.testimonial-card {
  flex: unset;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid var(--color-gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.quote-icon {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.star-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.star {
  width: 14px;
  height: 14px;
  color: var(--color-gold);
  fill: var(--color-gold);
}
.testimonial-text {
  font-size: 0.925rem;
  color: var(--color-body-text);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: normal;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gold);
  flex-shrink: 0;
}
.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark-text);
}
.author-location {
  font-size: 0.75rem;
  color: var(--color-body-text);
}

.testimonials-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-gold);
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  cursor: pointer;
  transition: var(--transition);
}
.carousel-btn:hover {
  background: var(--color-gold);
  color: var(--color-navy-dark);
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-light-gray);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.dot.active { background: var(--color-gold); transform: scale(1.3); }

/* ── SPECIFICATIONS ─────────────────────────────────────────── */
#specifications {
  background: var(--color-navy);
  padding: 100px 0;
}
.specs-header { text-align: center; margin-bottom: 56px; }

.accordion-list { display: flex; flex-direction: column; gap: 2px; max-width: 900px; margin: 0 auto; }
.spec-item {
  border: 1px solid rgba(184,151,58,0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.spec-item.open { border-color: rgba(184,151,58,0.4); }
.spec-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.03);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}
.spec-item.open .spec-trigger,
.spec-trigger:hover { background: rgba(184,151,58,0.08); }
.spec-icon {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
  flex-shrink: 0;
}
.spec-trigger span:nth-child(2) {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.03em;
}
.spec-arrow {
  font-size: 0.65rem;
  color: var(--color-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.spec-item.open .spec-arrow { transform: rotate(180deg); }
.spec-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px 0 58px;
}
.spec-item.open .spec-content {
  max-height: 300px;
  padding: 16px 22px 20px 58px;
}
.spec-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  letter-spacing: 0.01em;
}

/* ── LOCATION ───────────────────────────────────────────────── */
#location {
  background: var(--color-off-white);
  padding: 100px 0;
  color: var(--color-dark-text);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.location-header .section-title { color: var(--color-dark-text); margin-bottom: 32px; }
.location-categories { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--color-light-gray); border-radius: var(--radius-sm); overflow: hidden; }
.location-category {
  border-bottom: 1px solid var(--color-light-gray);
  background: var(--color-white);
  transition: background 0.25s ease;
}
.location-category:last-child { border-bottom: none; }
.location-category.open { background: var(--color-off-white); }
.location-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.25s ease;
}
.location-cat-header:hover { background: rgba(184,151,58,0.05); }
.location-category.open .location-cat-header { border-bottom: 1px solid var(--color-light-gray); }
.location-cat-icon { font-size: 1.1rem; flex-shrink: 0; }
.location-cat-header h5 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  flex: 1;
  margin: 0;
}
.location-toggle-icon {
  color: var(--color-gold);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.location-category.open .location-toggle-icon { transform: rotate(180deg); }
.location-items {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 18px 14px;
}
.location-category.open .location-items { display: flex; }
.location-item {
  font-size: 0.78rem;
  color: var(--color-body-text);
  background: var(--color-off-white);
  border: 1px solid var(--color-light-gray);
  padding: 4px 12px;
  border-radius: 2px;
}

.map-container {
  position: sticky;
  top: 100px;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.map-container iframe {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
  filter: grayscale(20%);
}
.map-placeholder {
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, #1a2744 0%, #1e3060 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}
.map-placeholder svg { color: var(--color-gold); }

.infra-expansion {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid rgba(184,151,58,0.3);
  border-radius: var(--radius-sm);
  background: rgba(184,151,58,0.04);
}
.infra-expansion h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.infra-expansion p {
  font-size: 0.875rem;
  color: var(--color-body-text);
  line-height: 1.7;
}

/* ── FLOOR PLANS ────────────────────────────────────────────── */
#floor-plans {
  background: var(--color-navy);
  padding: 100px 0;
}
.floor-plans-header { text-align: center; margin-bottom: 48px; }

.floor-plan-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

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

.floor-plan-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.floor-plan-image-frame {
  border: 1px solid rgba(184,151,58,0.4);
  padding: 16px;
  border-radius: var(--radius-sm);
  position: relative;
}
.floor-plan-image-frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(184,151,58,0.2);
  pointer-events: none;
}
.floor-plan-image-frame img,
.floor-plan-image-frame .img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  filter: blur(8px);
  user-select: none;
  pointer-events: none;
}
.floor-plan-blur-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(14,26,48,0.55);
  border-radius: var(--radius-sm);
  text-align: center;
  padding: 24px;
  z-index: 2;
}
.floor-plan-blur-overlay svg {
  color: var(--color-gold);
  opacity: 0.9;
}
.floor-plan-blur-overlay p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-white);
  line-height: 1.4;
  margin: 0;
}
.floor-plan-blur-overlay a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-gold);
  color: var(--color-navy-dark);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.floor-plan-blur-overlay a:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

.area-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.area-table th {
  background: rgba(184,151,58,0.12);
  border: 1px solid rgba(184,151,58,0.2);
  padding: 12px 14px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.area-table td {
  border: 1px solid rgba(255,255,255,0.06);
  padding: 11px 14px;
  color: rgba(255,255,255,0.8);
}
.area-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.area-table tr:hover td { background: rgba(184,151,58,0.05); }

.floor-plan-cta { margin-top: 28px; }

/* ── GALLERY ────────────────────────────────────────────────── */
#gallery {
  background: var(--color-off-white);
  padding: 100px 0;
}
.gallery-header { text-align: center; margin-bottom: 40px; }
.gallery-header .section-title { color: var(--color-dark-text); }

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
/* Fix tab-btn visibility on light backgrounds */
.gallery-filters .tab-btn {
  color: var(--color-dark-text);
  border-color: rgba(184,151,58,0.4);
}
.gallery-filters .tab-btn:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.gallery-filters .tab-btn.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy-dark);
}

.gallery-grid {
  columns: 3;
  gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery-item img, .gallery-item .gallery-placeholder {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a2744 0%, #1e3060 50%, #0e1a30 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-style: italic;
}
.gallery-item:nth-child(3n+1) .gallery-placeholder { aspect-ratio: 4/5; }
.gallery-item:nth-child(3n+2) .gallery-placeholder { aspect-ratio: 3/2; }
.gallery-item:nth-child(3n)   .gallery-placeholder { aspect-ratio: 1/1; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,26,48,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img,
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-label {
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}
.gallery-frame-border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.gallery-item:hover .gallery-frame-border { border-color: var(--color-gold); }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#lightbox.open { display: flex; }
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(184,151,58,0.3);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 8px;
}
.lightbox-close:hover { color: var(--color-gold); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(184,151,58,0.2);
  border: 1px solid var(--color-gold);
  color: var(--color-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.lightbox-nav:hover { background: var(--color-gold); color: var(--color-navy-dark); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 12px;
  text-align: center;
}

/* ── CONSTRUCTION TIMELINE ──────────────────────────────────── */
#construction {
  background: var(--color-navy);
  padding: 100px 0;
}
.construction-header { text-align: center; margin-bottom: 64px; }
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  align-items: flex-start;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-card {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,151,58,0.2);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: border-color 0.3s ease;
}
.timeline-card:hover { border-color: var(--color-gold); }
.timeline-date {
  font-size: 0.75rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.timeline-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.timeline-card p {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.timeline-dot {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 3px solid var(--color-navy);
  box-shadow: 0 0 0 2px var(--color-gold);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.timeline-spacer { flex: 1; }

/* ── ABOUT BUILDER ──────────────────────────────────────────── */
#about {
  background: var(--color-off-white);
  padding: 100px 0;
  color: var(--color-dark-text);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.about-text .section-title { color: var(--color-dark-text); }
.about-text p {
  color: var(--color-body-text);
  line-height: 1.9;
  font-size: 1.075rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-top: 3px solid var(--color-gold);
}
.about-stat-item { text-align: center; }
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-size: 0.72rem;
  color: var(--color-body-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.about-image .image-frame { height: 100%; }
.about-image .img-placeholder { aspect-ratio: 3/4; }

.partners-section { margin-top: 48px; }
.partners-section h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-dark-text);
  margin-bottom: 24px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.partner-card {
  padding: 20px;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.partner-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 4px 16px rgba(184,151,58,0.1);
}
.partner-role {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}
.partner-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark-text);
  margin-bottom: 4px;
}
.partner-desc {
  font-size: 0.78rem;
  color: var(--color-body-text);
  line-height: 1.5;
}

.ongoing-projects { margin-top: 48px; }
.ongoing-projects h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-dark-text);
  margin-bottom: 24px;
}
.projects-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.project-chip {
  padding: 9px 18px;
  border: 1px solid rgba(184,151,58,0.5);
  border-radius: 2px;
  font-size: 0.8rem;
  color: var(--color-dark-text);
  font-weight: 500;
  transition: var(--transition);
  background: var(--color-white);
}
.project-chip:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy-dark);
}

/* ── LEAD FORM SECTION ──────────────────────────────────────── */
#lead-form {
  background: var(--color-navy);
  padding: 100px 0;
}
.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 64px;
  align-items: center;
}
.lead-form-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.lead-form-text p {
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-bottom: 32px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.contact-info-list { display: flex; flex-direction: column; gap: 12px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.contact-info-item svg { color: var(--color-gold); flex-shrink: 0; }
.contact-info-item a:hover { color: var(--color-gold); }

.lead-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,151,58,0.3);
  border-radius: var(--radius-md);
  padding: 40px 36px;
}

/* ── FAQs ───────────────────────────────────────────────────── */
#faqs {
  background: var(--color-off-white);
  padding: 100px 0;
  color: var(--color-dark-text);
}
.faqs-header { text-align: center; margin-bottom: 56px; }
.faqs-header .section-title { color: var(--color-dark-text); }

.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-white);
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: var(--color-gold); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}
.faq-trigger:hover { background: rgba(184,151,58,0.04); }
.faq-item.open .faq-trigger { background: rgba(184,151,58,0.05); }
.faq-question {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark-text);
  line-height: 1.4;
}
.faq-arrow {
  font-size: 0.65rem;
  color: var(--color-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 4px 22px 20px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-body-text);
  line-height: 1.9;
  letter-spacing: 0.01em;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer-bar {
  background: var(--color-navy-dark);
  border-top: 1px solid rgba(184,151,58,0.2);
  padding: 24px 0;
}

@media (max-width: 767px) {
  .footer-bar { padding-bottom: 90px; }
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.footer-inner p {
  font-size: 0.78rem;
  color: #ffffff;
  line-height: 1.6;
}
.footer-inner a { color: var(--color-gold); }
.footer-inner a:hover { text-decoration: underline; }
.disclaimer-small {
  font-size: 0.68rem !important;
  color: #ffffff;
  margin-top: 6px;
}

/* ── STICKY BOTTOM BAR ──────────────────────────────────────── */
.sticky-bar {
  display: none;
}

@media (max-width: 767px) {
  .sticky-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(14, 26, 48, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-gold);
    padding: 10px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  .sticky-bar.visible { transform: translateY(0); }
}
.sticky-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.sticky-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold);
}
.sticky-call {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: var(--transition);
  white-space: nowrap;
}
.sticky-call:hover { border-color: var(--color-gold); color: var(--color-gold); }
.sticky-cta {
  font-size: 0.8rem;
  padding: 10px 24px;
  white-space: nowrap;
}


/* ── TOAST ──────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9997;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: var(--font-ui);
  max-width: 360px;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(0); }
.toast-error { background: var(--color-error); color: white; }
.toast-success { background: var(--color-success); color: white; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1023px) {
.hero-grid { flex-direction: column; }
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .lead-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .floor-plan-content { grid-template-columns: 1fr; gap: 32px; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item:nth-child(2) { border-right: none; }
  .counter-item:nth-child(3) { border-top: 1px solid rgba(184,151,58,0.2); }
  .counter-item:nth-child(4) { border-top: 1px solid rgba(184,151,58,0.2); border-right: none; }
  .gallery-grid { columns: 2; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .usps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .mobile-form-section { display: block; }

  .hero-content { padding: 100px 0 60px; }
  .hero-grid[style] { padding-left: 24px !important; padding-right: 24px !important; }
  .hero-text { max-width: 100%; }
  .hero-specs { gap: 12px; }
  .hero-spec-item { font-size: 0.75rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; justify-content: center; }

  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item { padding: 28px 16px; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .amenity-card { padding: 18px 12px; }

  .gallery-grid { columns: 1; }

  .testimonials-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .testimonial-card { scroll-snap-align: start; flex: 0 0 300px; }
  .testimonials-controls { display: flex; }

  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: column !important; padding-left: 48px; }
  .timeline-dot {
    position: absolute;
    left: 14px;
    top: 6px;
  }
  .timeline-spacer { display: none; }

  .sticky-bar-inner { gap: 8px; }
  .sticky-logo { display: flex; }
  .sticky-logo img { height: 26px; }

  .usps-grid { grid-template-columns: repeat(2, 1fr); }
  .usps-grid { grid-template-columns: 1fr; }
  .usp-card { padding: 32px 24px; }

  .partners-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 16px; }

  .floor-plan-tabs { gap: 6px; }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-content { max-width: 95vw; }

  section { padding-top: 64px !important; padding-bottom: 64px !important; }

  .section-title { font-size: clamp(1.75rem, 6vw, 2.5rem) !important; }

  /* Gallery mobile slider */
  .gallery-grid {
    columns: unset;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-item {
    flex: 0 0 78vw;
    scroll-snap-align: start;
    margin-bottom: 0;
  }
  .gallery-item .gallery-placeholder,
  .gallery-item img { aspect-ratio: 4/3; object-fit: cover; height: auto; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-filters { gap: 6px; }
  .tab-btn, .gallery-filters .tab-btn { padding: 7px 14px; font-size: 0.72rem; }
  .sticky-call span { display: none; }
}

/* ── Sticky Side Tab ─────────────────────────────────────── */
.sticky-side-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--gold, #b8965a);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 10px;
  border-radius: 0px 0 0 0px;
  z-index: 900;
  box-shadow: -3px 0 12px rgba(0,0,0,0.18);
  transition: background 0.25s, padding 0.25s;
}
.sticky-side-tab:hover {
  background: var(--gold-dark, #9a7a42);
  padding: 18px 14px;
}
@media (max-width: 768px) {
  .sticky-side-tab { display: none; }
}

.hero-bg-mobile { display: none; }
@media (max-width: 768px) {
  .hero-bg-desktop { display: none; }
  .hero-bg-mobile  { display: block; }
}
