/* =========================================================
   THE JAIPUR LANDMARKS — style.css
   Dark Navy · Gold · White | Township & Land Development
   ========================================================= */

/* === RESET & VARIABLES === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:       #0a1628;
  --navy-mid:   #0f2040;
  --navy-light: #162a4a;
  --gold:       #C9A84C;
  --gold-light: #e2c06a;
  --gold-dark:  #a07a2e;
  --white:      #ffffff;
  --off-white:  #f5f0e8;
  --text-muted: #8fa3bf;
  --glass-bg:   rgba(10,22,40,0.72);
  --glass-border: rgba(201,168,76,0.18);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Cinzel', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans:  'DM Sans', sans-serif;
  --radius:     12px;
  --container:  1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--off-white);
  color: var(--navy);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* === UTILITIES === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.15;
  color: var(--navy);
}
.section-heading em { font-style: italic; color: var(--gold-dark); }
.section-heading.light { color: var(--white); }
.section-heading.light em { color: var(--gold-light); }
.section-desc { color: #5a7090; max-width: 540px; margin: 16px auto 0; font-size: 1.05rem; }
.section-desc.light { color: rgba(255,255,255,0.65); }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition), transform 0.2s, box-shadow var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-primary.full-w { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 32px; border-radius: 4px;
  text-decoration: none; background: transparent; cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-outline.small { padding: 9px 22px; font-size: 0.78rem; }

/* === REVEAL ANIMATIONS === */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 24px; flex-wrap: nowrap; justify-content: space-between;
}
.nav-logo { text-decoration: none; line-height: 1.1; flex-shrink: 0; display: inline-flex; align-items: center; gap: 14px; }
.nav-logo-img {
  display: block;
  width: 56px;
  height: auto;
  margin-bottom: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nav-logo .logo-main {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400;
  color: var(--white); letter-spacing: 0.5px;
}
.nav-logo .logo-sub {
  font-family: var(--font-display); font-size: 0.75rem;
  color: var(--gold); letter-spacing: 4px; margin-top: 2px;
}
.nav-links { list-style: none; display: flex; gap: 32px; margin-left: auto; }
.nav-link {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.75); text-decoration: none;
  transition: color 0.3s; position: relative; padding-bottom: 4px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--gold); transition: right 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.btn-nav-cta {
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 10px 22px; border-radius: 4px; text-decoration: none;
  white-space: nowrap; transition: all var(--transition);
}
.btn-nav-cta:hover { background: var(--gold-light); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh; position: relative; display: flex;
  align-items: center; overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(22,42,74,0.8) 0%, transparent 60%),
    linear-gradient(160deg, #0a1628 0%, #0f2040 40%, #08111f 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 5 L55 25 L55 55 L5 55 L5 25 Z' fill='none' stroke='rgba(201,168,76,0.04)' stroke-width='1'/%3E%3C/svg%3E");
}
.hero-pattern {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 50%);
  animation: heroGlow 6s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { opacity: 0.4; }
  to { opacity: 1; }
}
/* Architectural silhouette */
.hero-bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400'%3E%3Cpath d='M0,400 L0,280 L60,280 L60,200 L100,200 L100,160 L130,160 L130,100 L150,80 L170,100 L170,160 L200,160 L200,280 L260,280 L260,200 L300,200 L340,200 L380,200 L380,160 L410,140 L440,120 L470,140 L470,160 L510,160 L510,280 L580,280 L580,200 L640,200 L640,160 L680,100 L720,70 L760,100 L760,160 L800,160 L800,200 L860,200 L860,280 L920,280 L920,200 L960,200 L1000,200 L1000,160 L1030,140 L1060,100 L1080,80 L1100,100 L1120,140 L1150,160 L1150,200 L1200,200 L1200,280 L1260,280 L1260,200 L1300,180 L1340,180 L1380,200 L1440,200 L1440,400 Z' fill='rgba(201,168,76,0.04)'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; padding: 120px 24px 80px;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase; padding: 8px 18px; border-radius: 50px;
  margin-bottom: 28px; animation-delay: 0.1s;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); } 50% { box-shadow: 0 0 0 6px rgba(201,168,76,0); } }
.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
  animation-delay: 0.2s;
}
.hero-heading em { font-style: italic; color: var(--gold-light); display: block; }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 40px; animation-delay: 0.3s;
}
.desktop-br { display: block; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; animation-delay: 0.4s; }
.hero-stats {
  display: flex; align-items: center; gap: 24px; animation-delay: 0.5s;
}
.hstat { text-align: center; }
.hstat-num { display: block; font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold); font-weight: 600; }
.hstat-label { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.hstat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.35); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent); }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* =========================================================
   TRUST SECTION
   ========================================================= */
.trust-section { background: var(--off-white); padding: 80px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 20px;
}
.trust-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.trust-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.12);
  transform: translateY(-4px);
}
.trust-icon { width: 48px; height: 48px; margin: 0 auto 14px; color: var(--gold); }
.trust-icon svg { width: 100%; height: 100%; }
.trust-card h4 { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.trust-card p { font-size: 0.78rem; color: var(--text-muted); }

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-section { background: var(--white); padding: 100px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  height: 560px;
}
.about-img-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a5c 100%);
  position: relative; overflow: hidden;
}
.about-section-image {
  width: 100%; height: 100%; object-fit: cover;
  position: relative; z-index: 1;
}
.about-arch-pattern {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 300'%3E%3Cpath d='M20,300 L20,160 Q20,80 100,60 Q180,80 180,160 L180,300' fill='none' stroke='rgba(201,168,76,0.12)' stroke-width='2'/%3E%3Cpath d='M40,300 L40,170 Q40,100 100,85 Q160,100 160,170 L160,300' fill='none' stroke='rgba(201,168,76,0.08)' stroke-width='1'/%3E%3Cpath d='M60,300 L60,185 Q60,120 100,110 Q140,120 140,185 L140,300' fill='none' stroke='rgba(201,168,76,0.06)' stroke-width='1'/%3E%3Ccircle cx='100' cy='55' r='20' fill='none' stroke='rgba(201,168,76,0.15)' stroke-width='1.5'/%3E%3Ccircle cx='100' cy='55' r='8' fill='rgba(201,168,76,0.1)'/%3E%3Cpath d='M0,200 Q50,180 100,190 Q150,200 200,185' fill='none' stroke='rgba(201,168,76,0.06)' stroke-width='1'/%3E%3C/svg%3E") center/cover;
}
.about-img-label {
  position: absolute; bottom: 24px; left: 24px;
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(201,168,76,0.6);
}
.about-accent-block {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: var(--navy);
  padding: 24px; border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 8px 32px rgba(201,168,76,0.3);
}
.accent-num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.accent-text { font-size: 0.72rem; font-weight: 600; text-align: center; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.about-content { padding-right: 20px; }

/* Ensure the decorative pattern sits behind the image and image is visible */
.about-arch-pattern { z-index: 0; opacity: 0.12; }
.about-section-image { z-index: 1; }

/* Responsive adjustments for About section */
@media (max-width: 1024px) {
  .about-img-frame { height: 460px; }
  .about-img-inner { height: 100%; }
  .about-section-image { height: 100%; object-fit: cover; }

  /* Make the accent block flow beneath the image so it's always visible */
  .about-accent-block {
    position: relative; bottom: auto; right: auto; left: auto;
    margin-top: 18px; border-radius: 10px;
    padding: 18px; display: flex; align-items: center; justify-content: center;
  }

  /* Slightly reduce the label size so it doesn't overlap on smaller laptops */
  .about-img-label { font-size: 0.64rem; bottom: 12px; left: 12px; }
}

@media (max-width: 480px) {
  .about-img-frame { height: 280px; }
  .about-section-image { height: 100%; }
  .about-accent-block { padding: 14px; margin-top: 12px; }
  .accent-num { font-size: 1.6rem; }
  .accent-text { font-size: 0.6rem; }
}
.about-text { color: #4a6080; line-height: 1.8; margin-bottom: 16px; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px;
}
.astat {
  padding: 20px; border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px; text-align: center;
  transition: border-color 0.3s;
}
.astat:hover { border-color: var(--gold); }
.astat-num {
  display: block; font-family: var(--font-serif);
  font-size: 2rem; font-weight: 700; color: var(--gold);
}
.astat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }

/* =========================================================
   FEATURED PROJECT
   ========================================================= */
.project-section { background: var(--off-white); padding: 100px 0; }
.project-card {
  position: relative; border-radius: 16px; overflow: hidden;
  min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.2); }
.project-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background: linear-gradient(160deg, #0a1628 0%, #0f2a4a 40%, #162a4a 100%);
}
.project-bg-img {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.project-bg-pattern {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 480'%3E%3Cpath d='M0,480 L0,280 Q100,180 200,220 L200,480' fill='rgba(201,168,76,0.04)'/%3E%3Cpath d='M200,220 Q300,160 400,200 Q500,240 600,180 Q700,120 800,160 L800,0 L0,0 L0,280 Q100,180 200,220Z' fill='rgba(10,22,40,0.3)'/%3E%3Cellipse cx='400' cy='100' rx='200' ry='80' fill='none' stroke='rgba(201,168,76,0.06)' stroke-width='1'/%3E%3Cellipse cx='400' cy='100' rx='300' ry='130' fill='none' stroke='rgba(201,168,76,0.04)' stroke-width='1'/%3E%3C/svg%3E") center/cover no-repeat;
}
.project-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.98) 0%, rgba(10,22,40,0.7) 40%, rgba(10,22,40,0.3) 100%);
}
.project-badge-ongoing {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid var(--gold);
  color: var(--gold); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
}
.ongoing-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.project-glass {
  position: relative; z-index: 2;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--glass-border);
  padding: 28px 32px;
}
.project-info-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.project-location-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--gold); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 8px;
}
.project-title {
  font-family: var(--font-serif); font-size: 2.2rem; font-weight: 600;
  color: var(--white); line-height: 1.1; margin-bottom: 6px;
}
.project-subtitle { font-size: 0.82rem; color: rgba(255,255,255,0.55); letter-spacing: 1px; }
.btn-project-detail {
  white-space: nowrap;
  background: var(--navy); color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  padding: 12px 24px; border-radius: 4px; text-decoration: none;
  transition: all var(--transition); flex-shrink: 0;
}
.btn-project-detail:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.project-meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}
.pmeta { display: flex; flex-direction: column; gap: 4px; }
.pmeta-label { font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; }
.pmeta-val { font-size: 0.92rem; color: var(--white); font-weight: 500; }
.pmeta-val.ongoing { color: #4caf82; }
.pmeta-val.limited { color: #e8a03a; }

/* =========================================================
   AMENITIES
   ========================================================= */
.amenities-section { background: var(--white); padding: 100px 0; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.amenity-card {
  background: var(--off-white);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
  transition: all var(--transition); cursor: default;
}
.amenity-card:hover {
  background: var(--navy);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(10,22,40,0.15);
}
.amenity-card:hover h4, .amenity-card:hover p { color: var(--white); }
.amenity-card:hover .am-icon { color: var(--gold); }
.am-icon { width: 48px; height: 48px; margin: 0 auto 16px; color: var(--navy-mid); transition: color var(--transition); }
.am-icon svg { width: 100%; height: 100%; }
.amenity-card h4 { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; transition: color var(--transition); }
.amenity-card p { font-size: 0.75rem; color: var(--text-muted); transition: color var(--transition); }

/* =========================================================
   LOCATION
   ========================================================= */
.location-section { background: var(--off-white); padding: 100px 0; }
.location-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.location-roadmap { display: flex; flex-direction: column; gap: 0; }
.roadmap-item {
  display: flex; gap: 20px; position: relative; padding-bottom: 36px;
}
.roadmap-item:last-child { padding-bottom: 0; }
.roadmap-item::before {
  content: ''; position: absolute;
  left: 16px; top: 32px; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
}
.roadmap-item:last-child::before { display: none; }
.roadmap-pin {
  width: 32px; height: 32px; flex-shrink: 0;
  color: var(--gold); margin-top: 2px;
}
.roadmap-pin svg { width: 100%; height: 100%; }
.roadmap-content h4 { font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.roadmap-content p { font-size: 0.88rem; color: #5a7090; line-height: 1.7; }
.location-map { position: sticky; top: 100px; }
.map-placeholder {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px; height: 380px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.map-placeholder .map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-pin-anim { position: relative; z-index: 1; }
.map-pin-outer {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3); position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: ripple 2s ease-out infinite;
}
@keyframes ripple { 0% { transform: translate(-50%,-50%) scale(0.8); opacity:1; } 100% { transform: translate(-50%,-50%) scale(2.5); opacity:0; } }
.map-pin-inner { position: relative; z-index: 2; color: var(--gold); width: 32px; }
.map-pin-inner svg { width: 100%; }
.map-label { position: relative; z-index: 1; text-align: center; color: var(--white); font-size: 0.9rem; font-weight: 500; }
.map-label small { color: var(--text-muted); font-size: 0.78rem; }
.map-open-btn {
  position: relative; z-index: 1;
  color: var(--gold); font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 18px; border-radius: 4px; transition: all 0.3s;
}
.map-open-btn:hover { background: var(--gold); color: var(--navy); }

/* =========================================================
   MASTER PLAN
   ========================================================= */
.masterplan-section { background: var(--white); padding: 100px 0; }
.masterplan-card {
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px; overflow: hidden;
}
.masterplan-img {
  position: relative; height: 480px;
  background: var(--navy);
  overflow: hidden;
}
.masterplan-grid-pattern {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 40h40M40 0v40' stroke='rgba(201,168,76,0.08)' stroke-width='.5'/%3E%3C/svg%3E");
}
.masterplan-overlay { position: absolute; inset: 0; padding: 40px; }
.masterplan-blocks { position: relative; width: 100%; height: 100%; }
.mp-block { position: absolute; }
.mp-road-h { left: 0; right: 0; top: 44%; height: 20px; background: rgba(201,168,76,0.15); border-top: 1px solid rgba(201,168,76,0.3); border-bottom: 1px solid rgba(201,168,76,0.3); }
.mp-road-v { top: 0; bottom: 0; left: 44%; width: 20px; background: rgba(201,168,76,0.15); border-left: 1px solid rgba(201,168,76,0.3); border-right: 1px solid rgba(201,168,76,0.3); }
.mp-plot { background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.2); }
.p1 { left: 5%; top: 8%; width: 35%; height: 33%; }
.p2 { right: 5%; top: 8%; width: 30%; height: 33%; }
.p3 { left: 5%; bottom: 8%; width: 30%; height: 33%; }
.p4 { right: 5%; bottom: 8%; width: 35%; height: 33%; }
.mp-park { left: 50%; bottom: 10%; width: 12%; height: 10%; background: rgba(46,125,50,0.25); border: 1px solid rgba(76,175,80,0.3); transform: translateX(-50%); }
.mp-temple { left: 8%; top: 45%; width: 6%; height: 8%; background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4); transform: translateY(-50%); }
.mp-commercial { right: 8%; top: 45%; width: 8%; height: 8%; background: rgba(30,60,100,0.4); border: 1px solid rgba(100,149,237,0.3); transform: translateY(-50%); }
.mp-legend {
  position: absolute; bottom: 16px; left: 16px;
  display: flex; gap: 16px; flex-wrap: wrap;
}
.leg-item { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.leg-dot { width: 10px; height: 10px; border-radius: 2px; }
.leg-dot.plot { background: rgba(201,168,76,0.5); }
.leg-dot.park { background: rgba(76,175,80,0.5); }
.leg-dot.comm { background: rgba(100,149,237,0.5); }
.masterplan-actions {
  padding: 24px 32px; background: var(--white);
  display: flex; gap: 16px; justify-content: flex-end;
  border-top: 1px solid rgba(201,168,76,0.15);
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-section { background: var(--off-white); padding: 100px 0; }
.gallery-tabs {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px;
}
.gtab {
  background: transparent; border: 1.5px solid rgba(10,22,40,0.2);
  color: var(--navy); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 9px 22px; border-radius: 50px; cursor: pointer;
  transition: all var(--transition);
}
.gtab.active, .gtab:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; }
.gallery-item.gi-large { grid-column: span 2; }
.gallery-item.gi-tall { grid-row: span 2; }
.gallery-item.hidden { display: none; }
.gi-img {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
  transition: transform var(--transition);
}
.gi-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item:hover .gi-img { transform: scale(1.06); }
.gi-label {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  font-size: 0.72rem; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase;
}
/* decorative elements inside gallery items */
.gi-arch {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 200'%3E%3Cpath d='M80,200 L80,100 Q80,40 150,30 Q220,40 220,100 L220,200' fill='rgba(201,168,76,0.08)' stroke='rgba(201,168,76,0.15)' stroke-width='1'/%3E%3Ccircle cx='150' cy='30' r='15' fill='rgba(201,168,76,0.1)' stroke='rgba(201,168,76,0.2)' stroke-width='1'/%3E%3C/svg%3E") center/contain no-repeat;
}
.gi-road {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(201,168,76,0.08), transparent);
  border-top: 2px solid rgba(201,168,76,0.15);
}
.gi-trees {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(46,125,50,0.2), transparent);
}
.gi-plot-grid {
  position: absolute; inset: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect x='5' y='5' width='20' height='20' fill='none' stroke='rgba(201,168,76,0.2)' stroke-width='1'/%3E%3Crect x='35' y='5' width='20' height='20' fill='none' stroke='rgba(201,168,76,0.2)' stroke-width='1'/%3E%3Crect x='5' y='35' width='20' height='20' fill='none' stroke='rgba(201,168,76,0.2)' stroke-width='1'/%3E%3Crect x='35' y='35' width='20' height='20' fill='none' stroke='rgba(201,168,76,0.2)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}
.gi-gate2 {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(201,168,76,0.1), transparent 60%);
}
.gi-road2, .gi-aerial { position: absolute; inset: 0; }
.gi-park {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(46,125,50,0.2), transparent 70%);
}
.gi-hover {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.75); opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--transition);
}
.gallery-item:hover .gi-hover { opacity: 1; }
.gi-hover span { color: var(--gold); font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; }

/* =========================================================
   WHY INVEST
   ========================================================= */
.invest-section {
  background: var(--navy); padding: 100px 0; position: relative; overflow: hidden;
}
.invest-bg-pattern {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 40h80M40 0v80' stroke='rgba(201,168,76,0.04)' stroke-width='1'/%3E%3C/svg%3E");
}
.invest-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px;
  position: relative; z-index: 1;
}
.invest-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius); padding: 32px 24px;
  transition: all var(--transition);
}
.invest-card:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.invest-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 16px;
}
.invest-card h4 { color: var(--white); font-weight: 600; margin-bottom: 10px; font-size: 1rem; }
.invest-card p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-section { background: var(--off-white); padding: 100px 0; }
.testimonial-slider { overflow: hidden; }
.testimonial-track {
  display: flex; gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.testi-card {
  min-width: calc(33.333% - 16px); background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius); padding: 36px 32px;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testi-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(201,168,76,0.1); }
.testi-quote {
  font-family: var(--font-serif); font-size: 4rem; line-height: 1;
  color: var(--gold); opacity: 0.5; margin-bottom: 12px;
}
.testi-card p { color: #4a6080; line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem; flex-shrink: 0;
}
.testi-author strong { display: block; font-weight: 600; color: var(--navy); }
.testi-author small { color: var(--text-muted); font-size: 0.78rem; }
.testi-controls {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px;
}
.testi-prev, .testi-next {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(10,22,40,0.2);
  background: transparent; color: var(--navy); font-size: 1.1rem;
  cursor: pointer; transition: all var(--transition); display: flex; align-items: center; justify-content: center;
}
.testi-prev:hover, .testi-next:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(10,22,40,0.2); transition: all 0.3s;
  cursor: pointer; border: none;
}
.testi-dot.active { background: var(--gold); transform: scale(1.3); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background: var(--white); padding: 100px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(10,22,40,0.1);
}
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-sans); font-size: 1rem; font-weight: 600;
  color: var(--navy); transition: color 0.3s;
  gap: 16px;
}
.faq-q:hover { color: var(--gold); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem; font-weight: 300; color: var(--gold);
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }
.faq-a p { color: #4a6080; line-height: 1.8; font-size: 0.95rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section { background: var(--navy); padding: 100px 0; position: relative; overflow: hidden; }
.contact-hero-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600'%3E%3Cpath d='M0,600 L0,300 Q200,150 400,200 Q600,250 720,160 Q880,60 1100,120 Q1300,180 1440,100 L1440,0 L0,0Z' fill='rgba(201,168,76,0.03)'/%3E%3C/svg%3E") no-repeat top;
  background-size: cover;
}
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  position: relative; z-index: 1;
}
.contact-form-card {
  background: var(--white);
  border-radius: 16px; padding: 40px;
}
.form-eyebrow { font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.contact-form-card h3 {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600;
  color: var(--navy); margin-bottom: 28px;
}
.form-group { position: relative; margin-bottom: 20px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid rgba(10,22,40,0.15);
  border-radius: 8px; font-family: var(--font-sans); font-size: 0.95rem;
  background: var(--off-white); color: var(--navy);
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
  resize: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group label {
  position: absolute; top: -8px; left: 12px;
  background: var(--white); padding: 0 6px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted);
  pointer-events: none;
}
.contact-info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px; padding: 40px;
}
.contact-info-card h3 {
  font-family: var(--font-serif); font-size: 1.6rem; color: var(--white);
  margin-bottom: 28px;
}
.cinfo-item { display: flex; gap: 16px; margin-bottom: 24px; }
.cinfo-icon { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.cinfo-icon svg { width: 100%; height: 100%; }
.cinfo-item strong { display: block; color: var(--gold); font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.cinfo-item p, .cinfo-item a { color: rgba(255,255,255,0.7); font-size: 0.9rem; text-decoration: none; line-height: 1.6; display: block; }
.cinfo-item a:hover { color: var(--gold); }
.contact-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: var(--white);
  font-weight: 600; font-size: 0.85rem; letter-spacing: 1px;
  padding: 13px 24px; border-radius: 8px; text-decoration: none;
  transition: all var(--transition);
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-call {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  font-weight: 600; font-size: 0.85rem; letter-spacing: 1px;
  padding: 12px 24px; border-radius: 8px; text-decoration: none;
  transition: all var(--transition);
}
.btn-call:hover { border-color: var(--gold); color: var(--gold); }
.map-section { margin-top: 60px; position: relative; z-index: 1; }
.map-container {
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px; overflow: hidden;
  height: 280px; position: relative; background: var(--navy-mid);
  display: flex; align-items: center;
}
.map-graphic {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0 40h80M40 0v80' stroke='rgba(201,168,76,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  display: flex; align-items: center; justify-content: center;
}
.map-grid-lines {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 280'%3E%3Cline x1='0' y1='140' x2='800' y2='140' stroke='rgba(201,168,76,0.08)' stroke-width='2'/%3E%3Cline x1='400' y1='0' x2='400' y2='280' stroke='rgba(201,168,76,0.08)' stroke-width='2'/%3E%3Cline x1='0' y1='70' x2='800' y2='70' stroke='rgba(201,168,76,0.04)' stroke-width='1'/%3E%3Cline x1='0' y1='210' x2='800' y2='210' stroke='rgba(201,168,76,0.04)' stroke-width='1'/%3E%3Cline x1='200' y1='0' x2='200' y2='280' stroke='rgba(201,168,76,0.04)' stroke-width='1'/%3E%3Cline x1='600' y1='0' x2='600' y2='280' stroke='rgba(201,168,76,0.04)' stroke-width='1'/%3E%3C/svg%3E") no-repeat center/cover;
}
.map-marker-anim {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  display: flex; flex-direction: column; align-items: center;
}
.mma-ring {
  position: absolute; width: 50px; height: 50px; border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.4);
  animation: ripple 2.5s ease-out infinite;
}
.map-info-overlay {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 20px 24px; max-width: 260px;
}
.map-info-overlay h4 { color: var(--white); font-weight: 600; margin-bottom: 8px; }
.map-info-overlay p { color: rgba(255,255,255,0.6); font-size: 0.82rem; line-height: 1.6; margin-bottom: 14px; }

/* Mobile Responsive Map */
@media (max-width: 768px) {
  .map-container {
    height: auto; min-height: 250px; flex-direction: column;
  }
  .map-graphic {
    position: relative; height: 250px; width: 100%;
  }
  .map-info-mobile-responsive {
    position: relative !important; bottom: auto !important; left: auto !important;
    width: 100%; max-width: 100%;
    background: var(--navy-light);
    border: none; border-top: 1px solid var(--glass-border);
    border-radius: 0; padding: 20px 24px;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .map-graphic {
    height: 220px;
  }
  .map-info-mobile-responsive {
    padding: 16px 20px;
  }
  .map-info-overlay h4 { font-size: 1rem; }
  .map-info-overlay p { font-size: 0.75rem; }
}

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.float-whatsapp, .float-call {
  position: fixed; right: 24px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all var(--transition);
}
.float-whatsapp { bottom: 90px; background: #25D366; color: var(--white); }
.float-call { bottom: 24px; background: var(--navy); color: var(--gold); border: 1.5px solid rgba(201,168,76,0.3); }
.float-whatsapp svg, .float-call svg { width: 26px; height: 26px; }
.float-whatsapp:hover { background: #1ebe5a; transform: scale(1.1); }
.float-call:hover { background: var(--gold); color: var(--navy); transform: scale(1.1); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #060e1a; }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 48px; }
.footer-logo { text-decoration: none; display: inline-block; margin-bottom: 16px; line-height: 1.1; }
.footer-logo .logo-main { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); display: block; }
.footer-logo .logo-sub { font-family: var(--font-display); font-size: 0.6rem; color: var(--gold); letter-spacing: 5px; display: block; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: all 0.3s;
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-family: var(--font-display); font-size: 0.72rem;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col ul a {
  color: rgba(255,255,255,0.45); font-size: 0.88rem; text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-newsletter p { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-bottom: 16px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1; padding: 11px 14px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-right: none; border-radius: 4px 0 0 4px;
  color: var(--white); font-size: 0.85rem; outline: none; font-family: var(--font-sans);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  background: var(--gold); color: var(--navy); border: none;
  padding: 11px 18px; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 0 4px 4px 0; cursor: pointer; transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 0.8rem; text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(10,22,40,0.98); backdrop-filter: blur(16px);
    padding: 32px 24px; gap: 20px; z-index: 999;
  }
  .nav-links.open + .btn-nav-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0;
    justify-content: center; padding: 16px; border-radius: 0; z-index: 999;
  }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content { padding-right: 0; }
  .about-accent-block { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .location-layout { grid-template-columns: 1fr; }
  .location-map { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gi-large { grid-column: span 2; }
  .testi-card { min-width: calc(50% - 12px); }
  .project-card {
    min-height: auto;
    display: block;
  }
  .project-bg {
    position: relative;
    height: 300px;
    min-height: 300px;
    background: transparent;
  }
  .project-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .project-bg-pattern,
  .project-bg-overlay {
    position: absolute;
    inset: 0;
  }
  .project-bg-overlay {
    background: linear-gradient(to top, rgba(10,22,40,0.82) 0%, rgba(10,22,40,0.55) 35%, rgba(10,22,40,0.18) 100%);
  }
  .project-bg-pattern {
    opacity: 0.22;
  }
  .project-glass {
    position: relative;
    margin-top: -80px;
    padding: 24px 22px;
  }
  .project-info-top { align-items: flex-start; }
  .project-meta { grid-template-columns: 1fr; }
  .project-badge-ongoing { top: 16px; left: 16px; }
}

@media (max-width: 640px) {
  .hero-heading { font-size: 2.1rem; }
  .desktop-br { display: none; }
  .hero-stats { gap: 16px; }
  .hstat-num { font-size: 1.3rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .project-card { min-height: auto; }
  .project-bg { min-height: 280px; }
  .project-glass { padding: 20px 18px; }
  .project-info-top { flex-direction: column; align-items: flex-start; gap: 14px; }
  .project-meta { grid-template-columns: 1fr; gap: 12px; }
  .project-title { font-size: 1.6rem; }
  .btn-project-detail { width: 100%; justify-content: center; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gi-large { grid-column: span 1; }
  .gallery-item.gi-tall { grid-row: span 1; }
  .invest-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: calc(100%); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .masterplan-actions { flex-direction: column; }
  .contact-form-card { padding: 28px 20px; }
  .contact-info-card { padding: 28px 20px; }
  .float-whatsapp { right: 16px; bottom: 80px; width: 46px; height: 46px; }
  .float-call { right: 16px; bottom: 20px; width: 46px; height: 46px; }
}
