/* ==========================================================================
   BETTIAH RAJ BHUMI — Master Stylesheet
   Heritage Modern aesthetic | Royal maroon + gold
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Manrope:wght@300;400;500;600;700;800&family=Tiro+Devanagari+Hindi:ital@0;1&family=Mukta:wght@300;400;500;600;700;800&display=swap');

/* ============ DESIGN TOKENS ============ */
:root {
  /* Brand palette */
  --maroon-900: #2D0808;
  --maroon-800: #4A0E0E;
  --maroon-700: #6B1A1A;
  --maroon-600: #8B2A2A;
  --maroon-500: #A63838;
  --maroon-100: #F5E8E0;
  --maroon-50:  #FDF9F2;

  --gold-700: #8E6B1F;
  --gold-600: #B8923F;
  --gold-500: #D4AF37;
  --gold-400: #F4D03F;
  --gold-100: #F4ECD8;

  --ink-900: #14181F;
  --ink-800: #1A1F2E;
  --ink-700: #2A3142;
  --ink-500: #5B6477;
  --ink-300: #A8AFBE;

  --cream-100: #F5F0E8;
  --cream-50:  #FDFBF6;
  --white:     #FFFFFF;
  --bg-soft:   #F7F4ED;

  --danger:  #B23A48;
  --success: #8B2A2A;
  --warning: #C9912F;

  /* Type */
  --font-display: 'Fraunces', 'Tiro Devanagari Hindi', Georgia, serif;
  --font-body:    'Manrope', 'Mukta', system-ui, sans-serif;
  --font-hindi:   'Mukta', 'Tiro Devanagari Hindi', sans-serif;

  /* Spacing scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* Radii */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 32px; --r-full: 999px;

  /* Shadows — warm, layered */
  --shadow-sm: 0 1px 2px rgba(20, 24, 31, 0.06), 0 1px 3px rgba(20, 24, 31, 0.04);
  --shadow-md: 0 4px 12px rgba(20, 24, 31, 0.08), 0 2px 4px rgba(20, 24, 31, 0.04);
  --shadow-lg: 0 16px 40px rgba(74, 14, 14, 0.12), 0 4px 12px rgba(20, 24, 31, 0.06);
  --shadow-xl: 0 32px 80px rgba(74, 14, 14, 0.18), 0 8px 24px rgba(20, 24, 31, 0.08);
  --shadow-gold: 0 12px 32px rgba(212, 175, 55, 0.28);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Borders & Lines */
  --line: rgba(74, 14, 14, 0.1);
  --line-dark: rgba(74, 14, 14, 0.2);

  /* Layout */
  --container: 1240px;
  --nav-h: 76px;
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-800);
  background: var(--cream-50);
  font-feature-settings: 'ss01', 'cv01', 'cv02';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--maroon-700); }
input, textarea, select {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-800);
}

/* When language is Hindi, swap body font */
html[lang="hi"] body { font-family: var(--font-hindi); }
html[lang="hi"] .display { font-family: var(--font-hindi); font-weight: 700; }

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: "opsz" 96, "SOFT" 50;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0 0 var(--s-4) 0;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin: 0 0 var(--s-4) 0; color: var(--ink-700); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold-500);
}

.lead { font-size: 1.15rem; color: var(--ink-700); line-height: 1.7; }

.highlight-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--maroon-700);
}

/* ============ LAYOUT PRIMITIVES ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

section { padding: var(--s-9) 0; position: relative; }
@media (max-width: 768px) { section { padding: var(--s-8) 0; } }

.row { display: flex; flex-wrap: wrap; gap: var(--s-5); }
.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(253, 251, 246, 0.85);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid rgba(74, 14, 14, 0.08);
  z-index: 100;
  transition: all .3s ease;
}
.nav.scrolled {
  background: rgba(253, 251, 246, 0.96);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5);
}
.brand {
  display: flex; align-items: center; gap: var(--s-3);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--maroon-900);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-700));
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 12px rgba(74, 14, 14, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.brand-mark::after {
  content: ''; position: absolute; inset: 2px;
  border: 1px solid var(--gold-500);
  border-radius: 8px;
  opacity: 0.5;
}
.brand-mark svg { position: relative; z-index: 1; }
.brand-name-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-600);
  margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: var(--s-5);
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--gold-500);
  transition: right .3s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a:hover { color: var(--maroon-800); }

.nav-cta {
  display: flex; align-items: center; gap: var(--s-3);
}
.lang-toggle {
  display: inline-flex; align-items: center;
  background: var(--maroon-50);
  border: 1px solid rgba(74, 14, 14, 0.1);
  border-radius: var(--r-full);
  padding: 4px;
  font-size: 12px; font-weight: 600;
}
.lang-toggle button {
  border: none; background: transparent;
  padding: 6px 12px;
  border-radius: var(--r-full);
  color: var(--ink-700);
  transition: all .25s ease;
}
.lang-toggle button.active {
  background: var(--maroon-800);
  color: var(--cream-50);
}

.nav-hamburger {
  display: none;
  background: transparent; border: none;
  width: 36px; height: 36px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink-800); margin: 5px auto;
  transition: .3s;
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--cream-50);
    padding: var(--s-5);
    box-shadow: var(--shadow-md);
    gap: var(--s-4);
    border-bottom: 1px solid rgba(74,14,14,0.1);
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-2);
  padding: 14px 26px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--r-full);
  border: none;
  transition: all .3s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-700));
  color: var(--cream-50);
  box-shadow: 0 6px 18px rgba(74, 14, 14, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74, 14, 14, 0.35);
  color: var(--white);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--ink-900);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(212, 175, 55, 0.4); }

.btn-ghost {
  background: transparent;
  color: var(--maroon-800);
  border: 1.5px solid rgba(74, 14, 14, 0.2);
}
.btn-ghost:hover { background: var(--maroon-50); border-color: var(--maroon-700); }

.btn-dark {
  background: var(--ink-900);
  color: var(--cream-50);
}
.btn-dark:hover { background: var(--ink-800); transform: translateY(-2px); }

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + var(--s-7));
  padding-bottom: var(--s-9);
  background:
    radial-gradient(ellipse 1200px 700px at 75% 20%, rgba(212, 175, 55, 0.13), transparent 60%),
    radial-gradient(ellipse 800px 600px at 10% 90%, rgba(74, 14, 14, 0.08), transparent 60%),
    linear-gradient(180deg, var(--cream-50) 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74, 14, 14, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 14, 14, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center center;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-8);
  align-items: center;
  z-index: 2;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s-7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 400;
  color: var(--ink-900);
  margin: var(--s-4) 0 var(--s-5);
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--maroon-800);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 8px;
  height: 8px;
  background: var(--gold-500);
  opacity: 0.35;
  z-index: -1;
  border-radius: 2px;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 540px;
  margin-bottom: var(--s-6);
}
.hero-cta-row { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-bottom: var(--s-6); }

.hero-stats {
  display: flex; gap: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(74, 14, 14, 0.12);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--maroon-800);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-500);
  margin-top: 6px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--maroon-900), var(--maroon-700));
  box-shadow: var(--shadow-xl);
}
.hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='sky' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23F4D03F'/%3E%3Cstop offset='0.5' stop-color='%23D4AF37'/%3E%3Cstop offset='1' stop-color='%238E6B1F'/%3E%3C/linearGradient%3E%3ClinearGradient id='field' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%236B1A1A'/%3E%3Cstop offset='1' stop-color='%232D0808'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='800' height='600' fill='url(%23sky)'/%3E%3Crect y='600' width='800' height='400' fill='url(%23field)'/%3E%3Cpath d='M0,620 Q200,580 400,610 T800,600 L800,640 L0,640 Z' fill='%234A0E0E' opacity='0.6'/%3E%3Cpath d='M0,700 Q200,680 400,690 T800,680 L800,720 L0,720 Z' fill='%232D0808' opacity='0.7'/%3E%3Ccircle cx='620' cy='200' r='80' fill='%23F4ECD8' opacity='0.5'/%3E%3Cpath d='M150,620 L155,520 L160,620 Z' fill='%232D0808'/%3E%3Cpath d='M250,615 L255,500 L260,615 Z' fill='%232D0808'/%3E%3Cpath d='M580,625 L585,540 L590,625 Z' fill='%232D0808'/%3E%3Cpath d='M680,620 L685,510 L690,620 Z' fill='%232D0808'/%3E%3C/svg%3E");
  background-size: cover; background-position: center;
}
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(45, 8, 8, 0.6) 100%);
}
.hero-badge {
  position: absolute; top: var(--s-5); left: var(--s-5);
  background: rgba(253, 251, 246, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: var(--r-full);
  display: flex; align-items: center; gap: var(--s-2);
  font-size: 12px; font-weight: 600;
  color: var(--maroon-900);
  z-index: 2;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--maroon-500); box-shadow: 0 0 0 4px rgba(74, 14, 14, 0.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.3);} }

.hero-caption {
  position: absolute; bottom: var(--s-5); left: var(--s-5); right: var(--s-5);
  color: var(--cream-50); z-index: 2;
}
.hero-caption-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.hero-caption-sub { font-size: 13px; opacity: 0.85; }

/* Floating cards on hero */
.hero-float-card {
  position: absolute;
  background: var(--cream-50);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex; align-items: center; gap: var(--s-3);
  min-width: 220px;
}
.hero-float-card .icn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--maroon-50);
  border-radius: 10px;
  color: var(--maroon-800);
}
.hero-float-card .ttl { font-size: 13px; font-weight: 700; color: var(--ink-900); }
.hero-float-card .sub { font-size: 11px; color: var(--ink-500); }
.hero-float-card.card-1 { top: 18%; left: -10%; animation: float 6s ease-in-out infinite; }
.hero-float-card.card-2 { bottom: 12%; right: -8%; animation: float 7s ease-in-out -2s infinite; }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }

/* ============ SEARCH BAR ============ */
.search-pod {
  background: var(--cream-50);
  border-radius: var(--r-lg);
  padding: var(--s-3);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 2px;
  border: 1px solid rgba(74, 14, 14, 0.08);
  max-width: 100%;
  margin-bottom: var(--s-6);
}
.search-pod .field {
  padding: 8px 14px;
  border-right: 1px solid rgba(74, 14, 14, 0.08);
}
.search-pod .field:last-of-type { border-right: none; }
.search-pod label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  display: block;
  margin-bottom: 2px;
}
.search-pod select, .search-pod input {
  width: 100%;
  border: none;
  background: transparent;
  font-weight: 500;
  color: var(--ink-900);
  outline: none;
  font-size: 14px;
}
.search-pod .btn { border-radius: var(--r-md); }
@media (max-width: 820px) {
  .search-pod { grid-template-columns: 1fr 1fr; }
  .search-pod .field { border-right: none; border-bottom: 1px solid rgba(74, 14, 14, 0.08); }
  .search-pod .btn { grid-column: 1 / -1; }
}

/* ============ CARDS ============ */
.card {
  background: var(--cream-50);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .35s var(--ease-out);
  border: 1px solid rgba(74, 14, 14, 0.06);
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.4);
}

.prop-card { display: flex; flex-direction: column; }
.prop-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--maroon-600), var(--maroon-800));
  position: relative;
  overflow: hidden;
}
.prop-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255,255,255,0.1), transparent 50%);
}
.prop-img svg { width: 100%; height: 100%; }
.prop-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold-500);
  color: var(--ink-900);
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.prop-fav {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(253, 251, 246, 0.95);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: grid; place-items: center;
  border: none;
  color: var(--ink-700);
  transition: all .25s;
  cursor: pointer;
}
.prop-fav:hover { color: var(--danger); transform: scale(1.1); }
.prop-fav.active { color: var(--danger); }
.prop-body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.prop-location {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-700);
  font-weight: 600;
  margin-bottom: 6px;
}
.prop-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: 10px;
  line-height: 1.25;
}
.prop-meta {
  display: flex; gap: var(--s-4); flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px dashed rgba(74, 14, 14, 0.15);
}
.prop-meta span { display: inline-flex; align-items: center; gap: 6px; }
.prop-foot {
  display: flex; justify-content: space-between; align-items: end;
  margin-top: auto;
}
.prop-price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--maroon-800);
  letter-spacing: -0.01em;
}
.prop-price small { font-size: 12px; color: var(--ink-500); font-weight: 400; font-family: var(--font-body); }

/* ============ SECTION HEADER ============ */
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: var(--s-7);
  gap: var(--s-5);
  flex-wrap: wrap;
}
.section-head-left { max-width: 640px; }
.section-head h2 { margin-bottom: var(--s-3); }
.section-head p { color: var(--ink-500); margin: 0; }

/* ============ FEATURE STRIP ============ */
.feature-strip {
  background: var(--ink-900);
  color: var(--cream-50);
  padding: var(--s-8) 0;
  position: relative;
  overflow: hidden;
}
.feature-strip::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
  pointer-events: none;
}
.feature-strip h2 { color: var(--cream-50); }
.feature-strip .eyebrow { color: var(--gold-400); }
.feature-item {
  padding: var(--s-5) 0;
  border-top: 1px solid rgba(250, 245, 235, 0.1);
  display: flex; gap: var(--s-5); align-items: start;
}
.feature-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-500);
  flex-shrink: 0;
  width: 60px;
  line-height: 1;
}
.feature-item h4 { color: var(--cream-50); font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 8px; font-weight: 500; }
.feature-item p { color: rgba(250, 245, 235, 0.65); margin: 0; }

/* ============ TRUST / TESTIMONIAL ============ */
.testimonial {
  background: var(--cream-100);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; left: var(--s-6);
  font-family: var(--font-display);
  font-size: 9rem;
  color: var(--gold-500);
  line-height: 1;
  opacity: 0.5;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ink-800);
  margin: 0 0 var(--s-5);
  position: relative;
}
.testimonial-attr { display: flex; align-items: center; gap: var(--s-3); }
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--maroon-700));
  display: grid; place-items: center;
  color: var(--cream-50);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.testimonial-name { font-weight: 700; color: var(--ink-900); }
.testimonial-role { font-size: 13px; color: var(--ink-500); }

/* ============ VILLAGE / AREA GRID ============ */
.area-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-900));
  transition: all .4s var(--ease-out);
  cursor: pointer;
}
.area-card::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 500' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='400' height='500' fill='%234A0E0E'/%3E%3Cpath d='M0,350 Q100,320 200,340 T400,335 L400,500 L0,500 Z' fill='%236B1A1A' opacity='0.7'/%3E%3Cpath d='M0,400 L400,400 L400,500 L0,500 Z' fill='%232D0808' opacity='0.6'/%3E%3Cpath d='M50,360 L55,290 L60,360 Z M120,365 L125,280 L130,365 Z M280,355 L285,270 L290,355 Z M340,360 L345,290 L350,360 Z' fill='%231A0303'/%3E%3Ccircle cx='320' cy='100' r='40' fill='%23D4AF37' opacity='0.6'/%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.9;
}
.area-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(45, 8, 8, 0.85) 100%);
}
.area-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--s-5);
  color: var(--cream-50);
  z-index: 2;
}
.area-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream-50);
  margin: 0 0 6px;
}
.area-card .stat {
  display: flex; justify-content: space-between;
  font-size: 13px;
  color: rgba(250, 245, 235, 0.75);
  padding-top: var(--s-3);
  margin-top: var(--s-3);
  border-top: 1px solid rgba(250, 245, 235, 0.15);
}
.area-card .stat strong { color: var(--gold-400); font-weight: 600; }
.area-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink-900);
  color: rgba(250, 245, 235, 0.7);
  padding: var(--s-9) 0 var(--s-5);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer h5 {
  color: var(--cream-50);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: var(--s-4);
  font-weight: 700;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(250, 245, 235, 0.65); font-size: 14px; transition: color .25s; }
.footer-links a:hover { color: var(--gold-500); }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream-50);
  margin: var(--s-4) 0;
  line-height: 1.4;
}
.footer-bottom {
  border-top: 1px solid rgba(250, 245, 235, 0.1);
  padding-top: var(--s-5);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3);
  font-size: 13px;
}

/* ============ FORMS ============ */
.form-row { display: grid; gap: var(--s-3); margin-bottom: var(--s-4); }
.form-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row.two { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-700);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(74, 14, 14, 0.15);
  border-radius: var(--r-md);
  background: var(--cream-50);
  font-size: 15px;
  transition: all .25s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--maroon-700);
  box-shadow: 0 0 0 4px rgba(74, 14, 14, 0.1);
}
textarea.form-control { resize: vertical; min-height: 110px; font-family: inherit; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg' fill='%234A0E0E'%3E%3Cpath d='M6 9L1 4h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 38px; }

/* ============ AUTH FORMS ============ */
.auth-shell {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
}
@media (max-width: 900px) { .auth-shell { grid-template-columns: 1fr; } }
.auth-art {
  background:
    radial-gradient(ellipse at top right, rgba(212,175,55,0.2), transparent 60%),
    linear-gradient(135deg, var(--maroon-900), var(--maroon-700));
  color: var(--cream-50);
  padding: var(--s-9) var(--s-7);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.auth-art::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' x='0' y='0' width='80' height='80' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23D4AF37' opacity='0.25'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='800' height='800' fill='url(%23p)'/%3E%3C/svg%3E");
  pointer-events: none;
}
@media (max-width: 900px) { .auth-art { display: none; } }
.auth-form-wrap {
  display: flex; align-items: center; justify-content: center;
  padding: var(--s-8) var(--s-5);
}
.auth-form-card { width: 100%; max-width: 460px; }
.auth-form-card h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin-bottom: 8px;
}
.auth-form-card p { color: var(--ink-500); margin-bottom: var(--s-6); }

.auth-tabs {
  display: flex;
  background: var(--cream-100);
  border-radius: var(--r-full);
  padding: 4px;
  margin-bottom: var(--s-5);
  gap: 4px;
}
.auth-tabs button {
  flex: 1; padding: 10px 16px;
  background: transparent; border: none;
  border-radius: var(--r-full);
  font-weight: 600; font-size: 13px;
  color: var(--ink-700);
  transition: all .25s ease;
}
.auth-tabs button.active {
  background: var(--maroon-800);
  color: var(--cream-50);
}

/* ============ DASHBOARD ============ */
.dash-shell {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--bg-soft);
}
.dash-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  min-height: calc(100vh - var(--nav-h));
}
@media (max-width: 900px) { .dash-inner { grid-template-columns: 1fr; } }
.dash-side {
  background: var(--ink-900);
  color: var(--cream-50);
  padding: var(--s-6) var(--s-4);
}
.dash-user {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-4);
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
}
.dash-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-600), var(--maroon-600));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--cream-50);
  flex-shrink: 0;
}
.dash-user-name { font-size: 14px; font-weight: 600; color: var(--cream-50); }
.dash-user-role { font-size: 11px; color: rgba(250,245,235,0.5); text-transform: uppercase; letter-spacing: 0.1em; }

.dash-nav { list-style: none; padding: 0; margin: 0; }
.dash-nav li { margin-bottom: 4px; }
.dash-nav a {
  display: flex; align-items: center; gap: var(--s-3);
  padding: 11px 14px;
  border-radius: var(--r-md);
  color: rgba(250, 245, 235, 0.7);
  font-size: 14px; font-weight: 500;
  transition: all .2s ease;
}
.dash-nav a:hover { background: rgba(255,255,255,0.05); color: var(--cream-50); }
.dash-nav a.active {
  background: var(--maroon-700);
  color: var(--cream-50);
}
.dash-nav a svg { width: 18px; flex-shrink: 0; }

.dash-main { padding: var(--s-6); overflow-x: hidden; }

.stat-card {
  background: var(--cream-50);
  border-radius: var(--r-md);
  padding: var(--s-5);
  border: 1px solid rgba(74, 14, 14, 0.06);
  position: relative;
  overflow: hidden;
}
.stat-card .stat-label {
  font-size: 12px; color: var(--ink-500);
  text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: var(--s-3);
}
.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--ink-900);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-card .stat-delta {
  font-size: 12px;
  margin-top: var(--s-2);
  color: var(--maroon-700);
  font-weight: 600;
}

/* ============ BADGES / CHIPS ============ */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  background: var(--maroon-50);
  color: var(--maroon-800);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
}
.chip.gold { background: var(--gold-100); color: var(--gold-700); }
.chip.dark { background: var(--ink-800); color: var(--cream-50); }

/* ============ ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: all .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ============ ADDITIONAL TEMPLATES ============ */

/* Page header (used on inner pages) */
.page-header {
  padding: calc(var(--nav-h) + var(--s-8)) 0 var(--s-7);
  background:
    radial-gradient(ellipse at top right, rgba(212,175,55,0.18), transparent 50%),
    linear-gradient(180deg, var(--cream-50), var(--bg-soft));
  border-bottom: 1px solid rgba(74, 14, 14, 0.08);
}
.page-header h1 { margin-bottom: var(--s-3); }
.page-header p { font-size: 1.1rem; color: var(--ink-500); max-width: 600px; }
.breadcrumb { font-size: 13px; color: var(--ink-500); margin-bottom: var(--s-4); }
.breadcrumb a { color: var(--maroon-700); }

/* Filters */
.filter-bar {
  background: var(--cream-50);
  border: 1px solid rgba(74, 14, 14, 0.08);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  display: flex; gap: var(--s-3); flex-wrap: wrap;
  margin-bottom: var(--s-6);
}
.filter-bar select, .filter-bar input {
  padding: 10px 14px;
  border: 1px solid rgba(74, 14, 14, 0.12);
  border-radius: var(--r-md);
  background: var(--cream-50);
  font-size: 14px;
  min-width: 140px;
}

/* Property detail */
.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--s-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 480px;
  margin-bottom: var(--s-6);
}
.detail-gallery > div {
  background: linear-gradient(135deg, var(--maroon-600), var(--maroon-900));
  position: relative;
  overflow: hidden;
}
.detail-gallery > div:first-child {
  grid-row: 1 / 3;
}
.detail-gallery > div::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255,255,255,0.08), transparent 50%);
}
@media (max-width: 768px) {
  .detail-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; height: auto; }
  .detail-gallery > div:first-child { grid-column: 1 / 3; grid-row: 1; }
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--s-6);
}
@media (max-width: 900px) { .detail-layout { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--cream-50);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  border: 1px solid rgba(74, 14, 14, 0.08);
  box-shadow: var(--shadow-md);
  position: sticky; top: calc(var(--nav-h) + 20px);
}

/* Spec list */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); margin: var(--s-5) 0; }
.spec-item {
  padding: var(--s-3) var(--s-4);
  background: var(--maroon-50);
  border-radius: var(--r-md);
  display: flex; justify-content: space-between; align-items: center;
}
.spec-item .k { font-size: 12px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.spec-item .v { font-weight: 700; color: var(--ink-900); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--cream-50);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .35s var(--ease-out);
  border: 1px solid rgba(74, 14, 14, 0.06);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-900));
  position: relative;
}
.blog-cover .cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold-500); color: var(--ink-900);
  padding: 4px 10px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.blog-meta { font-size: 12px; color: var(--ink-500); padding: var(--s-4) var(--s-4) 0; }
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 6px var(--s-4) var(--s-3);
  margin: 0;
  line-height: 1.3;
}
.blog-card p { padding: 0 var(--s-4) var(--s-4); font-size: 14px; color: var(--ink-500); margin: 0; }

/* Long-form article */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--s-8) var(--s-5);
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-800);
}
.article h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: var(--s-4); }
.article h2 { font-size: 1.9rem; margin-top: var(--s-7); margin-bottom: var(--s-4); }
.article h3 { font-size: 1.4rem; margin-top: var(--s-5); margin-bottom: var(--s-3); }
.article p { margin: 0 0 var(--s-4); }
.article ul, .article ol { margin: 0 0 var(--s-4); padding-left: var(--s-5); }
.article ul li, .article ol li { margin-bottom: 8px; }
.article blockquote {
  border-left: 3px solid var(--gold-500);
  padding-left: var(--s-4);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--maroon-800);
  margin: var(--s-5) 0;
}
.article .article-meta {
  display: flex; gap: var(--s-4); align-items: center;
  font-size: 14px; color: var(--ink-500);
  padding-bottom: var(--s-5);
  margin-bottom: var(--s-6);
  border-bottom: 1px solid rgba(74, 14, 14, 0.1);
}

/* Notification / toast */
.toast {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--ink-900);
  color: var(--cream-50);
  padding: 14px 22px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  font-size: 14px;
  font-weight: 500;
  display: flex; align-items: center; gap: var(--s-3);
  transform: translateY(100px);
  opacity: 0;
  transition: all .4s var(--ease-out);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 3px solid var(--maroon-500); }
.toast.error { border-left: 3px solid var(--danger); }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  z-index: 90;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all .3s ease;
}
.wa-float:hover { transform: scale(1.08); color: white; }
.wa-float::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.5;
  animation: ringpulse 2s infinite;
}
@keyframes ringpulse { 0%{transform:scale(1);opacity:0.6;} 100%{transform:scale(1.4);opacity:0;} }

/* Hide utility */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

/* Print friendly */
@media print {
  .nav, .footer, .wa-float, .btn { display: none !important; }
}

/* ============================================================
   PAGE HEADERS & UTILITY (added)
   ============================================================ */
.page-title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink-900); margin: var(--s-3) 0 var(--s-3); }
.page-title em { font-style: italic; color: var(--maroon-700); }
.page-sub { font-size: 1.1rem; color: var(--ink-500); max-width: 720px; line-height: 1.65; }
.section-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 400; color: var(--ink-900); margin-bottom: var(--s-5); }

/* RESULT BAR */
.result-bar { display:flex; justify-content:space-between; align-items:center; margin-top: var(--s-4); padding: var(--s-3) 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink-500); flex-wrap: wrap; gap: var(--s-2); }
.result-bar strong { color: var(--ink-900); font-size: 18px; font-family: var(--font-display); font-weight: 500; }
.result-actions { display:flex; gap: var(--s-2); }

/* TRUST BLOCKS */
.trust-block { padding: var(--s-5); background: white; border-radius: 14px; border: 1px solid var(--line); }
.trust-icon { font-size: 32px; margin-bottom: var(--s-3); }
.trust-block h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; margin-bottom: var(--s-2); color: var(--ink-900); }
.trust-block p { color: var(--ink-500); font-size: 15px; line-height: 1.6; }

/* PROPERTY DETAIL */
.detail-head { display:grid; grid-template-columns: 1fr auto; gap: var(--s-5); align-items: flex-end; margin-top: var(--s-4); }
.detail-price-box { text-align: right; padding: var(--s-3) var(--s-4); border-left: 3px solid var(--gold-500); background: var(--cream-50); border-radius: 8px; }
.detail-price { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 500; color: var(--maroon-800); line-height: 1.1; margin: 6px 0; }

.detail-gallery { display:grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 480px; border-radius: 18px; overflow: hidden; margin-bottom: var(--s-6); }
.gallery-main { grid-row: 1 / 3; grid-column: 1; overflow:hidden; border-radius: 14px; }
.gallery-small { overflow:hidden; border-radius: 14px; }
.gallery-main svg, .gallery-small svg { width:100%; height:100%; display:block; transition: transform .6s ease; }
.gallery-main:hover svg, .gallery-small:hover svg { transform: scale(1.05); }

.detail-layout { display:grid; grid-template-columns: 1fr 380px; gap: var(--s-6); align-items: flex-start; }
.detail-card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: var(--s-5); margin-bottom: var(--s-4); }
.detail-card h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--ink-900); margin-bottom: var(--s-4); }

.highlight-list, .nearby-list { list-style: none; padding: 0; margin: 0; display:grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.highlight-list li, .nearby-list li { display:flex; gap:10px; align-items: flex-start; font-size: 15px; color: var(--ink-700); line-height: 1.5; }
.highlight-list li span { background: var(--maroon-700); color: white; width: 22px; height: 22px; border-radius: 50%; display:inline-flex; align-items:center; justify-content:center; font-size: 12px; flex-shrink: 0; }

.contact-card { position: sticky; top: 100px; background: white; border: 1px solid var(--line); border-radius: 18px; padding: var(--s-5); box-shadow: 0 20px 60px -30px rgba(74,14,14,0.25); }
.contact-card-head { display:flex; gap: var(--s-3); align-items: center; padding-bottom: var(--s-4); margin-bottom: var(--s-4); border-bottom: 1px solid var(--line); }
.agent-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--maroon-800), var(--maroon-900)); color: var(--gold-400); font-family: var(--font-display); font-weight: 500; font-size: 22px; display:flex; align-items:center; justify-content:center; }
.contact-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; margin-bottom: var(--s-3); color: var(--ink-900); }

/* AUTH PAGES */
.auth-body { background: var(--cream-50); }
.auth-shell { min-height: 100vh; display:grid; grid-template-columns: 1fr 1fr; }
.auth-art { background: linear-gradient(160deg, var(--maroon-900) 0%, var(--maroon-800) 40%, #1A0303 100%); color: var(--cream-50); padding: var(--s-7); display:flex; flex-direction:column; justify-content: space-between; position: relative; overflow: hidden; }
.auth-art::before { content:''; position: absolute; inset:0; background-image: radial-gradient(circle at 80% 20%, rgba(212,175,55,0.15), transparent 40%), radial-gradient(circle at 20% 80%, rgba(212,175,55,0.1), transparent 40%); pointer-events: none; }
.auth-brand { color: var(--cream-50) !important; position: relative; z-index: 2; }
.auth-art-content { position: relative; z-index: 2; max-width: 480px; }
.auth-eyebrow { background: rgba(212,175,55,0.12); border-color: rgba(212,175,55,0.3); color: var(--gold-400); }
.auth-art-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.5rem, 4.5vw, 3.8rem); line-height: 1.05; letter-spacing: -0.02em; margin-top: var(--s-5); color: var(--cream-50); }
.auth-art-title em { font-style: italic; color: var(--gold-400); }
.auth-art-sub { font-size: 1.1rem; color: rgba(250,245,235,0.75); line-height: 1.6; margin-top: var(--s-4); }
.auth-bullets { list-style: none; padding: 0; margin-top: var(--s-6); display:flex; flex-direction:column; gap: var(--s-3); }
.auth-bullets li { display:flex; gap: 14px; align-items: flex-start; color: rgba(250,245,235,0.9); font-size: 15px; }
.auth-bullets li span { color: var(--gold-400); font-weight: bold; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(212,175,55,0.15); display:flex; align-items:center; justify-content:center; font-size: 12px; }
.auth-art-foot { position: relative; z-index: 2; color: rgba(250,245,235,0.5); }

.auth-form-wrap { padding: var(--s-7); display:flex; flex-direction: column; justify-content: center; max-width: 540px; margin: 0 auto; width: 100%; }
.auth-form-card { background: white; border-radius: 20px; padding: var(--s-6); box-shadow: 0 30px 80px -40px rgba(74,14,14,0.2); border: 1px solid var(--line); }
.auth-tabs { display:flex; gap: 4px; padding: 4px; background: var(--bg-soft); border-radius: 10px; margin-bottom: var(--s-5); }
.auth-tabs a { flex: 1; text-align: center; padding: 10px 16px; border-radius: 8px; text-decoration: none; color: var(--ink-500); font-weight: 600; font-size: 14px; transition: all .2s; }
.auth-tabs a.active { background: white; color: var(--maroon-800); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.auth-title { font-family: var(--font-display); font-weight: 400; font-size: 2rem; color: var(--ink-900); margin-bottom: 6px; letter-spacing: -0.01em; }
.auth-sub { color: var(--ink-500); margin-bottom: var(--s-5); font-size: 15px; }
.auth-divider { text-align: center; margin: var(--s-5) 0; position: relative; }
.auth-divider::before { content:''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--line); }
.auth-divider span { background: white; padding: 0 14px; font-size: 13px; color: var(--ink-500); position: relative; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.auth-social { display:grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }
.auth-social .btn { display:inline-flex; align-items:center; justify-content: center; gap: 8px; padding: 12px; font-size: 14px; }
.auth-foot { text-align: center; margin-top: var(--s-5); color: var(--ink-500); font-size: 14px; }
.auth-foot a { color: var(--maroon-700); font-weight: 600; text-decoration: none; }
.auth-demo-box { background: var(--cream-50); border: 1px dashed var(--gold-500); border-radius: 10px; padding: var(--s-3); margin-top: var(--s-4); font-size: 13px; color: var(--ink-700); text-align: center; }
.auth-demo-box strong { display:block; color: var(--maroon-800); margin-bottom: 4px; }
.auth-demo-box small { color: var(--ink-500); }
.auth-form-foot { display:flex; justify-content: space-between; margin-top: var(--s-5); font-size: 13px; }
.auth-form-foot a { color: var(--ink-500); text-decoration: none; }
.auth-form-foot a:hover { color: var(--maroon-700); }

.role-toggle { display:grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-2); }
.role-toggle label { display:block; cursor: pointer; }
.role-toggle input { display: none; }
.role-toggle span { display:block; text-align:center; padding: 14px 10px; border: 1.5px solid var(--line); border-radius: 12px; font-size: 14px; font-weight: 600; color: var(--ink-700); transition: all .2s; }
.role-toggle input:checked + span { border-color: var(--maroon-700); background: var(--cream-50); color: var(--maroon-800); }

/* DASHBOARD */
.dash-shell { background: var(--bg-soft); min-height: calc(100vh - 80px); padding: var(--s-5) 0; }
.dash-inner { display:grid; grid-template-columns: 280px 1fr; gap: var(--s-5); max-width: 1320px; margin: 0 auto; padding: 0 var(--s-4); }
.dash-side { background: white; border-radius: 18px; padding: var(--s-5); display:flex; flex-direction:column; gap: var(--s-4); position: sticky; top: 100px; align-self: flex-start; height: fit-content; box-shadow: 0 8px 30px -15px rgba(74,14,14,0.1); }
.dash-user { display:flex; gap: var(--s-3); align-items: flex-start; padding-bottom: var(--s-4); border-bottom: 1px solid var(--line); }
.dash-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--maroon-800), var(--maroon-900)); color: var(--gold-400); font-family: var(--font-display); font-weight: 500; font-size: 22px; display:flex; align-items:center; justify-content:center; flex-shrink: 0; }
.dash-user strong { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; color: var(--ink-900); display:block; }
.dash-nav { display:flex; flex-direction: column; gap: 4px; }
.dash-nav a { padding: 11px 14px; border-radius: 10px; text-decoration: none; color: var(--ink-700); font-size: 14px; font-weight: 500; transition: all .15s; display:flex; align-items:center; justify-content: space-between; gap: 8px; }
.dash-nav a:hover { background: var(--bg-soft); color: var(--maroon-700); }
.dash-nav a.active { background: var(--maroon-800); color: var(--cream-50); }
.dash-nav .badge { background: var(--cream-50); color: var(--maroon-800); padding: 2px 8px; border-radius: 8px; font-size: 11px; font-weight: 700; min-width: 22px; text-align: center; }
.dash-nav a.active .badge { background: var(--gold-500); color: var(--ink-900); }

.dash-main { min-width: 0; }
.dash-pane { display: none; }
.dash-pane.active { display: block; }
.dash-pane-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--ink-900); letter-spacing: -0.01em; margin-bottom: 6px; }
.dash-pane-sub { color: var(--ink-500); font-size: 1rem; }
.dash-card { background: white; border-radius: 18px; padding: var(--s-5); margin-top: var(--s-5); border: 1px solid var(--line); }
.dash-card h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; color: var(--ink-900); margin-bottom: var(--s-3); }
.dash-tab-link { color: var(--maroon-700); font-weight: 600; font-size: 14px; text-decoration: none; }

.stat-num { font-family: var(--font-display); font-weight: 400; font-size: 2.8rem; color: var(--maroon-800); line-height: 1; margin-bottom: 6px; }
.grid-4 { display:grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.stat-card { background: white; border-radius: 16px; padding: var(--s-4); border: 1px solid var(--line); transition: all .25s; }
.stat-card:hover { border-color: var(--maroon-700); transform: translateY(-2px); }

.empty-state { text-align:center; padding: var(--s-7) var(--s-5); background: white; border-radius: 18px; margin-top: var(--s-5); border: 1px dashed var(--line); }
.empty-icon { font-size: 56px; margin-bottom: var(--s-3); opacity: 0.6; }
.empty-state h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; color: var(--ink-900); margin-bottom: 8px; }
.empty-state p { color: var(--ink-500); margin-bottom: var(--s-4); }

.dash-listing-row { background: white; border: 1px solid var(--line); border-radius: 14px; padding: var(--s-4); margin-bottom: var(--s-3); display:flex; justify-content:space-between; gap: var(--s-3); align-items: center; }
.chip-success { background: rgba(22,163,74,0.12); color: #15803D; border-color: rgba(22,163,74,0.3); }
.chip-warn { background: rgba(212,175,55,0.15); color: #8a6c2d; border-color: rgba(212,175,55,0.4); }

/* POST PROPERTY */
.post-shell { display:grid; grid-template-columns: 1fr 340px; gap: var(--s-6); align-items: flex-start; }
.post-form-wrap { background: white; border-radius: 20px; padding: var(--s-6); border: 1px solid var(--line); }
.post-aside { position: sticky; top: 100px; }

.post-progress { display:flex; justify-content: space-between; margin-bottom: var(--s-6); position: relative; }
.post-progress::before { content:''; position: absolute; top: 18px; left: 0; right: 0; height: 2px; background: var(--line); z-index: 0; }
.post-step { display:flex; flex-direction: column; align-items: center; gap: 6px; position: relative; z-index: 1; }
.post-step span { width: 38px; height: 38px; border-radius: 50%; background: white; border: 2px solid var(--line); color: var(--ink-500); display:flex; align-items:center; justify-content:center; font-weight: 700; font-size: 14px; transition: all .25s; }
.post-step label { font-size: 12px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.post-step.active span { background: var(--maroon-800); border-color: var(--maroon-800); color: var(--gold-400); }
.post-step.active label { color: var(--maroon-800); }
.post-step.done span { background: var(--maroon-700); border-color: var(--maroon-700); color: white; }
.post-step.done span::before { content:'✓'; }
.post-step.done span { font-size: 0; }
.post-step.done span::before { font-size: 16px; }

.post-pane { display: none; }
.post-pane.active { display: block; animation: fadeIn .3s ease; }
.post-pane h2 { font-family: var(--font-display); font-weight: 400; font-size: 1.8rem; color: var(--ink-900); margin-bottom: 8px; }
.post-pane h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; color: var(--ink-900); margin-bottom: var(--s-3); }
.post-pane-sub { color: var(--ink-500); margin-bottom: var(--s-5); font-size: 15px; }

.opt-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--s-3); margin-bottom: var(--s-4); }
.opt-grid label { display:block; cursor: pointer; }
.opt-grid input { display: none; }
.opt-card { padding: var(--s-4); border: 1.5px solid var(--line); border-radius: 14px; text-align: center; transition: all .2s; }
.opt-card .opt-icon { font-size: 28px; margin-bottom: 8px; }
.opt-card strong { display:block; font-family: var(--font-display); font-weight: 500; color: var(--ink-900); margin-bottom: 2px; }
.opt-card span { display:block; font-size: 12px; color: var(--ink-500); }
.opt-grid input:checked + .opt-card { border-color: var(--maroon-700); background: var(--cream-50); }

.post-nav { display:flex; justify-content: space-between; margin-top: var(--s-6); padding-top: var(--s-4); border-top: 1px solid var(--line); }

.upload-zone { border: 2px dashed var(--line); border-radius: 14px; padding: var(--s-5); text-align: center; cursor: pointer; transition: all .2s; background: var(--bg-soft); }
.upload-zone:hover { border-color: var(--maroon-700); background: var(--cream-50); }
.upload-icon { font-size: 36px; display:block; margin-bottom: 8px; }
.upload-zone strong { display:block; color: var(--ink-900); margin-bottom: 4px; }
.upload-zone small { color: var(--ink-500); font-size: 13px; }

.post-benefits { list-style: none; padding: 0; margin: 0; display:flex; flex-direction: column; gap: var(--s-3); }
.post-benefits li { display:flex; gap: 12px; align-items: flex-start; }
.post-benefits li span { background: var(--maroon-700); color: white; width: 22px; height: 22px; border-radius: 50%; display:inline-flex; align-items:center; justify-content:center; font-size: 12px; flex-shrink: 0; }
.post-benefits strong { display:block; font-size: 14px; color: var(--ink-900); margin-bottom: 2px; }
.post-benefits small { display:block; color: var(--ink-500); font-size: 13px; line-height: 1.5; }

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

/* RESPONSIVE */
@media (max-width: 1024px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-art { display: none; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-gallery { height: 360px; }
  .dash-inner { grid-template-columns: 1fr; }
  .dash-side { position: relative; top: 0; }
  .post-shell { grid-template-columns: 1fr; }
  .post-aside { position: relative; top: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .detail-head { grid-template-columns: 1fr; }
  .detail-price-box { text-align: left; }
  .detail-gallery { grid-template-columns: 1fr 1fr; height: 280px; }
  .gallery-main { grid-row: 1; grid-column: 1 / 3; }
  .highlight-list, .nearby-list { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .role-toggle { grid-template-columns: 1fr; }
  .auth-form-wrap { padding: var(--s-4); }
  .auth-form-card { padding: var(--s-4); }
  .post-form-wrap { padding: var(--s-4); }
  .post-progress { overflow-x: auto; gap: var(--s-3); justify-content: flex-start; padding-bottom: 8px; }
  .post-step { min-width: 80px; }
  .auth-social { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG / ARTICLE STYLES
   ============================================================ */
.blog-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--s-5); margin-top: var(--s-5); }
.blog-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); text-decoration: none; color: inherit; transition: all .25s; display: block; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(74,14,14,0.2); }
.blog-cover { aspect-ratio: 16/9; overflow: hidden; }
.blog-cover svg { width: 100%; height: 100%; display: block; }
.blog-body { padding: var(--s-4); }
.blog-cat { display:inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: var(--gold-500); background: rgba(212,175,55,0.1); padding: 4px 10px; border-radius: 6px; margin-bottom: var(--s-3); }
.blog-body h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; color: var(--ink-900); line-height: 1.3; margin-bottom: var(--s-2); }
.blog-body p { color: var(--ink-500); font-size: 14px; line-height: 1.6; }
.blog-meta { display:flex; gap: 8px; margin-top: var(--s-3); padding-top: var(--s-3); border-top: 1px solid var(--line); font-size: 12px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* ARTICLE */
.article { padding: var(--s-5) 0 var(--s-7); }
.article .container { max-width: 800px; }
.blog-cat-tag { display:inline-block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: var(--maroon-700); background: var(--cream-50); border: 1px solid var(--gold-500); padding: 5px 12px; border-radius: 6px; margin: var(--s-3) 0; }
.article-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.15; letter-spacing: -0.02em; color: var(--ink-900); margin: var(--s-3) 0; }
.article-meta-row { display:flex; justify-content: space-between; align-items: center; padding: var(--s-4) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: var(--s-5) 0; flex-wrap: wrap; gap: var(--s-3); }
.article-author { display:flex; gap: 12px; align-items: center; }
.article-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--maroon-800), var(--maroon-900)); color: var(--gold-400); font-family: var(--font-display); font-weight: 500; font-size: 18px; display:flex; align-items:center; justify-content:center; }
.article-author strong { display:block; font-size: 14px; color: var(--ink-900); }
.article-author div div { font-size: 13px; color: var(--ink-500); }
.article-share a { color: var(--maroon-700); font-size: 14px; font-weight: 600; text-decoration: none; }
.article-cover { border-radius: 18px; overflow: hidden; aspect-ratio: 5/2; margin: var(--s-5) 0; }
.article-cover svg { width: 100%; height: 100%; display: block; }
.article-body { font-size: 17px; line-height: 1.85; color: var(--ink-700); }
.article-body p.lead { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; color: var(--ink-900); line-height: 1.55; margin: var(--s-4) 0 var(--s-5); padding: var(--s-4) var(--s-4); border-left: 3px solid var(--gold-500); background: var(--cream-50); border-radius: 0 12px 12px 0; }
.article-body h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 2.8vw, 1.9rem); color: var(--ink-900); margin: var(--s-6) 0 var(--s-3); letter-spacing: -0.01em; }
.article-body h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; color: var(--ink-900); margin: var(--s-5) 0 var(--s-2); }
.article-body p { margin-bottom: var(--s-3); }
.article-body ul, .article-body ol { padding-left: var(--s-5); margin-bottom: var(--s-4); }
.article-body ul li, .article-body ol li { margin-bottom: var(--s-2); line-height: 1.75; }
.article-body strong { color: var(--ink-900); font-weight: 600; }
.article-body em { font-style: italic; color: var(--maroon-800); }
.article-body code { background: var(--bg-soft); padding: 2px 6px; border-radius: 4px; font-size: 0.92em; color: var(--maroon-800); font-family: ui-monospace, monospace; }
.article-body table { width: 100%; }
.article-body table th { font-family: var(--font-display); font-weight: 500; color: var(--ink-900); }
.article-cta { background: linear-gradient(135deg, var(--maroon-900), var(--maroon-800)); color: var(--cream-50); padding: var(--s-5); border-radius: 18px; margin: var(--s-7) 0 var(--s-5); }
.article-cta h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.6rem; color: var(--cream-50); margin-bottom: 8px; }
.article-cta p { color: rgba(250,245,235,0.85); }
.article-tags { display:flex; gap: 8px; flex-wrap: wrap; padding: var(--s-4) 0; border-top: 1px solid var(--line); margin-top: var(--s-5); }
.article-tags span { font-size: 12px; padding: 5px 12px; background: var(--bg-soft); border-radius: 100px; color: var(--ink-700); font-weight: 600; }
.article-related { margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--line); }
.article-related h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--ink-900); margin-bottom: var(--s-4); }
.blog-card-mini { display:block; padding: var(--s-3); background: white; border: 1px solid var(--line); border-radius: 12px; text-decoration: none; color: inherit; transition: all .2s; }
.blog-card-mini:hover { border-color: var(--gold-500); }
.blog-card-mini h4 { font-family: var(--font-display); font-weight: 500; font-size: 1rem; line-height: 1.35; color: var(--ink-900); margin: 8px 0; }
.blog-card-mini small { color: var(--ink-500); font-size: 12px; }

/* LEGAL PAGES */
.legal { padding: var(--s-5) 0 var(--s-7); }
.legal .container { max-width: 800px; }
.legal h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--ink-900); margin: var(--s-6) 0 var(--s-3); }
.legal p, .legal li { color: var(--ink-700); line-height: 1.75; }
.legal ul { padding-left: var(--s-5); margin-bottom: var(--s-3); }

@media (max-width: 720px) {
  .article-body p.lead { font-size: 1.15rem; padding: var(--s-3); }
  .article-cover { aspect-ratio: 4/3; }
}

/* ============================================================
   CHAMPARAN BHUMI — NEW FLAGSHIP UI COMPONENTS (May 2026)
   ============================================================ */

/* --- GUARANTEE HERO --- */
.guarantee-strip {
  background: linear-gradient(90deg, #4A0E0E 0%, #6B1A1A 50%, #4A0E0E 100%);
  color: var(--cream-50);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.guarantee-strip::before {
  content: '✓ 7-DAY BUYBACK GUARANTEE  ·  सही दाम पर ज़मीन की खरीद-बिक्री  ·  ✓ FAIR PRICE PROMISE  ·  35 ब्लॉक · 3000+ गाँव  ·  ✓ 7-DAY BUYBACK GUARANTEE  ·  सही दाम पर ज़मीन की खरीद-बिक्री  ·';
  display: inline-block;
  animation: tickerScroll 35s linear infinite;
}
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- BHUMI MITRA HERO --- */
.bm-hero { position: relative; padding: var(--s-7) 0 var(--s-7); background: radial-gradient(ellipse at top right, rgba(212,175,55,0.08), transparent 50%), linear-gradient(180deg, #F5F0E8 0%, #FFFCF5 100%); overflow: hidden; }
.bm-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(74,14,14,0.05) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(212,175,55,0.06) 0%, transparent 40%); pointer-events: none; }
.bm-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--s-7); align-items: center; position: relative; z-index: 2; }
.bm-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(74,14,14,0.08); border: 1px solid rgba(74,14,14,0.15); border-radius: 100px; padding: 8px 16px; color: var(--maroon-800); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--s-4); }
.bm-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.25); animation: dotPulse 2s infinite; }
@keyframes dotPulse { 0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); } }
.bm-headline { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1.05; letter-spacing: -0.03em; color: var(--ink-900); margin-bottom: var(--s-4); }
.bm-headline em { font-style: italic; color: var(--maroon-800); }
.bm-headline .gold { color: var(--gold-500); font-style: italic; }
.bm-hi { font-family: 'Tiro Devanagari Hindi', serif; font-size: clamp(1.4rem, 3.2vw, 2.2rem); color: var(--maroon-800); font-weight: 400; line-height: 1.4; margin-bottom: var(--s-4); display: block; }
.bm-sub { font-size: 1.1rem; line-height: 1.65; color: var(--ink-700); max-width: 540px; margin-bottom: var(--s-5); }
.bm-cta-row { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.bm-trust-row { display: flex; gap: var(--s-4); margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid rgba(74,14,14,0.12); flex-wrap: wrap; }
.bm-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-700); }
.bm-trust-item strong { color: var(--ink-900); font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; display: block; }

/* --- GUARANTEE VISUAL CARD --- */
.bm-visual { position: relative; }
.bm-promise-card { background: linear-gradient(135deg, var(--maroon-900) 0%, var(--maroon-800) 100%); color: var(--cream-50); border-radius: 24px; padding: var(--s-6); position: relative; overflow: hidden; box-shadow: 0 30px 60px -25px rgba(74,14,14,0.4); }
.bm-promise-card::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'><circle cx='340' cy='80' r='90' fill='rgba(212,175,55,0.15)'/><circle cx='340' cy='80' r='55' fill='rgba(212,175,55,0.12)'/><circle cx='340' cy='80' r='30' fill='rgba(212,175,55,0.18)'/></svg>") no-repeat center/cover; pointer-events: none; opacity: 0.7; }
.bm-promise-card > * { position: relative; z-index: 1; }
.bm-promise-card .stamp { display: inline-flex; align-items: center; gap: 10px; background: var(--gold-500); color: var(--maroon-900); padding: 8px 16px; border-radius: 100px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--s-4); }
.bm-promise-card h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 3.5vw, 2.4rem); line-height: 1.2; color: var(--cream-50); margin-bottom: var(--s-3); }
.bm-promise-card .promise-list { list-style: none; padding: 0; margin: var(--s-4) 0; }
.bm-promise-card .promise-list li { padding: 12px 0; border-bottom: 1px solid rgba(250,245,235,0.15); display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.4; color: rgba(250,245,235,0.9); }
.bm-promise-card .promise-list li:last-child { border: none; }
.bm-promise-card .promise-list .check { width: 24px; height: 24px; border-radius: 50%; background: var(--gold-500); color: var(--maroon-900); display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; font-size: 14px; }
.bm-promise-card .signature { margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid rgba(250,245,235,0.2); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(250,245,235,0.7); }

/* --- VALUATION CALCULATOR --- */
.valuation-box { background: white; border-radius: 20px; padding: var(--s-6); box-shadow: 0 20px 50px -20px rgba(74,14,14,0.15); border: 1px solid var(--line); }
.valuation-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); margin-bottom: var(--s-3); }
.valuation-result { background: linear-gradient(135deg, var(--maroon-900), var(--maroon-800)); color: var(--cream-50); border-radius: 16px; padding: var(--s-5); margin-top: var(--s-4); text-align: center; }
.valuation-result .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-400); font-weight: 700; margin-bottom: 8px; }
.valuation-result .number { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 500; color: var(--cream-50); line-height: 1; margin-bottom: 8px; }
.valuation-result .range { font-size: 14px; color: rgba(250,245,235,0.7); }
.valuation-result .cta { margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid rgba(250,245,235,0.15); }

/* --- 7-DAY TIMELINE --- */
.timeline-7 { position: relative; padding: var(--s-5) 0; }
.timeline-7::before { content: ''; position: absolute; left: 30px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--gold-500), var(--maroon-700)); }
.timeline-day { position: relative; padding-left: 80px; margin-bottom: var(--s-5); }
.timeline-day::before { content: attr(data-day); position: absolute; left: 0; top: 0; width: 60px; height: 60px; background: linear-gradient(135deg, var(--maroon-800), var(--maroon-900)); color: var(--gold-400); font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: 0 8px 20px -8px rgba(74,14,14,0.4); border: 3px solid var(--cream-50); z-index: 2; }
.timeline-day h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; color: var(--ink-900); margin-bottom: 6px; }
.timeline-day p { color: var(--ink-700); line-height: 1.6; }

/* --- DISTRICT TABS --- */
.district-tabs { display: flex; gap: 4px; background: var(--bg-soft); padding: 4px; border-radius: 100px; max-width: max-content; margin: 0 auto var(--s-5); }
.district-tabs button { padding: 12px 24px; border-radius: 100px; background: transparent; border: none; font-weight: 700; font-size: 14px; color: var(--ink-700); cursor: pointer; transition: all .2s; font-family: var(--font-body); }
.district-tabs button.active { background: var(--maroon-800); color: var(--cream-50); }

/* --- BLOCK GRID --- */
.block-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--s-3); }
.block-card { background: white; border: 1px solid var(--line); border-radius: 14px; padding: var(--s-4); transition: all .2s; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.block-card:hover { border-color: var(--gold-500); transform: translateY(-2px); box-shadow: 0 12px 25px -15px rgba(74,14,14,0.2); }
.block-card .badge-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: var(--s-2); }
.block-card .block-name { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; color: var(--ink-900); margin-bottom: 4px; }
.block-card .block-name-hi { font-size: 0.85rem; color: var(--ink-500); font-family: 'Tiro Devanagari Hindi', serif; margin-bottom: var(--s-2); }
.block-card .block-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 12px; color: var(--ink-500); margin-top: var(--s-2); padding-top: var(--s-2); border-top: 1px solid var(--line); }
.block-card .block-meta strong { color: var(--ink-900); display: block; font-size: 13px; font-weight: 600; }
.block-card .block-highlight { font-size: 13px; color: var(--ink-700); line-height: 1.4; margin-top: 8px; font-style: italic; }
.block-card .growth-pill { display: inline-block; background: rgba(34,197,94,0.1); color: #16a34a; font-weight: 700; font-size: 11px; padding: 3px 8px; border-radius: 4px; }

/* type badges */
.t-HQ { background: rgba(212,175,55,0.15); color: var(--gold-500); }
.t-urban { background: rgba(74,14,14,0.1); color: var(--maroon-800); }
.t-semi-urban { background: rgba(30,91,138,0.1); color: #1E5B8A; }
.t-rural { background: rgba(120,113,108,0.1); color: #57534e; }
.t-border { background: rgba(220,38,38,0.1); color: #dc2626; }
.t-heritage { background: rgba(217,119,6,0.1); color: #d97706; }
.type-pill { display: inline-block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; padding: 3px 8px; border-radius: 4px; }

/* --- PIN CODE LOOKUP --- */
.pin-lookup { background: white; padding: var(--s-5); border-radius: 20px; box-shadow: 0 15px 40px -20px rgba(74,14,14,0.15); border: 1px solid var(--line); }
.pin-search-bar { display: flex; gap: 8px; }
.pin-search-bar input { flex: 1; font-family: ui-monospace, monospace; font-size: 1.2rem; letter-spacing: 0.1em; text-align: center; }
.pin-results { margin-top: var(--s-4); }
.pin-row { display: grid; grid-template-columns: 100px 1fr 140px; gap: var(--s-3); padding: var(--s-3); border-radius: 10px; border: 1px solid var(--line); margin-bottom: 8px; }
.pin-row strong { font-family: ui-monospace, monospace; font-size: 1.1rem; color: var(--maroon-800); }

/* --- TRUST BADGES STRIP --- */
.trust-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--s-3); padding: var(--s-5); background: var(--bg-soft); border-radius: 18px; }
.trust-item-strip { text-align: center; padding: var(--s-3); }
.trust-item-strip .ico { font-size: 28px; margin-bottom: 8px; }
.trust-item-strip strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1rem; color: var(--ink-900); margin-bottom: 4px; }
.trust-item-strip small { color: var(--ink-500); font-size: 12px; line-height: 1.4; display: block; }

/* --- URGENCY BANNER --- */
.urgency-banner { background: linear-gradient(135deg, #9b1c1c, #7c1010); color: white; padding: var(--s-5); border-radius: 18px; display: flex; align-items: center; gap: var(--s-4); margin: var(--s-5) 0; }
.urgency-banner .ico { font-size: 48px; flex-shrink: 0; }
.urgency-banner h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; color: white; margin-bottom: 4px; }
.urgency-banner p { color: rgba(255,255,255,0.85); line-height: 1.5; margin: 0; }
.urgency-banner .cta-btn { background: white; color: #9b1c1c; padding: 12px 24px; border-radius: 10px; font-weight: 700; text-decoration: none; flex-shrink: 0; }

/* --- COMPARISON TABLE --- */
.compare-table { width: 100%; border-collapse: collapse; margin: var(--s-5) 0; background: white; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 30px -20px rgba(74,14,14,0.15); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; }
.compare-table thead { background: var(--bg-soft); }
.compare-table th { font-family: var(--font-display); font-weight: 500; font-size: 1rem; color: var(--ink-900); }
.compare-table tbody tr { border-bottom: 1px solid var(--line); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table .us { background: rgba(74,14,14,0.04); }
.compare-table .x { color: #dc2626; }
.compare-table .ok { color: #16a34a; font-weight: 700; }

/* --- FOUNDER NOTE BLOCK --- */
.founder-note { background: linear-gradient(135deg, #F5F0E8, #ffffff); border: 1px solid var(--line); border-radius: 20px; padding: var(--s-6); position: relative; }
.founder-note::before { content: '"'; position: absolute; top: 20px; left: 30px; font-family: var(--font-display); font-size: 6rem; color: var(--gold-500); line-height: 1; opacity: 0.4; }
.founder-note p { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; line-height: 1.55; color: var(--ink-900); position: relative; z-index: 1; }
.founder-note .sig { display: flex; gap: 14px; align-items: center; margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid var(--line); }
.founder-note .sig img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }

/* --- SERVICE CARDS GRID --- */
.service-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s-3); }
.service-card { background: white; border: 1px solid var(--line); border-radius: 16px; padding: var(--s-4); transition: all .2s; }
.service-card:hover { border-color: var(--gold-500); transform: translateY(-3px); }
.service-card .s-ico { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, var(--maroon-900), var(--maroon-800)); color: var(--gold-400); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: var(--s-3); }
.service-card h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; color: var(--ink-900); margin-bottom: 8px; }
.service-card p { color: var(--ink-700); font-size: 14px; line-height: 1.6; }

/* --- STAT MEGA --- */
.stat-mega { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--s-4); padding: var(--s-6); background: linear-gradient(135deg, var(--maroon-900), var(--maroon-800)); color: var(--cream-50); border-radius: 24px; }
.stat-mega-item { text-align: center; padding: var(--s-3); }
.stat-mega-item .num { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--gold-400); line-height: 1; margin-bottom: 8px; }
.stat-mega-item .lbl { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(250,245,235,0.8); font-weight: 600; }

/* Mobile fixes */
@media (max-width: 900px) {
  .bm-hero-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .bm-promise-card { padding: var(--s-4); }
  .valuation-input-row { grid-template-columns: 1fr; }
  .timeline-day { padding-left: 70px; }
  .timeline-day::before { width: 48px; height: 48px; font-size: 1.2rem; }
  .timeline-7::before { left: 23px; }
  .pin-row { grid-template-columns: 80px 1fr; }
  .pin-row > :nth-child(3) { grid-column: 1 / 3; }
  .urgency-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .bm-trust-row { gap: var(--s-3); }
  .bm-trust-item strong { font-size: 1.2rem; }
}

/* ============================================================
   FINAL POLISH — May 2026
   Mobile responsive trust grid + village hub styling
   ============================================================ */
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: 1fr !important; gap: var(--s-3) !important; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
  .bm-headline { font-size: clamp(2rem, 8vw, 2.8rem) !important; }
  .stat-mega { padding: var(--s-4); }
  .stat-mega-item .num { font-size: 2.2rem; }
  .timeline-day { padding-left: 60px; }
  .timeline-day::before { width: 44px; height: 44px; font-size: 1rem; }
  .timeline-7::before { left: 21px; }
  .pin-row { font-size: 13px; padding: var(--s-2); }
  .village-cloud { padding: var(--s-2); gap: 4px; }
  .village-chip { font-size: 12px; padding: 5px 10px; }
}

/* High-contrast mode support */
@media (prefers-contrast: more) {
  .block-card { border-width: 2px; }
  .btn { border-width: 2px !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .guarantee-strip::before { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Print stylesheet */
@media print {
  .nav, .footer, .wa-float, .guarantee-strip, .cta { display: none !important; }
  body { font-size: 11pt; color: black; }
  a { color: black; text-decoration: underline; }
}

/* Skip-to-content for accessibility */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--maroon-800); color: white; padding: 10px 16px; z-index: 100; }
.skip-link:focus { top: 0; }

/* ============================================================
   REAL PHOTO INTEGRATION (Fix 1)
   ============================================================ */
.prop-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.prop-real-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.prop-card:hover .prop-real-img { transform: scale(1.04); }
.prop-gradient-fallback { width: 100%; height: 100%; }

/* Photo upload-replace hint comment for real estate dev */
/* To use real photos: drop JPGs into images/properties/CB-2026-NNN-1.jpg etc. */
/* The system auto-uses real photos if present, falls back to SVG */

/* Photo Gallery on Property Detail */
.gallery-main, .gallery-small { position: relative; overflow: hidden; cursor: pointer; }
.gallery-main img, .gallery-small img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-main:hover img, .gallery-small:hover img { transform: scale(1.06); }
.gallery-more { position: absolute; inset: 0; background: rgba(0,0,0,0.5); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; opacity: 0; transition: opacity .2s; }
.gallery-small:last-child:hover .gallery-more { opacity: 1; }

/* ============================================================
   LIVE ACTIVITY TICKER (Fix 3) — social proof
   ============================================================ */
.live-activity {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 90;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 35px -10px rgba(74,14,14,0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 320px;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.live-activity.visible {
  transform: translateY(0);
  opacity: 1;
}
.live-activity .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: livePulse 2s infinite;
}
@keyframes livePulse { 50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); } }
.live-activity .activity-text {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-700);
}
.live-activity .activity-text strong {
  color: var(--ink-900);
}
.live-activity .activity-time {
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 2px;
}
.live-activity .close-activity {
  background: none;
  border: none;
  color: var(--ink-500);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0 4px;
  margin-left: auto;
}
@media (max-width: 600px) {
  .live-activity { bottom: 80px; left: 12px; max-width: calc(100vw - 100px); padding: 10px 12px; }
  .live-activity .activity-text { font-size: 12px; }
}

/* ============ MISSING CLASSES (Audit Fix) ============ */

/* Testimonials */
.testimonial-card, .testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.testimonial-card blockquote, .testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0;
  flex: 1;
}
.stars {
  color: var(--gold-500);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.cite, .testimonial-attr {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: auto;
}
.cite strong, .testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
}
.cite small, .testimonial-role {
  font-size: 12px;
  color: var(--ink-500);
  display: block;
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-600));
  color: var(--gold-400);
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}

/* Form Elements */
.input, input.input, textarea.input, select.input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink-800);
  background: var(--white);
  border: 1.5px solid var(--line-dark);
  border-radius: var(--r-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
}
.input:focus {
  border-color: var(--maroon-600);
  box-shadow: 0 0 0 3px rgba(74, 14, 14, 0.1);
}
textarea.input { resize: vertical; min-height: 100px; }
select.input { cursor: pointer; }

/* Filter Controls */
.filter-row {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-5);
  align-items: flex-end;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
  min-width: 160px;
}
.filter-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-500);
}
@media (max-width: 600px) {
  .filter-row { flex-direction: column; }
  .filter-group { min-width: 100%; }
}

/* ============ GLOBAL POLISH (Audit Fix) ============ */

/* Text selection — brand colors */
::selection { background: var(--gold-500); color: var(--maroon-900); }
::-moz-selection { background: var(--gold-500); color: var(--maroon-900); }

/* Focus-visible (keyboard) outlines for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
.btn:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--cream-100) 0%, var(--bg-soft) 50%, var(--cream-100) 100%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
  border-radius: var(--r-sm);
  color: transparent !important;
  pointer-events: none;
  user-select: none;
}
@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(74, 14, 14, 0.15);
  border-top-color: var(--maroon-800);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.spinner.light {
  border-color: rgba(255,255,255,0.25);
  border-top-color: var(--cream-50);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Empty state (generic — distinct from .empty-state above) */
.empty {
  text-align: center;
  padding: var(--s-8) var(--s-5);
  color: var(--ink-500);
}
.empty .empty-ico {
  font-size: 48px;
  opacity: 0.5;
  margin-bottom: var(--s-3);
}
.empty h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-size: 1.25rem;
  margin-bottom: var(--s-2);
}
.empty p { color: var(--ink-500); max-width: 420px; margin: 0 auto var(--s-4); }

/* Toast variants — additional */
.toast.info { border-left: 3px solid var(--maroon-700); }
.toast.warning { border-left: 3px solid var(--warning); }

/* Container clamp safety for tiny screens */
@media (max-width: 360px) {
  .container { padding: 0 var(--s-3); }
}

/* ============ BILINGUAL TOGGLE ============ */
.lang-hi { display: none; }
html[lang="hi"] .lang-hi { display: inline; }
html[lang="hi"] .lang-en { display: none; }
/* Block-level bilingual containers */
html[lang="hi"] .lang-hi-block { display: block; }
.lang-hi-block { display: none; }
html[lang="hi"] .lang-en-block { display: none; }
/* Hindi font when active */
html[lang="hi"] body { font-family: var(--font-hindi), 'Mukta', sans-serif; }
