/* =============================================================================
   TVH SERENITY — Main Stylesheet
   Project  : TVH Serenity, Avinashi, Tirupur
   Fonts    : Playfair Display (headings) · Lato (body)
   Colors   : Navy #1a3e5c · Gold #e8a820 · Off-White #f8f6f2
   ============================================================================= */

/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; width: 100%; max-width: 100%; }

:root {
  --navy:        #1a3e5c;
  --navy-dark:   #0f2537;
  --navy-mid:    #245070;
  --gold:        #e8a820;
  --gold-light:  #f5c842;
  --gold-pale:   #fdf3d8;
  --white:       #ffffff;
  --off-white:   #f8f6f2;
  --grey-light:  #eef1f5;
  --grey-text:   #6b7a8d;
  --text-dark:   #1a2836;
  --shadow-sm:   0 4px 16px rgba(26,62,92,0.10);
  --shadow-md:   0 12px 40px rgba(26,62,92,0.18);
  --shadow-lg:   0 24px 64px rgba(26,62,92,0.22);
  --radius:      12px;
  --radius-lg:   20px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; background: var(--navy-dark); }

body {
  font-family: 'Lato', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}

img { display: block; max-width: 100%; width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ─── CUSTOM SCROLLBAR ──────────────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--grey-light); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── LAYOUT UTILITIES ──────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-label::before {
  content: ''; display: block; width: 28px; height: 2px; background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700; color: var(--navy-dark); line-height: 1.2;
}

.gold-line {
  display: block; width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; margin-top: 18px;
}

/* ─── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy-dark);
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 50px; border: none; cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 24px rgba(232,168,32,0.35);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,168,32,0.50);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 13px 30px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.55); cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold); transform: translateY(-2px);
}

/* ─── SCROLL REVEAL ANIMATIONS ──────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* ─── KEYFRAMES ─────────────────────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}
@keyframes pulse {
  0%, 100% { opacity:1; transform:scale(1); }
  50%       { opacity:0.5; transform:scale(1.4); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%     { transform: translateX(-8px); }
  40%     { transform: translateX(8px); }
  60%     { transform: translateX(-5px); }
  80%     { transform: translateX(5px); }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0; transition: all 0.4s var(--ease);
}
#nav {
  background: rgba(10,25,40,0.75);
  backdrop-filter: blur(12px);
}
#nav.scrolled {
  background: rgba(10,25,40,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px; max-width: 1280px; margin: 0 auto;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .logo-tvh {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 1.5rem; color: var(--white); letter-spacing: 0.04em;
}
.nav-logo .logo-tvh span { color: var(--gold); }
.nav-logo .logo-sub {
  font-family: 'Lato', sans-serif; font-weight: 300;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold); color: var(--navy-dark);
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 50px;
  transition: all 0.3s; cursor: pointer; border: none;
  box-shadow: 0 2px 12px rgba(232,168,32,0.4);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  display: block;
  background: none;
  padding: 0;
  margin: 0;
  line-height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1e2f 0%, #1a3e5c 40%, #0f2537 100%);
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,32,0.08) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.shape-1 { width: 500px; height: 500px; top: -100px; right: -100px; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; bottom: 10%; left: 5%;  animation-delay: -3s; }
.shape-3 { width: 200px; height: 200px; top: 40%;  right: 25%; animation-delay: -5s; }

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,168,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,168,32,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-accent-bar {
  position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
  max-width: 1280px; margin: 0 auto; padding: 120px 40px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,168,32,0.12); border: 1px solid rgba(232,168,32,0.3);
  border-radius: 50px; padding: 6px 16px; margin-bottom: 28px;
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  animation: fadeInDown 0.8s var(--ease) 0.2s both;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s ease-in-out infinite;
}
.hero-eyebrow {
  font-family: 'Lato', sans-serif; font-weight: 300; font-size: 0.82rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 12px;
  animation: fadeInRight 0.8s var(--ease) 0.4s both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700; line-height: 1.1; color: var(--white);
  animation: fadeInUp 0.9s var(--ease) 0.5s both;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-title .hero-sub-word {
  display: block; font-weight: 400; font-size: 0.55em;
  color: rgba(255,255,255,0.7); letter-spacing: 0.04em;
  font-style: normal; margin-top: 6px;
}
.hero-desc {
  margin: 24px 0 36px;
  font-family: 'Lato', sans-serif; font-weight: 300; font-size: 1.05rem;
  color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 440px;
  animation: fadeInUp 0.9s var(--ease) 0.7s both;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeInUp 0.9s var(--ease) 0.9s both;
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 52px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.9s var(--ease) 1.1s both;
}
.stat-num {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 2rem; color: var(--gold); line-height: 1;
}
.stat-label {
  font-family: 'Lato', sans-serif; font-weight: 400; font-size: 0.75rem;
  color: rgba(255,255,255,0.5); letter-spacing: 0.06em;
  margin-top: 4px; text-transform: uppercase;
}
.hero-right { position: relative; animation: scaleIn 1s var(--ease) 0.6s both; }
.hero-img-wrapper {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-img-wrapper img {
  width: 100%; height: 520px; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.hero-img-wrapper:hover img { transform: scale(1.03); }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,37,55,0.6) 100%);
}
.hero-img-tag {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero-img-tag-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 1.1rem;
}
.hero-img-tag-text strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 600; color: var(--white);
}
.hero-img-tag-text span {
  font-family: 'Lato', sans-serif; font-size: 0.72rem;
  color: rgba(255,255,255,0.65); letter-spacing: 0.04em;
}
.hero-float-badge {
  position: absolute; top: -18px; right: -18px;
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(232,168,32,0.5);
  animation: rotateBadge 12s linear infinite;
}
.hero-float-badge-inner {
  display: flex; flex-direction: column; align-items: center;
  animation: rotateBadge 12s linear infinite reverse;
}
.hero-float-badge .badge-num {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 1.35rem; color: var(--navy-dark); line-height: 1;
}
.hero-float-badge .badge-txt {
  font-family: 'Lato', sans-serif; font-size: 0.52rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy-dark); text-align: center; line-height: 1.2;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; animation: fadeInUp 1s var(--ease) 1.3s both;
}
.hero-scroll span {
  font-family: 'Lato', sans-serif; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--gold); overflow: hidden; padding: 14px 0; white-space: nowrap;
}
.marquee-inner { display: inline-flex; animation: marqueeScroll 22s linear infinite; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--navy-dark); padding: 0 28px;
}
.marquee-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--navy-dark); opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
#about { padding: 110px 0; background: var(--off-white); position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-imgs  { position: relative; height: 560px; }
.about-img-main {
  position: absolute; top: 0; left: 0; right: 80px; bottom: 80px;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.about-img-main img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s var(--ease); }
.about-img-main:hover img { transform: scale(1.04); }
.about-img-accent {
  position: absolute; bottom: 0; right: 0; width: 55%; height: 52%;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid var(--white);
}
.about-img-accent img { width:100%; height:100%; object-fit:cover; }
.about-counter-pill {
  position: absolute; top: 50%; left: -24px; transform: translateY(-50%);
  background: var(--navy); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow-md);
  min-width: 110px; text-align: center;
}
.about-counter-pill .num {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 1.8rem; color: var(--gold); line-height: 1;
}
.about-counter-pill .lbl {
  font-family: 'Lato', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 4px;
}
.about-content { padding-left: 20px; }
.about-content .section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.about-text {
  font-family: 'Lato', sans-serif; font-weight: 300; font-size: 1rem;
  color: var(--grey-text); line-height: 1.8; margin: 20px 0 32px;
}
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-feat {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px; box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.about-feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-left: 3px solid var(--gold); }
.about-feat-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--gold-pale); display: flex;
  align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.about-feat-text strong { display:block; font-family:'Lato',sans-serif; font-size:0.8rem; font-weight:700; color:var(--navy); }
.about-feat-text span   { font-size:0.73rem; color:var(--grey-text); }

/* ═══════════════════════════════════════════════════════════════════════════════
   UNITS SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
#units { padding: 110px 0; background: var(--white); }
.units-header { text-align: center; margin-bottom: 60px; }
.units-header .section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.units-header .section-label { justify-content: center; }
.units-header .section-label::before { display: none; }
.units-header .section-label::after { content:''; display:block; width:28px; height:2px; background:var(--gold); }
.units-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.unit-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid rgba(26,62,92,0.07);
  transition: all 0.4s var(--ease);
}
.unit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.unit-card-top {
  background: var(--navy); padding: 28px 24px;
  position: relative; overflow: hidden;
}
.unit-card-top::after {
  content:''; position:absolute; bottom:-20px; right:-20px;
  width:80px; height:80px; border-radius:50%;
  background: rgba(232,168,32,0.12);
}
.unit-num {
  font-family: 'Playfair Display', serif; font-weight: 400; font-size: 0.75rem;
  color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase;
}
.unit-type {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.5rem; color: var(--white); margin-top: 4px;
}
.unit-facing-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(232,168,32,0.18); border: 1px solid rgba(232,168,32,0.35);
  border-radius: 50px; padding: 3px 10px; margin-top: 12px;
  font-family: 'Lato', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
}
.unit-card-body { padding: 24px; }
.unit-area {
  font-family: 'Playfair Display', serif; font-size: 1.9rem;
  font-weight: 700; color: var(--navy-dark); line-height: 1;
}
.unit-area span { font-family:'Lato',sans-serif; font-size:0.75rem; font-weight:400; color:var(--grey-text); }
.unit-divider  { height:1px; background:rgba(26,62,92,0.08); margin:16px 0; }
.unit-ids      { font-family:'Lato',sans-serif; font-size:0.75rem; color:var(--grey-text); }
.unit-ids strong { color:var(--navy); font-weight:700; }

/* ═══════════════════════════════════════════════════════════════════════════════
   AMENITIES SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
#amenities {
  padding: 110px 0;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
#amenities::before {
  content:''; position:absolute; top:-100px; right:-100px;
  width:400px; height:400px; border-radius:50%;
  background: radial-gradient(circle, rgba(232,168,32,0.07) 0%, transparent 70%);
}
#amenities::after {
  content:''; position:absolute; bottom:-80px; left:-80px;
  width:300px; height:300px; border-radius:50%;
  background: radial-gradient(circle, rgba(232,168,32,0.05) 0%, transparent 70%);
}
.amenities-header { text-align:center; margin-bottom:60px; }
.amenities-header .section-label { color:var(--gold); justify-content:center; }
.amenities-header .section-label::before { display:none; }
.amenities-header .section-label::after { content:''; display:block; width:28px; height:2px; background:var(--gold); }
.amenities-header .section-title { color:var(--white); font-size:clamp(2rem,3.5vw,2.8rem); }
.amenities-header p {
  font-family:'Lato',sans-serif; font-weight:300; font-size:1rem;
  color:rgba(255,255,255,0.6); max-width:500px; margin:14px auto 0; line-height:1.75;
}
.amenities-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding: 40px 0 60px;
}
/*.amenity-card {*/
/*  flex: 0 0 200px;*/
/*  height: 300px;*/
/*  border-radius: 24px !important;*/
/*  padding: 28px 20px !important;*/
/*  transition: transform 0.35s ease, box-shadow 0.35s ease;*/
/*}*/
.amenity-card:nth-child(odd)  { transform: translateY(-30px); }
.amenity-card:nth-child(even) { transform: translateY(30px);  }
.amenity-card:hover {
  transform: translateY(-50px) scale(1.05) !important;
  z-index: 99 !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5) !important;
}
.amenity-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  transition: all 0.4s var(--ease); backdrop-filter: blur(8px);
  position: relative; overflow: hidden;
}
.amenity-card::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(232,168,32,0.1) 0%, transparent 60%);
  opacity:0; transition:opacity 0.4s;
}
.amenity-card:hover {
  background: rgba(255,255,255,0.10); border-color: rgba(232,168,32,0.4);
  transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.amenity-card:hover::before { opacity:1; }
.amenity-icon {
  width:60px; height:60px; border-radius:50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 18px; font-size:1.5rem;
  box-shadow:0 6px 20px rgba(232,168,32,0.35);
  transition:transform 0.3s var(--ease);
}
.amenity-card:hover .amenity-icon { transform: scale(1.1) rotate(5deg); }
.amenity-name {
  font-family:'Lato',sans-serif; font-weight:700; font-size:0.85rem;
  letter-spacing:0.05em; text-transform:uppercase; color:var(--white); margin-bottom:8px;
}
.amenity-desc { font-family:'Lato',sans-serif; font-weight:300; font-size:0.78rem; color:rgba(255,255,255,0.55); line-height:1.6; }

/* ═══════════════════════════════════════════════════════════════════════════════
   SPECIFICATIONS SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
#specs { padding:110px 0; background:var(--off-white); }
.specs-layout { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.specs-content .section-title { font-size:clamp(2rem,3vw,2.6rem); margin-bottom:18px; }
.specs-intro {
  font-family:'Lato',sans-serif; font-weight:300; font-size:1rem;
  color:var(--grey-text); line-height:1.8; margin-bottom:36px;
}
.specs-list { display:flex; flex-direction:column; gap:4px; }
.spec-item {
  display:flex; align-items:flex-start;
  background:var(--white); border-radius:var(--radius);
  overflow:hidden; border:1px solid rgba(26,62,92,0.06);
  transition:all 0.3s var(--ease);
}
.spec-item:hover { box-shadow:var(--shadow-sm); border-color:rgba(232,168,32,0.3); }
.spec-key {
  background:var(--navy); color:rgba(255,255,255,0.85);
  font-family:'Lato',sans-serif; font-weight:700; font-size:0.72rem;
  letter-spacing:0.1em; text-transform:uppercase;
  padding:16px 18px; min-width:130px; flex-shrink:0; display:flex; align-items:center;
}
.spec-val {
  font-family:'Lato',sans-serif; font-weight:400; font-size:0.85rem;
  color:var(--text-dark); padding:14px 18px; line-height:1.5; flex:1;
}
.specs-right { display:flex; flex-direction:column; gap:20px; }
.spec-highlight {
  background:var(--navy); border-radius:var(--radius-lg);
  padding:32px; position:relative; overflow:hidden;
}
.spec-highlight::after {
  content:''; position:absolute; bottom:-30px; right:-30px;
  width:120px; height:120px; border-radius:50%; background:rgba(232,168,32,0.1);
}
.spec-hl-title {
  font-family:'Playfair Display',serif; font-weight:700;
  font-size:1.1rem; color:var(--gold); margin-bottom:16px;
}
.spec-hl-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.spec-hl-list li {
  display:flex; align-items:flex-start; gap:10px;
  font-family:'Lato',sans-serif; font-size:0.83rem;
  color:rgba(255,255,255,0.75); line-height:1.5;
}
.spec-hl-list li::before { content:'✦'; color:var(--gold); font-size:0.6rem; margin-top:3px; flex-shrink:0; }
.rera-box {
  border:2px solid rgba(26,62,92,0.12); border-radius:var(--radius-lg);
  padding:24px; background:var(--white); display:flex; align-items:center; gap:16px;
}
.rera-icon {
  width:50px; height:50px; background:var(--gold-pale);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; flex-shrink:0;
}
.rera-text strong {
  display:block; font-family:'Lato',sans-serif; font-weight:700;
  font-size:0.75rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--navy);
}
.rera-text span { font-family:'Lato',sans-serif; font-size:0.75rem; color:var(--grey-text); }
.tvh-info-box {
  border-radius:var(--radius-lg); overflow:hidden;
}
.tvh-info-box img {
  width:100%; height:100%; object-fit:cover;
  border-radius:var(--radius-lg);
  transition: transform 0.4s var(--ease);
}
.tvh-info-box img:hover { transform:scale(1.03); }
/* ═══════════════════════════════════════════════════════════════════════════════
   LOCATION SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
#location { padding:110px 0; background:var(--white); }
.location-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.location-left .section-title { font-size:clamp(2rem,3vw,2.6rem); }
.location-address {
  display:flex; align-items:flex-start; gap:12px; margin:20px 0 32px;
  font-family:'Lato',sans-serif; font-weight:400; font-size:0.9rem;
  color:var(--grey-text); line-height:1.65;
}
.location-address .pin-icon { font-size:1.2rem; margin-top:1px; }
.advantages-list { display:flex; flex-direction:column; gap:14px; }
.advantage-item {
  display:flex; align-items:center; gap:16px;
  padding:16px 20px; border-radius:var(--radius);
  background:var(--off-white); border:1px solid rgba(26,62,92,0.06);
  transition:all 0.3s var(--ease);
}
.advantage-item:hover {
  background:var(--white); box-shadow:var(--shadow-sm);
  border-color:rgba(232,168,32,0.3); transform:translateX(6px);
}
.adv-icon {
  width:40px; height:40px; border-radius:10px; background:var(--navy);
  display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0;
}
.adv-text strong { display:block; font-family:'Lato',sans-serif; font-weight:700; font-size:0.82rem; color:var(--navy); }
.adv-text span   { font-family:'Lato',sans-serif; font-size:0.74rem; color:var(--grey-text); }
.location-map {
  position:relative; border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-md); aspect-ratio:1; background:var(--grey-light);
}
.location-map iframe { width:100%; height:100%; border:none; filter:saturate(0.8) contrast(1.05); }
.map-badge {
  position:absolute; bottom:20px; left:50%; transform:translateX(-50%);
  background:var(--navy); color:var(--white);
  font-family:'Lato',sans-serif; font-weight:700; font-size:0.75rem;
  letter-spacing:0.08em; padding:10px 20px; border-radius:50px;
  box-shadow:var(--shadow-md); white-space:nowrap; border-left:3px solid var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
#contact {
  padding:110px 0;
  background:linear-gradient(160deg, var(--navy-dark) 0%, #0d2d45 100%);
  position:relative; overflow:hidden;
}
.contact-bg-art {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(232,168,32,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,168,32,0.03) 1px, transparent 1px);
  background-size:50px 50px;
}
.contact-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:80px;
  align-items:center; position:relative; z-index:1;
}
.contact-left .section-label { color:var(--gold); }
.contact-left .section-title { color:var(--white); font-size:clamp(2rem,3vw,2.6rem); }
.contact-desc {
  font-family:'Lato',sans-serif; font-weight:300; font-size:1rem;
  color:rgba(255,255,255,0.6); line-height:1.8; margin:18px 0 36px;
}
.contact-info { display:flex; flex-direction:column; gap:20px; }
.contact-info-item { display:flex; align-items:center; gap:16px; }
.ci-icon {
  width:44px; height:44px; border-radius:50%;
  background:rgba(232,168,32,0.15); border:1px solid rgba(232,168,32,0.3);
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; flex-shrink:0;
}
.ci-text strong {
  display:block; font-family:'Lato',sans-serif; font-weight:700;
  font-size:0.75rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold);
}
.ci-text span { font-family:'Lato',sans-serif; font-size:0.88rem; color:rgba(255,255,255,0.75); }

/* ─── FORM CARD ─── */
.contact-form-card {
  background:var(--white); border-radius:var(--radius-lg);
  padding:44px; box-shadow:var(--shadow-lg);
}
.form-title {
  font-family:'Playfair Display',serif; font-weight:700;
  font-size:1.4rem; color:var(--navy-dark); margin-bottom:28px;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.form-group label {
  font-family:'Lato',sans-serif; font-weight:700; font-size:0.72rem;
  letter-spacing:0.1em; text-transform:uppercase; color:var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%;
  font-family:'Lato',sans-serif; font-size:0.88rem; color:var(--text-dark);
  background:var(--off-white); border:1.5px solid rgba(26,62,92,0.12);
  border-radius:8px; padding:12px 14px; outline:none;
  transition:border-color 0.25s, box-shadow 0.25s; appearance:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(232,168,32,0.12);
  background:var(--white);
}
.form-group textarea { resize:vertical; min-height:90px; }
.form-required { color:#d9534f; }
.form-error-banner {
  background:#fff3f3; border:1px solid #f5c6c6; border-left:4px solid #d9534f;
  border-radius:8px; padding:12px 16px; margin-bottom:20px;
  font-family:'Lato',sans-serif; font-size:0.82rem; color:#a94442; line-height:1.6;
}
.form-submit {
  width:100%; padding:15px;
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color:var(--navy-dark); font-family:'Lato',sans-serif;
  font-weight:900; font-size:0.85rem; letter-spacing:0.12em; text-transform:uppercase;
  border:none; border-radius:8px; cursor:pointer;
  transition:all 0.3s var(--ease);
  box-shadow:0 4px 20px rgba(232,168,32,0.35); margin-top:8px;
}
.form-submit:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(232,168,32,0.5); }
.form-note {
  font-family:'Lato',sans-serif; font-size:0.68rem;
  color:var(--grey-text); text-align:center; margin-top:12px;
}
.form-success-box { text-align:center; padding:40px 20px; }
.form-success-box .success-icon { font-size:3rem; margin-bottom:16px; }
.form-success-box h3 {
  font-family:'Playfair Display',serif; font-weight:700;
  font-size:1.3rem; color:var(--navy-dark); margin-bottom:10px;
}
.form-success-box p {
  font-family:'Lato',sans-serif; font-size:0.9rem; color:var(--grey-text); line-height:1.7;
}
.form-success-box a {
  display:inline-block; margin-top:24px;
  font-family:'Lato',sans-serif; font-size:0.78rem; font-weight:700;
  letter-spacing:0.1em; text-transform:uppercase;
  color:var(--gold); border-bottom:1px solid var(--gold); padding-bottom:2px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════════ */
footer {
  background:var(--navy-dark); padding:40px 0 24px;
  border-top:1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

body {
  background: var(--navy-dark);
}
.footer-inner {
  max-width:1200px; margin:0 auto; padding:0 40px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;
}
.footer-logo { font-family:'Playfair Display',serif; font-weight:700; font-size:1.2rem; color:var(--white); }
.footer-logo span { color:var(--gold); }
.footer-rera  { font-family:'Lato',sans-serif; font-size:0.72rem; color:rgba(255,255,255,0.4); text-align:center; }
.footer-rera a { color:var(--gold); }
.footer-copy  { font-family:'Lato',sans-serif; font-size:0.72rem; color:rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════════════════════════════════════════
   FLOATING CTA
   ═══════════════════════════════════════════════════════════════════════════════ */
.floating-cta {
  position:fixed; bottom:32px; right:32px; z-index:900;
  display:flex; flex-direction:column; gap:10px; align-items:flex-end;
  opacity:0; transform:translateY(20px); pointer-events:none;
  transition:all 0.4s var(--ease);
}
.floating-cta.visible { opacity:1; transform:translateY(0); pointer-events:auto; }
.fcta-btn {
  background:var(--gold); color:var(--navy-dark);
  font-family:'Lato',sans-serif; font-weight:700; font-size:0.78rem;
  letter-spacing:0.08em; text-transform:uppercase;
  padding:12px 22px; border-radius:50px; border:none; cursor:pointer;
  box-shadow:0 6px 24px rgba(232,168,32,0.5);
  transition:all 0.3s var(--ease);
  display:flex; align-items:center; gap:8px;
}
.fcta-btn:hover { background:var(--gold-light); transform:scale(1.04); }
.fcta-call { background:var(--navy); color:var(--white); box-shadow:0 6px 24px rgba(15,37,55,0.4); }
.fcta-call:hover { background:var(--navy-mid); }

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content  { grid-template-columns:1fr; gap:48px; padding-top:140px; }
  .hero-right    { display:none; }
  .hero-stats    { gap:28px; }
  .about-grid, .location-grid,
  .contact-grid, .specs-layout { grid-template-columns:1fr; gap:48px; }
  .units-grid     { grid-template-columns:repeat(2,1fr); }
  .amenities-grid { grid-template-columns:repeat(2,1fr); }
  .about-imgs     { height:400px; }
  .about-counter-pill { left:0; }
  .about-content  { padding-left:0; }
  .form-row       { grid-template-columns:1fr; }
}
@media (max-width: 768px) {
  #hero { margin-top: 0; padding-top: 66px; }
  .container      { padding:0 20px; }
  .nav-inner      { padding:18px 20px; }
  .nav-links      { display:none; }
  .hero-content   { padding:120px 20px 60px; }
  .units-grid     { grid-template-columns:1fr 1fr; gap:16px; }
  .amenities-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    padding: 0 !important;
  }
  .amenity-card {
    flex: unset !important;
    margin-right: 0 !important;
    transform: none !important;
    height: auto !important;
  }
  .amenity-card:nth-child(odd),
  .amenity-card:nth-child(even) {
    transform: none !important;
  }
  .contact-form-card { padding:28px 20px; }
  .footer-inner   { flex-direction:column; text-align:center; }
  .floating-cta   { bottom:20px; right:20px; }
  .float-brochure { bottom:20px; left:20px; }
}
@media (max-width: 480px) {
  .units-grid     { grid-template-columns:1fr; }
  .amenities-grid { grid-template-columns:1fr; }
  .about-features { grid-template-columns:1fr; }
  .hero-stats     { flex-wrap:wrap; gap:20px; }
}
/* ─── POPUP ─── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.popup-overlay.active { opacity: 1; pointer-events: auto; }
.popup-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 44px 40px; max-width: 480px; width: 90%;
  position: relative; box-shadow: var(--shadow-lg);
  transform: translateY(30px);
  transition: transform 0.4s ease;
}
.popup-overlay.active .popup-box { transform: translateY(0); }
.popup-close {
  position: absolute; top: 16px; right: 20px;
  font-size: 1.4rem; cursor: pointer; color: var(--grey-text);
  background: none; border: none; line-height: 1;
}
.popup-close:hover { color: var(--navy); }
.popup-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.5rem; color: var(--navy-dark); margin-bottom: 6px;
}
.popup-sub {
  font-family: 'Lato', sans-serif; font-size: 0.88rem;
  color: var(--grey-text); margin-bottom: 24px; line-height: 1.6;
}

/* ─── DOWNLOAD BROCHURE FLOATING ─── */
.float-brochure {
  position: fixed; bottom: 32px; left: 32px; z-index: 900;
  background: var(--navy); color: var(--white);
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 13px 22px; border-radius: 50px; border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(15,37,55,0.4);
  display: flex; align-items: center; gap: 8px;
  transition: all 0.3s ease;
  opacity: 0; transform: translateY(20px); pointer-events: none;
}
.float-brochure.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-brochure:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ─── CALL POPUP ─── */
.call-popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.call-popup-overlay.active { opacity: 1; pointer-events: auto; }
.call-popup-overlay .popup-box { max-width: 420px; }
