/* ===================================================
   COASTAL TOWNHOMES — Main Stylesheet
   Palette: Navy #1B3544 | Ocean #3A7CA5 | Gold/Tan #C5A87D | Sky #D6EAF0
   Fonts: Playfair Display (headings) + DM Sans (body) + Montserrat (nav/labels)
   =================================================== */

:root {
  --navy: #1B3544;
  --navy-dark: #0F2230;
  --navy-light: #264A5E;
  --ocean: #3A7CA5;
  --ocean-light: #4D9BC4;
  --ocean-dark: #2B6080;
  --gold: #C5A87D;
  --gold-light: #D4BA94;
  --gold-dark: #A88B60;
  --sky: #D6EAF0;
  --sky-light: #E8F4F8;
  --cream: #F7F5F2;
  --cream-dark: #E8E4DF;
  --sand: #F0EDE8;
  --charcoal: #1A1A1A;
  --text: #3D3D3D;
  --text-light: #5D5D5D;
  --white: #fff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Roboto', 'DM Sans', -apple-system, sans-serif;
  --font-nav: 'Montserrat', -apple-system, sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
html { scroll-behavior: auto; }
img { max-width:100%; height:auto; display:block; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
a { color: inherit; text-decoration: none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }

/* -- Typography -- */
h1,h2,h3,h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(1.5rem, 3.5vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.text-center { text-align: center; }
.section-label {
  display:block;
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-desc { max-width: 640px; margin: 0 auto 48px; color: var(--text-light); text-align:center; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: clamp(60px,8vw,120px) 24px; }

/* -- Buttons -- */
.btn-primary {
  display:inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #1a6fa0 0%, var(--ocean) 50%, #1a6fa0 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 20px rgba(26,111,160,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position:relative; overflow:hidden;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(26,111,160,0.5); background: linear-gradient(135deg, #155d88 0%, #1a6fa0 50%, #155d88 100%); }
.btn-primary::after {
  content:''; position:absolute; top:0; left:-100%; width:100%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::after { left: 100%; }

.btn-ghost {
  display:inline-block;
  padding: 16px 40px;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.85);
  transition: background 0.3s, border-color 0.3s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); border-color: #ffffff; }

.btn-outline {
  display:inline-block;
  padding: 12px 32px;
  background: transparent;
  color: #1a6fa0;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid #1a6fa0;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: #1a6fa0; color: #ffffff; }

/* -- Fade-in animation -- */
.fade-in { opacity:0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-in.visible { opacity:1; transform: translateY(0); }
.fd1 { transition-delay: 0.1s; } .fd2 { transition-delay: 0.2s; } .fd3 { transition-delay: 0.3s; }
.fd4 { transition-delay: 0.4s; } .fd5 { transition-delay: 0.5s; }

/* ===================================================
   NAVIGATION
   =================================================== */
.ct-nav {
  position: fixed; top:0; left:0; right:0; z-index:50;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav-transparent, .nav-solid { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 8px rgba(0,0,0,0.08); }
@media (max-width: 768px) {
  .nav-transparent, .nav-solid { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 8px rgba(0,0,0,0.08); }
}
.nav-inner {
  max-width: 1260px; margin:0 auto; padding: 0 32px;
  display:flex; align-items:center; justify-content:space-between; height: 80px;
}
.nav-logo img { width: clamp(160px, 20vw, 280px); height: auto; }
@media (max-width: 768px) {
  .nav-inner { justify-content: center; overflow: visible; height: 64px; }
  .ct-nav { overflow: visible; }
  .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); top: 50%; transform: translate(-50%, -50%); }
  .nav-logo img { width: clamp(180px, 55vw, 260px); height: auto; filter: none; }
  .mobile-menu-btn { position: absolute; right: 16px; }
}
.nav-links {
  display:flex; align-items:center; gap:24px; list-style:none;
}
.nav-links a {
  font-family: var(--font-nav);
  font-size: 0.72rem; font-weight: 600; color: var(--navy);
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.3s;
  position:relative;
}
.nav-links a:hover { color: var(--ocean); }
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; width:0; height:1.5px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width:100%; }
.nav-cta {
  background: var(--ocean) !important; color: var(--white) !important;
  padding: 8px 22px !important; border-radius: 50px !important;
  font-weight: 600 !important; font-size: 0.7rem !important;
  letter-spacing: 0.08em !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { opacity:0.9; }

.mobile-menu-btn { display:none; flex-direction:column; gap:5px; padding:8px; }
.mobile-menu-btn span { display:block; width:24px; height:2px; background:var(--navy); transition: transform 0.3s, opacity 0.3s; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity:0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===================================================
   HERO
   =================================================== */
.ct-hero {
  position:relative; height:100svh; height:100vh; min-height:600px; overflow:visible;
  display:flex; align-items:center; justify-content:center;
}
.hero-bg-wrap {
  position:absolute; top:0; left:0; width:100%; height:100%; z-index:0;
  overflow:hidden;
}
.hero-overlay {
  position:absolute; inset:0; z-index:2;
  background: linear-gradient(
    180deg,
    rgba(27,53,68,0.45) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.55) 80%,
    rgba(27,53,68,0.8) 100%
  );
}
.hero-content {
  position:relative; z-index:3;
  text-align:center; padding: 0 24px;
  max-width: 800px;
  margin-bottom: 180px;
}
/* Hero logo block — between CTAs and feature strip */
.hero-logo-block {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-top-logo {
  width: clamp(220px, 30vw, 340px);
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
  margin-bottom: 6px;
}
.hero-by-deco {
  font-family: var(--font-nav);
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-inline-logo {
  display: none;
}

.hero-location {
  display: none;
  font-family: var(--font-nav);
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 12px;
}
/* Hero h1 */
.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 4px 30px rgba(0,0,0,0.3);
}
.hero-mobile-title {
  width: clamp(300px, 40vw, 520px);
  height: auto;
  margin: 0 auto 24px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
/* Hero About Block — between hero and highlights */
.ct-hero-about {
  background: var(--white);
  text-align: center;
}
.ct-hero-about h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.ct-hero-about p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.hero-ctas { display:flex; flex-wrap:wrap; justify-content:center; gap:16px; }
.hero-ctas-mobile {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--white);
}
.btn-sm {
  padding: 10px 20px !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.05em !important;
}

/* Hero Feature Strip */
.hero-feature-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  background: transparent;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 32px 36px;
  gap: 48px;
}
.hf-item {
  text-align: center;
  max-width: 200px;
  flex: 0 1 200px;
  animation: hfFadeUp 0.8s cubic-bezier(0.25,0.46,0.45,0.94) both;
}
.hf-item:nth-child(1) { animation-delay: 0.6s; }
.hf-item:nth-child(2) { animation-delay: 0.75s; }
.hf-item:nth-child(3) { animation-delay: 0.9s; }
.hf-item:nth-child(4) { animation-delay: 1.05s; }
@keyframes hfFadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hf-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.hf-circle:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
.hf-circle-ocean { background: linear-gradient(135deg, #4D9BC4, #3A7CA5); }
.hf-circle-green { background: linear-gradient(135deg, #8BA854, #6D8C3C); }
.hf-circle-gold { background: linear-gradient(135deg, #D4BA94, #C5A87D); }
.hf-circle-silver { background: linear-gradient(135deg, #8FA5B2, #6E8898); }

.hf-item h4 {
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hf-item p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.hero-scroll-indicator {
  position:absolute; bottom:100px; left:50%; transform:translateX(-50%);
  z-index:3; text-align:center;
}
.hero-scroll-indicator span {
  display:block; color:rgba(255,255,255,0.5); font-size:0.7rem;
  letter-spacing:0.15em; text-transform:uppercase; margin-bottom:8px;
}
.scroll-line { width:1px; height:40px; background: rgba(255,255,255,0.2); margin:0 auto; position:relative; overflow:hidden; }
.scroll-line::after {
  content:''; position:absolute; top:-40px; left:0; width:1px; height:40px;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{top:-40px} 100%{top:40px} }

/* ===================================================
   INTRO (Background Design Section)
   =================================================== */
.ct-intro { position: relative; overflow: hidden; background: #C5D86D; }
.intro-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.6;
}
.ct-intro .section-inner { position: relative; z-index: 2; }
.intro-header { text-align: center; margin-bottom: 48px; }
.intro-header h2 {
  color: var(--charcoal); font-size: clamp(1.8rem, 4vw, 3rem);
  text-shadow: 0 0 30px rgba(197,216,109,0.9), 0 0 60px rgba(197,216,109,0.7);
}
.ct-intro .section-label {
  color: var(--navy);
  text-shadow: 0 0 20px rgba(197,216,109,0.9), 0 0 40px rgba(197,216,109,0.6);
}

/* Facts Duo — two-column cards */
.facts-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
.facts-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.facts-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.facts-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: var(--navy);
  color: var(--white);
}
.facts-card-header svg { color: var(--gold); flex-shrink: 0; }
.facts-card-header h3 {
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.facts-rows { padding: 4px 0; }
.facts-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.2s;
}
.facts-row:last-child { border-bottom: none; }
.facts-row:hover { background: rgba(58,124,165,0.04); }
.fr-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  flex-shrink: 0;
  min-width: 140px;
}
.fr-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: right;
}
.fr-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}
.fr-link {
  color: var(--ocean);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.fr-link:hover { color: var(--ocean-dark); }
.fr-link::after {
  content: ' →';
  opacity: 0;
  transition: opacity 0.3s;
}
.fr-link:hover::after { opacity: 1; }

@media (max-width: 768px) {
  .facts-duo { grid-template-columns: 1fr; }
  .facts-row { padding: 12px 16px; }
  .fr-label { min-width: 110px; font-size: 0.78rem; }
  .fr-value { font-size: 0.8rem; }
  .facts-card-header { padding: 16px 16px; }
}

.intro-highlights {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: left;
}
.ih-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 28px 20px;
  transition: transform 0.3s var(--ease);
  gap: 10px;
}
.ih-item:hover { transform: translateY(-4px); }
.ih-item svg { color: var(--navy); flex-shrink: 0; }
.ih-item div { display: flex; flex-direction: column; align-items: center; }
.ih-item strong { display: block; font-size: 0.95rem; color: var(--charcoal); margin-bottom: 4px; }
.ih-item span { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* ===================================================
   ABOUT
   =================================================== */
.ct-about { background: var(--white); }
.about-grid { display:grid; grid-template-columns: 1fr 1fr; gap:60px; align-items:center; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; color: var(--text-light); }
.about-features {
  display:grid; grid-template-columns: repeat(4, 1fr); gap:16px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.af-item { text-align:center; }
.af-num { display:block; font-family:var(--font-heading); font-size:1.6rem; font-weight:400; color:var(--ocean); }
.af-label { font-size:0.72rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-light); }
.arch-frame { border-radius: 100px 100px 8px 8px; overflow:hidden; position:relative; }
.arch-frame img { width:100%; height:100%; object-fit:cover; object-position: center 30%; transition: transform 0.6s var(--ease); }
.arch-frame:hover img { transform: scale(1.05); }

/* ===================================================
   FEATURES
   =================================================== */
.ct-features {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.features-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.features-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,53,68,0.85);
  z-index: 1;
}
.ct-features .section-inner { position: relative; z-index: 2; }
.ct-features .section-label { color: var(--gold); }
.ct-features .section-title { color: var(--white); }
.ct-features .section-desc { color: rgba(255,255,255,0.7); }
.features-grid {
  display:grid; grid-template-columns: repeat(3, 1fr); gap:24px;
  margin-top: 48px;
}
.feat-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius:16px; padding: 32px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  text-align:left;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); background: rgba(255,255,255,0.15); }
.feat-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}
.feat-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--white); }
.feat-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ===================================================
   GALLERY
   =================================================== */
.ct-gallery { background: var(--white); text-align:center; overflow:hidden; }
.gallery-slider { position: relative; padding: 0 0 24px; }
.gallery-track {
  display: flex; gap: 20px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 8px 60px 16px; scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide {
  flex: 0 0 auto; height: auto; max-height: 400px;
  border-radius: 16px; overflow: hidden; cursor: pointer;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s var(--ease);
}
.gallery-slide:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.14); }
.gallery-slide img {
  width: auto; height: 100%; max-height: 400px;
  object-fit: contain; display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-slide:hover img { transform: scale(1.06); }

.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(27,53,68,0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  font-size: 1.2rem; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; color: var(--navy);
}
.gallery-arrow:hover { background: var(--ocean); color: var(--white); border-color: var(--ocean); }
.gallery-arrow-left { left: 12px; }
.gallery-arrow-right { right: 12px; }

.lightbox {
  position:fixed; inset:0; z-index:100;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition: opacity 0.3s;
}
.lightbox.active { opacity:1; pointer-events:all; }
.lb-img { max-width:90vw; max-height:85vh; border-radius:8px; object-fit:contain; }
.lb-close, .lb-prev, .lb-next {
  position:absolute; color:var(--white); font-size:2rem;
  background: rgba(255,255,255,0.1); border-radius:50%;
  width:48px; height:48px; display:flex; align-items:center; justify-content:center;
  transition: background 0.3s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }
.lb-close { top:24px; right:24px; }
.lb-prev { left:24px; top:50%; transform:translateY(-50%); }
.lb-next { right:24px; top:50%; transform:translateY(-50%); }

/* ===================================================
   LAKEVIEW VILLAGE PROJECTS SLIDER
   =================================================== */
.ct-lakeview { background: var(--navy); color: var(--white); }
.ct-lakeview h2, .ct-lakeview h3 { color: var(--white); }
.ct-lakeview .section-desc { color: rgba(255,255,255,0.7); }
.ct-lakeview .section-label { color: var(--gold); }

.lv-slider-wrap { position: relative; }
.lv-slider {
  display: flex; gap: 24px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 8px 0 24px; scrollbar-width: none;
}
.lv-slider::-webkit-scrollbar { display: none; }

.lv-card {
  flex: 0 0 280px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.3s var(--ease), background 0.3s;
  text-decoration: none; color: var(--white);
  display: flex; flex-direction: column;
}
.lv-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.lv-card-active { border-color: var(--ocean); background: rgba(58,124,165,0.15); }

.lv-card-img {
  height: 200px; overflow: hidden; position: relative;
  flex-shrink: 0;
}
.lv-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s var(--ease); }
.lv-card:hover .lv-card-img img { transform: scale(1.08); }
.lv-placeholder {
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
}
.lv-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ocean); color: var(--white);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}

.lv-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.lv-card-body h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--white); min-height: 1.4em; }
.lv-builder { font-size: 0.78rem; color: var(--gold); margin-bottom: 4px; min-height: 1.2em; }
.lv-type { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; min-height: 1.2em; }
.lv-price { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 8px; min-height: 1.2em; }
.lv-card-body .lv-status { margin-top: auto; }
.lv-status {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
.lv-pre-con { background: rgba(197,168,125,0.2); color: var(--gold); }

.lv-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; z-index: 5;
}
.lv-arrow:hover { background: var(--ocean); border-color: var(--ocean); }
.lv-arrow-left { left: -20px; }
.lv-arrow-right { right: -20px; }

/* ===================================================
   LOCATION
   =================================================== */
.ct-location { background: var(--cream); }
.location-grid { display:grid; grid-template-columns: 1fr 1fr; gap:48px; align-items:start; }
.location-info h2 { margin-bottom: 16px; }
.location-info > p { color: var(--text-light); margin-bottom:32px; }
.drive-times { display:flex; flex-direction:column; gap:0; }
.dt-item {
  display:flex; align-items:center; gap:16px;
  padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.dt-icon { color: var(--ocean); flex-shrink:0; }
.dt-item strong { color: var(--navy); font-size:0.95rem; display:block; }
.dt-item span { font-size:0.85rem; color:var(--text-light); }
.location-map { min-height: 500px; border-radius:12px; overflow:hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.location-map iframe { width:100%; height:100%; min-height:500px; }

/* ===================================================
   INVESTMENT
   =================================================== */
.ct-investment { background: var(--navy); color: var(--white); text-align:center; }
.ct-investment h2, .ct-investment h3 { color: var(--white); }
.ct-investment .section-desc { color: rgba(255,255,255,0.7); }
.invest-stats { display:grid; grid-template-columns: repeat(4, 1fr); gap:24px; margin-bottom:60px; }
.is-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius:16px; padding:32px 20px; text-align:center;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.is-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.is-num { display:block; font-family:var(--font-heading); font-size:2.2rem; font-weight:400; color:var(--gold); margin-bottom:8px; }
.is-label { display:block; font-size:0.78rem; text-transform:uppercase; letter-spacing:0.1em; color:rgba(255,255,255,0.7); margin-bottom:12px; }
.is-card p { font-size:0.85rem; color:rgba(255,255,255,0.55); line-height:1.5; }

.invest-reasons { text-align:left; max-width:800px; margin:0 auto; }
.invest-reasons h3 { font-size:1.4rem; margin-bottom:24px; text-align:center; }
.reasons-list { padding-left:24px; }
.reasons-list li { margin-bottom:16px; font-size:0.95rem; color:rgba(255,255,255,0.8); line-height:1.6; }
.reasons-list strong { color: var(--gold); }

/* ===================================================
   COMPARISON SLIDER
   =================================================== */
.ct-comparison { background: var(--white); }
.comparison-wrap { max-width: 800px; margin: 0 auto; }
.comparison-container {
  position: relative; overflow: hidden; border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  cursor: ew-resize; user-select: none;
}
.comparison-img { width: 100%; display: block; }
.comparison-before {
  position: absolute; top: 0; left: 0; width: 50%; height: 100%;
  overflow: hidden;
}
.comparison-before img { width: auto; min-width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.comparison-handle {
  position: absolute; top: 0; left: 50%; width: 4px; height: 100%;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 5;
}
.comparison-handle-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--ocean);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.comparison-cta {
  text-align: center;
  font-family: var(--font-nav);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light);
  margin-top: 16px;
}

/* ===================================================
   DEVELOPER
   =================================================== */
.ct-developer { background: var(--cream); }
.dev-grid { display:grid; grid-template-columns: 1fr 1fr; gap:60px; align-items:center; }
.dev-grid-reverse { direction: rtl; }
.dev-grid-reverse > * { direction: ltr; }
.dev-grid h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 16px; color: var(--navy); }
.dev-divider {
  width: 80px; height: 2px; margin: 60px auto;
  background: linear-gradient(90deg, transparent, var(--ocean), transparent);
}
.dev-image .arch-frame { height: 480px; }
.dev-builder-logo-link { display: inline-block; margin: 16px 0 24px; }
.dev-builder-logo { height: 40px; width: auto; }
.dev-text p { color:var(--text-light); margin-bottom:16px; }
.dev-stats {
  display:flex; gap:32px; margin-top:32px;
  padding-top:24px; border-top: 1px solid var(--cream-dark);
}
.ds-num { display:block; font-family:var(--font-heading); font-size:1.5rem; font-weight:400; color:var(--ocean); }
.ds-label { font-size:0.72rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-light); }

/* ===================================================
   FLOOR PLANS
   =================================================== */
.ct-floorplans { background: var(--sky-light); text-align:center; overflow:hidden; }
.fp-availability {
  background: linear-gradient(135deg, var(--white) 0%, var(--sky-light) 100%);
  border-radius: 20px; padding: 48px;
  border: 1px solid rgba(58,124,165,0.15);
  text-align: center; margin-bottom: 24px;
}
.fp-availability h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 12px; }
.fp-availability p { color: var(--text-light); max-width: 500px; margin: 0 auto 24px; font-size: 0.95rem; }
.fp-avail-checks { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 28px; }
.fp-avail-checks span { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text); }
.fp-avail-checks svg { color: var(--ocean); flex-shrink: 0; }

/* ===================================================
   FAQ
   =================================================== */
.ct-faq { background: var(--white); text-align:center; }
.faq-list { max-width:800px; margin:0 auto; text-align:left; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-q {
  width:100%; display:flex; justify-content:space-between; align-items:center;
  padding: 20px 0; font-size:1rem; font-weight:500; color:var(--charcoal);
  text-align:left; cursor:pointer; transition: color 0.3s;
}
.faq-q:hover { color: var(--ocean); }
.faq-q::after {
  content:'+'; font-size:1.4rem; font-weight:300; color:var(--ocean);
  transition: transform 0.3s;
}
.faq-item.active .faq-q::after { content:'\2212'; }
.faq-a { max-height:0; overflow:hidden; transition: max-height 0.4s var(--ease), padding 0.4s; }
.faq-item.active .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size:0.9rem; color:var(--text-light); line-height:1.7; }

/* ===================================================
   CONTACT
   =================================================== */
.ct-contact { background: var(--sky-light); }
.contact-grid { display:grid; grid-template-columns: 1fr 1.2fr; gap:48px; align-items:start; }
.contact-info h2 { margin-bottom:16px; }
.contact-info > p { color:var(--text-light); margin-bottom:32px; }
.contact-details { display:flex; flex-direction:column; gap:16px; }
.cd-item { display:flex; align-items:center; gap:12px; font-size:0.95rem; color:var(--text); transition: color 0.3s; }
a.cd-item:hover { color: var(--ocean); }
.cd-item svg { color: var(--ocean); flex-shrink:0; }
.contact-calendly { border-radius:12px; overflow:hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.08); background: var(--sky-light); }

/* ===================================================
   FOOTER
   =================================================== */
.ct-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); }
.footer-inner {
  max-width:1200px; margin:0 auto; padding:60px 24px 40px;
  display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:48px;
}
.footer-logo { width: clamp(200px, 40vw, 320px); height:auto; margin-bottom:16px; filter: brightness(0) invert(1); }
.footer-tagline { font-size:0.85rem; line-height:1.6; }
.footer-heading {
  font-family:var(--font-nav); font-size:0.75rem; font-weight:600;
  text-transform:uppercase; letter-spacing:0.15em; color:var(--gold);
  margin-bottom:20px;
}
.footer-nav ul { list-style:none; }
.footer-nav li { margin-bottom:10px; }
.footer-nav a { font-size:0.85rem; transition: color 0.3s; }
.footer-nav a:hover { color: var(--white); }
.footer-phone { display:block; font-size:1rem; color:var(--white); font-weight:500; margin-bottom:12px; }
.footer-address { font-size:0.85rem; margin-bottom:12px; line-height:1.5; display: block; }
.footer-email { font-size:0.85rem; color:var(--ocean-light); }
.footer-bottom {
  max-width:1200px; margin:0 auto; padding:20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
}
.footer-bottom p { font-size:0.7rem; color:rgba(255,255,255,0.65); max-width:600px; }
.footer-builder { display:flex; align-items:center; gap:12px; }
.footer-builder span { font-size:0.72rem; color:rgba(255,255,255,0.65); }
.footer-builder-logo { height:24px; width:auto; opacity:0.6; }

/* ===================================================
   WHATSAPP FLOAT
   =================================================== */
.whatsapp-float {
  position:fixed; bottom:24px; right:20px; z-index:40;
  width:52px; height:52px; border-radius:50%;
  background: #25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===================================================
   STICKY MOBILE CTA
   =================================================== */
.mobile-cta-bar {
  display:none; position:fixed; bottom:0; left:0; right:0; z-index:45;
  background: #fff;
  padding: 0; padding-bottom: env(safe-area-inset-bottom);
  flex-direction: column; align-items: stretch;
  box-shadow: 0 -1px 8px rgba(0,0,0,0.08);
}
.mcta-buttons-row { display: flex; }
.mcta-call, .mcta-register {
  width:50%; padding:14px; text-align:center;
  font-size:0.75rem; font-weight:600; letter-spacing:0.08em;
  text-transform:uppercase; display:inline-block; border: none;
}
.mcta-call { background: var(--navy); color: var(--white); }
.mcta-register { background: var(--ocean); color: var(--white); }

.desktop-float-cta {
  position:fixed; bottom:32px; left:24px; z-index:40;
  padding: 14px 28px; border-radius:50px;
  background: var(--navy); color:var(--white);
  font-size:0.82rem; font-weight:600; letter-spacing:0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(27,53,68,0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.desktop-float-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(27,53,68,0.4); }

/* ===================================================
   MODAL
   =================================================== */
.ct-modal {
  position:fixed; inset:0; z-index:60;
  display:none; align-items:center; justify-content:center;
  opacity:0; transition: opacity 1.5s ease;
}
.ct-modal.modal-visible { opacity:1; }
.ct-modal.modal-fadeout { opacity:0; transition: opacity 2s ease; }
.modal-overlay { position:absolute; inset:0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
.modal-content {
  position:relative; z-index:1;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
  color: var(--charcoal);
  border-radius: 24px; padding: 40px 36px;
  max-width: 420px; width: 92%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  text-align:center;
}
.modal-content h2 { color: var(--charcoal); font-size: 1.6rem; margin-bottom: 8px; }
.modal-subtitle { color: var(--text-light) !important; font-size: 0.85rem !important; line-height: 1.6 !important; margin-bottom: 24px !important; }
.modal-close {
  position:absolute; top:14px; right:18px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sky); border-radius: 50%;
  color: var(--text-light); font-size: 1.3rem;
  transition: all 0.3s; border: none; cursor: pointer;
}
.modal-close:hover { background: var(--ocean); color: var(--white); }
.modal-logo { width: clamp(200px, 70%, 320px); height: auto; margin: 0 auto 16px; filter: none !important; }
.form-label {
  display: block; text-align: left;
  font-size: 0.75rem; font-weight: 600;
  color: var(--navy); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 6px;
}
.form-group { margin-bottom:12px; }
.form-group input {
  width:100%; padding: 14px 18px;
  background: var(--sky-light); border: 1px solid rgba(58,124,165,0.2);
  border-radius: 10px; color: var(--charcoal); font-size:0.9rem;
  font-family: var(--font-body); transition: border-color 0.3s;
}
.form-phone-group { display:flex; align-items:stretch; gap:8px; }
.phone-prefix {
  padding: 14px 14px;
  background: var(--sky-light); border: 1px solid rgba(58,124,165,0.2);
  border-radius: 10px; color: var(--text-light);
  font-size: 0.9rem; font-weight: 500;
  display:flex; align-items:center; justify-content:center;
  white-space: nowrap; user-select: none;
}
.form-phone-group input { flex:1; }
.form-group input::placeholder { color: var(--text-light); }
.form-group input:focus { outline:none; border-color: var(--ocean); }
.form-submit {
  width:100%; padding: 16px;
  background: var(--ocean); color:var(--white);
  border:none; border-radius: 50px;
  font-size:0.9rem; font-weight:600; letter-spacing:0.04em;
  text-transform: uppercase;
  cursor:pointer; transition: all 0.3s;
  margin-top:12px;
  box-shadow: 0 4px 16px rgba(58,124,165,0.3);
}
.form-submit:hover { background: var(--ocean-dark); transform: translateY(-1px); }
.form-disclaimer { font-size:0.7rem !important; color: var(--text-light) !important; margin-top:16px !important; margin-bottom:0 !important; }
.hidden { display:none !important; }
.success-icon {
  width:64px; height:64px; border-radius:50%;
  background: var(--ocean); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:2rem; margin: 0 auto 20px;
}
.modal-success-state h2 { color: var(--charcoal) !important; }
.modal-success-state p { color: var(--text) !important; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .about-grid { display: flex; flex-direction: column-reverse; }
  .dev-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .invest-stats { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-highlights { grid-template-columns: repeat(2, 1fr); }
  .dev-image .arch-frame { height:360px; }
  .lv-arrow-left { left: 4px; }
  .lv-arrow-right { right: 4px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links {
    position:fixed; top:0; left:0; right:0; bottom:0;
    background: rgba(27,53,68,0.98); backdrop-filter: blur(20px);
    display: flex !important;
    flex-direction:column; justify-content:center; align-items:center;
    gap:20px; opacity:0; pointer-events:none; transition: opacity 0.3s;
    z-index: 50; padding: 60px 24px;
  }
  .nav-links.open { opacity:1; pointer-events:all; }
  .nav-links li { list-style: none; text-align: center; width: 100%; }
  .nav-links a {
    font-size: 1.3rem !important; color: #fff !important;
    font-family: var(--font-heading) !important;
    font-weight: 400 !important; letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 10px 0 !important; display: block !important;
    text-decoration: none !important; opacity: 0.85;
    transition: opacity 0.3s !important;
  }
  .nav-links a:hover, .nav-links a:active { opacity: 1; }
  .nav-links .nav-cta {
    margin-top: 16px !important; background: var(--ocean) !important;
    color: #fff !important; padding: 14px 40px !important;
    border-radius: 50px !important; font-size: 0.9rem !important;
    font-family: var(--font-body) !important; font-weight: 700 !important;
    letter-spacing: 0.08em !important; display: inline-block !important;
  }
  .mobile-menu-btn { display:flex; z-index:51; }

  /* Mobile hero: show h1 + design image, hide logo */
  .hero-inline-logo { display: none; }
  .hero-h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
    margin-bottom: 8px !important;
    white-space: nowrap;
    color: #c9dae5 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7), 0 0 30px rgba(0,0,0,0.4) !important;
    text-align: left !important;
  }
  .hero-mobile-title { width: clamp(260px, 80vw, 360px) !important; margin-left: 0 !important; margin-right: auto !important; }
  .ct-hero-about { text-align: left; }
  .ct-hero-about h2 { font-size: 1.5rem; }
  .ct-hero-about p { font-size: 0.95rem; }

  /* Hero mobile */
  .ct-hero {
    height: auto !important; min-height: 0 !important;
    overflow: hidden !important; display: flex !important; flex-direction: column !important;
  }
  .ct-hero .hero-bg-wrap {
    height: 75vh !important; min-height: 420px;
    position: relative !important; flex-shrink: 0;
  }
  .ct-hero .hero-overlay { position: absolute; inset: 0; }
  .hero-content {
    position: absolute; top: 42%; left: 24px; right: 24px;
    transform: translateY(-50%); width: auto;
    text-align: left;
  }
  .hero-logo-block {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    padding: 20px 0 0;
  }
  .hero-top-logo { width: clamp(180px, 50vw, 240px); }
  .hero-by-deco { font-size: 0.6rem; letter-spacing: 0.2em; }
  .hero-title { font-size: clamp(1.4rem, 6vw, 2rem); margin-bottom: 10px; }
  .hero-subtitle { font-size: 0.82rem; margin-bottom: 16px; }
  .hero-ctas { display: none !important; }
  .hero-ctas-mobile { display: flex !important; }
  .hero-ctas-mobile .btn-ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
    text-shadow: none;
  }
  .hero-feature-strip {
    position: absolute !important;
    bottom: 0; left: 0; right: 0;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
    background: rgba(27,53,68,0.85);
    backdrop-filter: blur(8px);
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }
  .hero-feature-strip::-webkit-scrollbar { display: none; }
  .hf-item {
    flex: 0 0 auto;
    width: 75vw;
    max-width: none;
    scroll-snap-align: center;
    padding: 14px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-align: left;
  }
  .hf-circle { width: 44px; height: 44px; margin: 0; flex-shrink: 0; }
  .hf-circle svg { width: 22px; height: 22px; }
  .hf-item h4 { font-size: 0.72rem; letter-spacing: 0.06em; margin-bottom: 2px; }
  .hf-item p { font-size: 0.68rem; }
  .hero-scroll-indicator { display: none; }

  .section-inner { padding: 48px 20px; }
  .section-title { font-size: 1.6rem !important; }

  .intro-highlights { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ih-item { padding: 14px 10px; gap: 8px; }
  .ih-item svg { width: 22px; height: 22px; }
  .ih-item strong { font-size: 0.8rem; }
  .ih-item span { font-size: 0.7rem; }

  /* Facts cards compact on mobile */
  .facts-duo { gap: 16px; margin-bottom: 24px; }
  .facts-card { border-radius: 14px; }
  .facts-row { padding: 10px 14px; }
  .fr-label { min-width: 100px; font-size: 0.75rem; }
  .fr-value { font-size: 0.78rem; }
  .facts-card-header { padding: 14px; }
  .facts-card-header h3 { font-size: 0.75rem; }
  .intro-header { margin-bottom: 24px; }

  /* About: image on top on mobile */
  .about-grid { gap: 24px; display: flex; flex-direction: column-reverse; }
  .about-image .arch-frame { height: 280px; }
  .about-features { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .af-num { font-size: 1.3rem; }

  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feat-card { padding: 18px 14px; border-radius: 12px; }
  .feat-icon { width: 40px; height: 40px; border-radius: 10px; margin-bottom: 10px; }
  .feat-icon svg { width: 22px; height: 22px; }
  .feat-card h3 { font-size: 0.82rem; margin-bottom: 6px; }
  .feat-card p { font-size: 0.72rem; line-height: 1.4; }
  .gallery-slide { width: auto; max-width: 85vw; height: auto; max-height: 280px; }
  .gallery-slide img { max-height: 280px; width: auto; max-width: 85vw; }
  .gallery-track { padding: 8px 16px 16px; gap: 12px; }
  .gallery-arrow { display: none; }

  .invest-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .is-card { padding: 20px 14px; }
  .is-num { font-size: 1.5rem; }

  .location-map { min-height: 300px; }
  .location-map iframe { min-height: 300px; }

  .lv-card { flex: 0 0 240px; }
  .lv-card-img { height: 140px; }
  .lv-arrow { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .whatsapp-float { bottom: 65px !important; right: 12px !important; width: 46px !important; height: 46px !important; z-index: 44 !important; }
  .mobile-cta-bar { display: flex; }
  .desktop-float-cta { display: none; }
  body { padding-bottom: 56px; }

  .modal-content { padding: 28px 20px 32px; border-radius: 20px; }
  .modal-logo { width: clamp(180px, 65%, 260px); height: auto; margin-bottom: 12px; }
  .modal-content h2 { font-size: 1.4rem; }
  .modal-subtitle { font-size: 0.8rem !important; margin-bottom: 20px !important; }

  .comparison-container { border-radius: 12px; }
  .fp-availability { padding: 32px 20px; }
  .fp-availability h3 { font-size: 1.4rem; }
  .fp-avail-checks { gap: 10px; }
  .fp-avail-checks span { font-size: 0.78rem; }
}

@media (max-width: 390px) {
  .hero-title { font-size: 1.8rem !important; }
  .hero-subtitle { font-size: 0.82rem; }
  .section-title { font-size: 1.4rem !important; }
}

/* ===================================================
   WATERY / ELEGANT ANIMATIONS
   =================================================== */

/* Wave animation for section dividers */
.ct-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,20 C240,60 480,0 720,30 C960,60 1200,0 1440,20 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  z-index: 4;
  pointer-events: none;
}

.ct-intro::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,40 C240,0 480,60 720,30 C960,0 1200,60 1440,40 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top center;
  background-size: cover;
  z-index: 3;
  pointer-events: none;
}

.ct-investment::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23F7F5F2' d='M0,40 C360,0 720,60 1080,20 C1260,0 1380,30 1440,40 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top center;
  background-size: cover;
  z-index: 2;
  pointer-events: none;
}

.ct-investment::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,20 C360,60 720,0 1080,40 C1260,60 1380,20 1440,20 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  z-index: 2;
  pointer-events: none;
}

.ct-lakeview::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,40 C240,0 480,60 720,30 C960,0 1200,60 1440,40 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top center;
  background-size: cover;
  z-index: 2;
  pointer-events: none;
}

.ct-lakeview::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23F7F5F2' d='M0,20 C360,60 720,0 1080,40 C1260,60 1380,20 1440,20 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  z-index: 2;
  pointer-events: none;
}

/* Ripple effect on buttons */
.btn-primary, .btn-ghost, .btn-outline {
  position: relative;
  overflow: hidden;
}
.btn-primary::before, .btn-ghost::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s var(--ease), height 0.6s var(--ease);
}
.btn-primary:active::before, .btn-ghost:active::before {
  width: 300px; height: 300px;
}

/* Smooth wave entrance for fade-in elements */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero content entrance animation */
.hero-logo-block {
  animation: heroLogoIn 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes heroLogoIn {
  0% { opacity: 0; transform: translateY(-20px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-mobile-title, .hero-h1 {
  animation: heroTitleIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}
@keyframes heroTitleIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* (slideUp removed — feature strip uses hfFadeUp) */

/* Floating animation for feature cards */
.feat-card:nth-child(1) { animation: gentleFloat 6s ease-in-out infinite; }
.feat-card:nth-child(2) { animation: gentleFloat 6s ease-in-out 0.5s infinite; }
.feat-card:nth-child(3) { animation: gentleFloat 6s ease-in-out 1s infinite; }
.feat-card:nth-child(4) { animation: gentleFloat 6s ease-in-out 1.5s infinite; }
.feat-card:nth-child(5) { animation: gentleFloat 6s ease-in-out 2s infinite; }
.feat-card:nth-child(6) { animation: gentleFloat 6s ease-in-out 2.5s infinite; }
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Water shimmer on gallery slides */
.gallery-slide::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.8s;
}
.gallery-slide:hover::after { left: 150%; }

/* Lakeview project cards subtle glow */
.lv-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(58,124,165,0), rgba(58,124,165,0.3), rgba(197,168,125,0.2), rgba(58,124,165,0));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}
.lv-card { position: relative; }
.lv-card:hover::after { opacity: 1; }

/* Smooth pulse for WhatsApp button */
.whatsapp-float {
  animation: waPulse 3s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 25px rgba(37,211,102,0.5); }
}

/* Hero overlay subtle movement */
.hero-overlay {
  animation: overlayShift 20s ease-in-out infinite alternate;
}
@keyframes overlayShift {
  0% { opacity: 1; }
  50% { opacity: 0.9; }
  100% { opacity: 1; }
}

/* Invest stat cards count-up glow */
.is-card:hover .is-num {
  text-shadow: 0 0 20px rgba(197,168,125,0.5);
  transition: text-shadow 0.4s;
}

/* Smooth section transitions */
.ct-about, .ct-features, .ct-gallery, .ct-location, .ct-comparison,
.ct-developer, .ct-floorplans, .ct-faq, .ct-contact {
  position: relative;
  z-index: 1;
}

.ct-investment, .ct-lakeview {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
