/* ==========================================================================
   SINGH COLONY — Landing Page Styles
   Theme: Royal Blue + Amber | Fonts: Playfair Display + Poppins
   ========================================================================== */

/* ---------- 1. VARIABLES ---------- */
:root {
  --navy-950: #081c3f;
  --navy-900: #0b244f;
  --navy-800: #0e2f6b;
  --navy-700: #123d87;
  --navy-600: #1a4ba5;
  --navy-500: #245cc0;
  --navy-100: #d8e3f7;
  --blue-100: #e3ecfa;
  --blue-50:  #f2f6fd;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --ink:   #0f1a2e;
  --slate: #51607a;
  --line:  #e6ebf5;
  --white: #ffffff;
  --red:   #dc2626;
  --green: #15803d;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 2px 10px rgba(11, 36, 79, 0.08);
  --shadow-md: 0 10px 30px rgba(11, 36, 79, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 36, 79, 0.18);
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

::selection {
  background: var(--navy-800);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--amber-500);
  outline-offset: 3px;
}

/* ---------- 3. UTILITIES ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--blue-50);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.2;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--slate);
  font-size: 16.5px;
}

.text-amber {
  color: var(--amber-400);
}

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 13.5px;
}

.btn-block {
  width: 100%;
}

.btn-amber {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.35);
}

.btn-amber:hover {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.45);
}

.btn-blue {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(18, 61, 135, 0.3);
}

.btn-blue:hover {
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--amber-400);
  color: var(--amber-400);
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  color: var(--navy-800);
  border-color: var(--navy-100);
}

.btn-ghost:hover {
  border-color: var(--navy-800);
  background: var(--navy-50, var(--blue-50));
}

/* ---------- 5. SCROLL REVEAL ANIMATIONS ---------- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal { transform: translateY(24px); }
.reveal-up { transform: translateY(36px); }
.reveal-left { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }

.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- 6. TOP BAR ---------- */
.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-rera {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.4px;
}

.topbar-rera .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-400);
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(251, 191, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-link {
  transition: color var(--transition);
}

.topbar-link:hover {
  color: var(--amber-400);
}

/* ---------- 7. HEADER / NAV ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.header.scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 52px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--amber-500);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy-700);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta-mobile {
  display: none;
}

/* Hamburger */
.nav-toggle {
  position: relative;
  z-index: 1002;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Slide-in menu backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8, 28, 63, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- 8. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 110px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(1100px 560px at 88% -10%, rgba(36, 92, 192, 0.55), transparent 60%),
    radial-gradient(900px 520px at -10% 115%, rgba(36, 92, 192, 0.35), transparent 60%),
    linear-gradient(155deg, #071733 0%, #0b244f 45%, #123d87 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 51, 0.45) 0%, rgba(7, 23, 51, 0.35) 55%, rgba(7, 23, 51, 0.85) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, rgba(0, 0, 0, 0.9), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, rgba(0, 0, 0, 0.9), transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--amber-400);
  margin-bottom: 26px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.4vw, 68px);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(15.5px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  font-weight: 300;
}

.hero-sub strong {
  color: var(--amber-400);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats li {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
}

.hero-stats span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.3px;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 1;
}

.mouse {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  position: relative;
}

.wheel {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 3px;
  background: var(--amber-400);
  animation: wheel 1.8s infinite;
}

@keyframes wheel {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- 9. TRUST MARQUEE ---------- */
.marquee {
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 15px 21px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.marquee-group i {
  color: var(--amber-400);
  font-style: normal;
  font-size: 11px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 10. ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -22px;
  left: -18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 18px 26px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--amber-500);
}

.about-badge strong {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1;
}

.about-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.4;
}

.about-text p {
  color: var(--slate);
  margin-bottom: 14px;
}

.about-text p strong {
  color: var(--navy-800);
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.mv-card {
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.mv-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}

.mv-card h3 {
  font-size: 16.5px;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.mv-card p {
  font-size: 14px;
  margin: 0;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* ---------- 11. STATS BAND ---------- */
.stats {
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(36, 92, 192, 0.35), transparent 60%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat {
  text-align: center;
  padding: 12px 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stat:first-child {
  border-left: none;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 54px);
  font-weight: 800;
  color: var(--amber-400);
  line-height: 1.15;
}

.stat-num small {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- 12. CARDS (WHY US) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-100);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-900));
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 8px 18px rgba(18, 61, 135, 0.25);
}

.card h3 {
  font-size: 18px;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.card p {
  font-size: 14.5px;
  color: var(--slate);
}

/* ---------- 13. PLOTS & LAYOUT ---------- */
.plots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.plot-mix {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 38px;
  box-shadow: var(--shadow-sm);
}

.plot-row {
  margin-bottom: 26px;
}

.plot-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.plot-row-head h3 {
  font-size: 17px;
  color: var(--navy-900);
}

.plot-count {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--amber-600);
}

.bar {
  height: 10px;
  background: var(--blue-50);
  border-radius: 6px;
  overflow: hidden;
}

.bar-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--navy-600), var(--navy-900));
  transition: width 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.plot-row-sub {
  font-size: 12.5px;
  color: var(--slate);
  margin-top: 8px;
}

.plot-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  padding: 18px 0;
  margin-top: 6px;
}

.plot-total span {
  font-weight: 600;
  color: var(--navy-800);
}

.plot-total strong {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--navy-800);
}

.plot-facts {
  margin-top: 10px;
}

.plot-facts li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
}

.plot-facts li:last-child {
  border-bottom: none;
}

.plot-facts li span {
  color: var(--slate);
}

.plot-facts li strong {
  color: var(--navy-800);
  font-weight: 600;
}

.layout-img {
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.img-caption {
  text-align: center;
  font-size: 13.5px;
  color: var(--slate);
  margin-top: 14px;
}

/* ---------- 14. PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.price-main {
  background:
    radial-gradient(600px 300px at 90% -10%, rgba(36, 92, 192, 0.5), transparent 60%),
    linear-gradient(150deg, var(--navy-900), var(--navy-700));
  border: none;
  color: var(--white);
}

.price-main:hover {
  box-shadow: var(--shadow-lg);
}

.price-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--amber-400);
  color: var(--navy-950);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.price-rs {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--amber-400);
}

.price-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 54px);
  font-weight: 800;
  line-height: 1;
}

.price-dash {
  font-family: var(--font-display);
  font-size: 26px;
  color: rgba(255, 255, 255, 0.7);
}

.price-per {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 8px 0 20px;
}

.price-note {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

.price-icon {
  font-size: 30px;
  margin-bottom: 16px;
}

.price-card h3 {
  font-size: 19px;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.price-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--slate);
}

.price-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--amber-600);
  font-weight: 700;
}

/* ---------- 15. LOCATION ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.loc-address {
  display: flex;
  gap: 18px;
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
}

.loc-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 22px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.loc-address h3 {
  font-size: 17px;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.loc-address p {
  color: var(--slate);
  font-size: 14.5px;
}

.loc-coords {
  font-size: 13px !important;
  color: var(--navy-600) !important;
  margin: 6px 0 12px;
}

.landmarks-title {
  font-size: 18px;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.landmarks li {
  display: grid;
  grid-template-columns: 44px 1fr auto auto;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 11px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease, border-color var(--transition), box-shadow var(--transition);
}

.landmarks li:hover {
  border-color: var(--navy-100);
  box-shadow: var(--shadow-md);
}

.lm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 20px;
  background: var(--blue-50);
  border-radius: 10px;
}

.lm-name {
  font-weight: 500;
  color: var(--ink);
  font-size: 14.5px;
}

.lm-dist {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy-800);
}

.lm-time {
  background: var(--blue-50);
  color: var(--navy-700);
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.map-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 100%;
}

.map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- 16. GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 16px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(8, 28, 63, 0.85));
}

/* ---------- 17. CONTACT ---------- */
.contact {
  background:
    radial-gradient(900px 460px at 90% -10%, rgba(36, 92, 192, 0.4), transparent 60%),
    linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact .kicker {
  color: var(--amber-400);
}

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

.contact-info > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 480px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.c-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

.contact-list strong {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}

.contact-list p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.contact-list a {
  color: var(--amber-400);
  transition: color var(--transition);
}

.contact-list a:hover {
  color: var(--amber-400);
  text-decoration: underline;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.form-note {
  font-size: 13.5px;
  color: var(--slate);
  margin-bottom: 24px;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--blue-50);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9aa7bf;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(36, 92, 192, 0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.error-msg {
  display: block;
  color: var(--red);
  font-size: 12px;
  margin-top: 5px;
  min-height: 0;
}

.form-success {
  margin-top: 16px;
  background: #ecfdf3;
  border: 1px solid #a7f3d0;
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 16px;
  border-radius: 10px;
  animation: fadeUp 0.4s ease;
}

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

/* ---------- 18. FOOTER ---------- */
.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
}

.brand-footer {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 300px;
}

.footer-brand p strong {
  color: var(--amber-400);
}

.footer-col h4 {
  color: var(--white);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--amber-500);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-col ul a {
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul a:hover {
  color: var(--amber-400);
  padding-left: 6px;
}

.footer-contact li {
  line-height: 1.7;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact li a:hover {
  color: var(--amber-400);
  padding-left: 0;
}

.rera-badge {
  display: inline-block;
  background: var(--amber-400);
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 10px 16px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.rera-note {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 240px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* ---------- 19. BACK TO TOP ---------- */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top:hover {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: var(--navy-950);
}

/* ---------- 20. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-main {
    grid-column: 1 / -1;
  }

  .stats-grid {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 78px;
  }

  /* --- mobile nav --- */
  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(330px, 84vw);
    background: var(--white);
    box-shadow: -18px 0 50px rgba(8, 28, 63, 0.18);
    transform: translateX(105%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 104px 32px 32px;
    z-index: 1001;
    overflow-y: auto;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-link {
    display: block;
    font-size: 18px;
    padding: 10px 0;
  }

  .nav-cta-mobile {
    display: inline-flex;
    margin-top: 24px;
    width: 100%;
  }

  /* --- layout collapse --- */
  .section {
    padding: 72px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .plots-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .map-wrap {
    min-height: 400px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-main {
    grid-column: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    border-left: none;
  }

  .hero {
    padding: 130px 0 96px;
  }

  .hero-stats {
    gap: 28px;
  }

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    padding-inline: 18px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-links a:last-child {
    display: none;
  }

  .brand-logo {
    height: 44px;
    max-width: 150px;
  }

  .hero {
    padding: 120px 0 76px;
  }

  .hero-title {
    font-size: clamp(32px, 9.5vw, 42px);
  }

  .hide-mobile {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 18px 30px;
    margin-top: 44px;
  }

  .hero-stats li {
    min-width: 42%;
  }

  .hero-stats strong {
    font-size: 26px;
  }

  .about-badge {
    left: 6px;
    bottom: -18px;
    padding: 14px 20px;
  }

  .about-badge strong {
    font-size: 32px;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .about-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .about-cta .btn {
    width: 100%;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .plot-mix {
    padding: 26px 20px;
  }

  .plot-facts li {
    font-size: 13.5px;
  }

  .plot-facts li span {
    max-width: 55%;
  }

  .landmarks li {
    grid-template-columns: 40px 1fr auto;
    gap: 10px;
    padding: 11px 12px;
  }

  .lm-dist {
    grid-column: 3;
    grid-row: 1;
  }

  .lm-time {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
  }

  .lm-icon {
    width: 40px;
    height: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 26px 20px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }

  .to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

/* ---------- 21. GALLERY LIGHTBOX ---------- */
.gallery-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(8, 28, 63, 0.72);
  color: var(--amber-400);
  opacity: 0;
  transform: scale(0.7) rotate(-10deg);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  pointer-events: none;
}

.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 14, 32, 0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: min(1080px, 92vw);
  max-height: 86vh;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 72vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

@keyframes lightboxZoom {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-stage img.lightbox-anim {
  animation: lightboxZoom 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-align: center;
}

.lightbox-counter {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
}

.lightbox-btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.lightbox-btn:hover {
  background: var(--amber-400);
  border-color: var(--amber-400);
  color: var(--navy-950);
}

.lightbox-close {
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }

/* ---------- 21. GALLERY LIGHTBOX ---------- */
.gallery-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(8, 28, 63, 0.72);
  color: var(--amber-400);
  opacity: 0;
  transform: scale(0.7) rotate(-10deg);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  pointer-events: none;
}

.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 14, 32, 0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: min(1080px, 92vw);
  max-height: 86vh;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 72vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: lightboxZoom 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes lightboxZoom {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-align: center;
}

.lightbox-counter {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
}

.lightbox-btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.lightbox-btn:hover {
  background: var(--amber-400);
  border-color: var(--amber-400);
  color: var(--navy-950);
}

.lightbox-close {
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }

@media (max-width: 640px) {
  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .lightbox-stage img {
    max-height: 64vh;
  }
}

/* ---------- 22. WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  left: 26px;
  bottom: 26px;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25d366, #1da851);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.55);
  z-index: -1;
  animation: waPulse 2.2s infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.55);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
}

.whatsapp-icon svg {
  width: 30px;
  height: 30px;
}

.whatsapp-label {
  font-size: 14.5px;
  font-weight: 600;
  padding-right: 20px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .whatsapp-float {
    left: 16px;
    bottom: 16px;
  }

  .whatsapp-icon {
    width: 48px;
    height: 48px;
  }

  .whatsapp-icon svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-label {
    display: none;
  }
}
