/* ============================================
   BULWARK GROUP — PREMIUM DESIGN SYSTEM
   ============================================ */

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

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A30;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --dark-4: #222222;
  --mid: #2C2C2C;
  --light-text: #B0A090;
  --white: #FFFFFF;
  --off-white: #F8F5F0;
  --text-body: #D0C8B8;
  --border: rgba(201,168,76,0.2);
  --border-subtle: rgba(255,255,255,0.08);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.18);
  --shadow-dark: 0 24px 64px rgba(0,0,0,0.6);
  --radius: 4px;
  --radius-lg: 12px;
  --max-width: 1280px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
.serif { font-family: var(--font-serif); }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; color: var(--white); }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
p { font-size: 1rem; line-height: 1.8; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  margin-bottom: 1.2rem;
}

/* ---- LAYOUT UTILITIES ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-lg { padding: 9rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

/* ---- DIVIDER ---- */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.divider-center { margin: 1.5rem auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark-3);
  color: var(--white);
  border: 1px solid var(--border-subtle);
}
.btn-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.88rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.75rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ---- NAVIGATION ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-links a.nav-nri {
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  letter-spacing: 0.08em;
}
.nav-links a.nav-nri:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.nav-links a.nav-nri::after { display: none; }
.nav-cta .btn { padding: 0.65rem 1.5rem; font-size: 0.75rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.3) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 0.4rem 1.1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  background: rgba(201,168,76,0.07);
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; max-width: 820px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  backdrop-filter: blur(8px);
}
.trust-pill .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-text);
}

/* ---- CARDS ---- */
.card {
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-dark);
}
.card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.card-img img { transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.8rem; }
.card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.9rem; color: var(--light-text); margin-bottom: 1.4rem; }

/* ---- PROJECT CARD ---- */
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-dark); }
.project-card-img {
  height: 420px;
  position: relative;
}
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  transition: var(--transition);
}
.project-card:hover .project-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.1) 100%);
}
.project-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}
.project-card-content .status-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
}
.badge-open { background: var(--gold); color: var(--dark); }
.badge-soon { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.project-card-content h3 { font-size: 1.7rem; color: var(--white); margin-bottom: 0.4rem; }
.project-card-content p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; }
.project-meta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.project-meta-item {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}
.project-meta-item span { color: var(--gold); }

/* ---- FEATURE GRID ---- */
.feature-item {
  padding: 2rem;
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--border);
  background: var(--dark-4);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
}
.feature-item h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-item p { font-size: 0.88rem; color: var(--light-text); line-height: 1.7; }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  padding: 2.5rem;
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonial-card:hover { border-color: var(--border); }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.testimonial-title { font-size: 0.78rem; color: var(--light-text); }
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.5rem; }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .eyebrow { display: block; margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--light-text); max-width: 560px; margin: 0 auto; }

/* ---- IMAGE SPLIT ---- */
.img-split { height: 100%; min-height: 500px; border-radius: var(--radius-lg); overflow: hidden; }
.img-split-sm { height: 380px; border-radius: var(--radius-lg); overflow: hidden; }

/* ---- NRI BANNER ---- */
.nri-banner {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.nri-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.06) 100%);
}
.nri-banner .eyebrow { margin-bottom: 0.8rem; }
.nri-banner h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.nri-banner p { max-width: 480px; margin-bottom: 2rem; color: var(--light-text); }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--light-text); margin-bottom: 2.5rem; }

/* ---- FOOTER ---- */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.88rem; color: var(--light-text); line-height: 1.8; max-width: 280px; }
.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--light-text);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.footer-contact-icon {
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-text {
  font-size: 0.85rem;
  color: var(--light-text);
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--light-text);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { color: var(--light-text); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  padding-top: 6rem;
}
.page-hero h1 { margin-bottom: 0.8rem; }

/* ---- PROJECT DETAIL HERO ---- */
.project-hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.project-hero-bg { position: absolute; inset: 0; }
.project-hero-bg img { animation: heroZoom 15s ease-in-out infinite alternate; }
.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}
.project-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.project-hero-content .status-badge { margin-bottom: 1rem; }
.project-hero-content h1 { font-size: clamp(3rem, 7vw, 6rem); color: var(--white); margin-bottom: 0.5rem; }
.project-hero-content .tagline { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold); font-style: italic; }

/* ---- QUICK FACTS ---- */
.quick-facts {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.quick-facts h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}
.fact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.88rem;
}
.fact-row:last-child { border-bottom: none; }
.fact-label { color: var(--light-text); font-weight: 500; }
.fact-value { color: var(--white); font-weight: 600; text-align: right; }

/* ---- HIGHLIGHTS LIST ---- */
.highlights-list { list-style: none; }
.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-subtle);
}
.highlights-list li:last-child { border-bottom: none; }
.highlights-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- AMENITIES GRID ---- */
.amenity-card {
  padding: 1.5rem;
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.amenity-card:hover { border-color: var(--border); }
.amenity-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.amenity-card h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.amenity-card p { font-size: 0.82rem; color: var(--light-text); }

/* ---- LOCATION TABLE ---- */
.location-table {
  width: 100%;
  border-collapse: collapse;
}
.location-table tr {
  border-bottom: 1px solid var(--border-subtle);
}
.location-table tr:last-child { border-bottom: none; }
.location-table td {
  padding: 0.8rem 0;
  font-size: 0.9rem;
}
.location-table td:first-child { color: var(--gold); font-weight: 700; font-size: 1rem; }
.location-table td:last-child { color: var(--text-body); }

/* ---- PAYMENT PLAN ---- */
.payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  transition: var(--transition);
}
.payment-row:hover { border-color: var(--border); }
.payment-milestone { font-size: 0.88rem; color: var(--text-body); }
.payment-pct { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); font-weight: 600; }

/* ---- GALLERY GRID ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ---- STICKY CTA BAR ---- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: var(--transition);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-cta-title { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); }
.sticky-cta-sub { font-size: 0.78rem; color: var(--light-text); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 2rem;
  z-index: 950;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
.whatsapp-float a { color: #fff; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--dark-4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: var(--dark-3);
}
.form-select option { background: var(--dark-3); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---- CONTACT CARD ---- */
.contact-card {
  padding: 2rem;
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}
.contact-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.contact-card h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.contact-card p { font-size: 0.88rem; color: var(--light-text); }
.contact-card a { color: var(--gold); }
.contact-card a:hover { color: var(--gold-light); }

/* ---- NRI PAGE SPECIFIC ---- */
.nri-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.globe-flag {
  display: inline-flex;
  gap: 0.4rem;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.country-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
}
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--dark-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.process-step:hover { border-color: var(--border); }
.step-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 600;
  min-width: 40px;
}
.step-content h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.88rem; color: var(--light-text); line-height: 1.7; }
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.3rem 1.5rem;
  background: var(--dark-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-toggle {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.9rem;
  color: var(--light-text);
  line-height: 1.8;
  background: var(--dark-3);
}
.nri-advantage-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.trust-grid-item {
  padding: 2rem;
  background: var(--dark-3);
  text-align: center;
}
.trust-grid-item h3 { font-size: 2rem; color: var(--gold); margin-bottom: 0.4rem; }
.trust-grid-item p { font-size: 0.82rem; color: var(--light-text); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---- DARK SECTION VARIATIONS ---- */
.bg-dark-2 { background: var(--dark-2); }
.bg-dark-3 { background: var(--dark-3); }
.bg-gradient { background: linear-gradient(180deg, var(--dark) 0%, var(--dark-3) 100%); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.97);
    padding: 6rem 2rem 2rem;
    backdrop-filter: blur(20px);
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
    width: 100%;
    letter-spacing: 0.05em;
  }
  .nav-links.open a.nav-nri {
    border: 1px solid rgba(201,168,76,0.4);
    padding: 0.8rem 1rem;
    margin-top: 1rem;
    font-size: 1rem;
  }
  .nav-cta { display: none; }
  .hamburger { display: flex; z-index: 1000; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-content { padding: 0 1.5rem; }
  .hero h1 { font-size: 2.5rem; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .sticky-cta-inner { flex-wrap: wrap; justify-content: center; }
  .nri-banner { padding: 2rem; }
  .nri-banner h2 { font-size: 2rem; }
  .section { padding: 4rem 0; }
  .section-lg { padding: 6rem 0; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .project-hero-content h1 { font-size: 2.5rem; }
}
