/* NCR Monarch - Design matched to ncrmonarch.in */
:root {
  --radius: 0.625rem;
  --background: #fbfaf6;
  --foreground: #071123;
  --card: #ffffff;
  --primary: #8c5f00;
  --primary-foreground: #ffffff;
  --secondary: #f1eee7;
  --muted: #eeebe4;
  --muted-foreground: #4f5661;
  --accent: #8c5f00;
  --accent-foreground: #ffffff;
  --border: #d5d1c6;
  --gov-strip: #563a00;
  --gov-green: #135d1d;
  --gov-gold: #ddb85a;
  --gov-paper: #fdfaf4;
  --gov-line: #bcb7a9;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #90a1b9;
  --slate-500: #62748e;
  --slate-600: #45556c;
  --slate-700: #314158;
  --slate-900: #0f172b;
  --slate-950: #020618;
  --yellow-400: #facc15;
  --amber-600: #d97706;
  --font-serif: "Source Serif 4", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --max-w: 80rem;
  --header-h: 96px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); letter-spacing: -0.01em; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
}
.gov-strip {
  background: var(--gov-strip);
  color: var(--primary-foreground);
  font-size: .75rem;
  position: relative;
  overflow: hidden;
}
.gov-strip::before {
  content: '';
  position: absolute; inset: 0;
  opacity: .2;
  background: radial-gradient(circle at 20% 50%, rgba(140, 95, 0,.4), transparent 40%),
              radial-gradient(circle at 80% 50%, rgba(140, 95, 0,.3), transparent 40%);
}
.gov-strip-inner {
  position: relative;
  display: flex; flex-wrap: wrap; gap: .25rem 1rem;
  align-items: center; justify-content: space-between;
  padding: .375rem 1rem; max-width: var(--max-w); margin: 0 auto;
}
.gov-strip-inner p { margin: 0; line-height: 1.4; }
.gov-strip-inner .gold { color: var(--gov-gold); font-weight: 600; }
.gov-strip-meta { display: flex; flex-wrap: wrap; gap: 1rem; opacity: .9; }
.gov-strip-meta a:hover { text-decoration: underline; }

.header-main {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .5rem 1rem; max-width: var(--max-w); margin: 0 auto;
  background: rgb(251 250 246);
  backdrop-filter: blur(8px);
}
.logo { display: flex; align-items: center; line-height: 0; }
.logo img { height: 48px; width: auto; }
@media (min-width: 640px) { .logo img { height: 56px; } }

.nav { display: none; gap: 1.75rem; align-items: center; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a {
  font-size: .875rem; font-weight: 500; color: var(--slate-700);
  position: relative; transition: color .2s;
}
.nav a:hover { color: var(--primary); }
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary); transition: width .2s;
}
.nav a:hover::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; transition: all .2s; border-radius: .5rem;
}
.btn-primary {
  background: #000000; color: var(--primary-foreground);
  padding: .625rem 1.25rem; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .05em;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.btn-primary:hover { opacity: .9; }
.btn-primary:active { transform: scale(.95); }
.btn-outline {
  background: #fff; color: var(--slate-700);
  border: 1px solid var(--slate-200);
  padding: .75rem 1.5rem; font-size: .875rem; font-weight: 600;
  border-radius: 9999px;
}
.btn-outline:hover { border-color: rgba(140, 95, 0,.3); color: var(--primary); }
.btn-lg { padding: .875rem 2rem; font-size: .875rem; border-radius: 9999px; }
.btn-round { border-radius: 9999px; }
.btn-header { display: none; }
@media (min-width: 768px) { .btn-header { display: inline-flex; } }

.mobile-toggle {
  display: flex; flex-direction: column; gap: 5px; padding: 4px;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle span {
  width: 22px; height: 2px; background: var(--primary); transition: .2s;
}
.nav-mobile {
  display: none; position: fixed; top: var(--header-h); right: 0;
  width: 280px; height: calc(100vh - var(--header-h));
  background: #fff; border-left: 1px solid var(--border);
  padding: 1.5rem; flex-direction: column; gap: 0;
  box-shadow: -4px 0 24px rgba(0,0,0,.1); z-index: 49;
}
.nav-mobile.active { display: flex; }
.nav-mobile a {
  padding: 1rem 0; border-bottom: 1px solid var(--slate-100);
  font-weight: 500; color: var(--slate-700);
}

/* ===== HERO ===== */
main { padding-top: var(--header-h); }

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 680px;
  margin-top: -1px;
}
@media (min-width: 640px) { .hero { min-height: 760px; } }
@media (min-width: 1024px) { .hero { min-height: 720px; } }

.hero-bg {
  position: absolute; inset: 0; background: var(--gov-strip); z-index: 0;
}
.hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay-1 {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.65) 50%, rgba(0,0,0,.4));
}
@media (min-width: 1024px) {
  .hero-overlay-1 {
    background: linear-gradient(to right, rgba(0,0,0,.8), rgba(0,0,0,.45) 50%, rgba(0,0,0,.2));
  }
}
.hero-overlay-2 {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, var(--gov-strip), transparent);
}
.gov-grid {
  position: absolute; inset: 0; z-index: 1; opacity: .2;
  background-image: linear-gradient(90deg, rgba(140, 95, 0,.06) 1px, transparent 1px),
                    linear-gradient(rgba(140, 95, 0,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; gap: 2.5rem; align-items: center;
  padding: 4rem 1rem;
  max-width: var(--max-w); margin: 0 auto;
  min-height: inherit;
}
@media (min-width: 1024px) {
  .hero-content { grid-template-columns: 7fr 5fr; padding: 5rem 1.5rem; }
}

.hero-left { color: #fff; }
.badge-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, #a87800 0%, #8c5f00 40%, #ddb85a 100%);
  color: var(--gov-strip);
  padding: .375rem .75rem; font-size: 10px;
  text-transform: uppercase; letter-spacing: .18em; font-weight: 700;
  border-radius: 2px; box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
@media (min-width: 640px) { .badge-gold { font-size: 11px; } }

.hero h1 {
  margin-top: 1.25rem;
  font-size: clamp(1.875rem, 5vw, 4.5rem);
  font-weight: 700; color: #fff; line-height: 1.02;
  text-shadow: 0 2px 30px rgba(0,0,0,.55), 0 1px 2px rgba(0,0,0,.4);
}
.hero-sub {
  margin-top: 1.25rem; font-size: clamp(.875rem, 2vw, 1.5rem);
  color: rgba(255,255,255,.95); line-height: 1.6;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero-sub strong { color: #ddb85a; display: block; font-weight: 600; }
.hero-meta { color: rgba(255,255,255,.8); font-size: .9rem; margin-top: .5rem; }

.swamih-box {
  margin-top: 1.5rem; padding: 1rem 1.25rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); backdrop-filter: blur(4px);
}
.swamih-box strong { display: block; font-size: .9rem; margin-bottom: .25rem; }
.swamih-box span { font-size: .8rem; color: rgba(255,255,255,.7); }

.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-cta .btn-primary { border-radius: 9999px; padding: .875rem 2rem; font-size: .875rem; }
.hero-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.1); }
.hero-cta .btn-outline:hover { background: rgba(255,255,255,.2); color: #fff; }

/* Hero Lead Form */
.hero-lead-card {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
@media (min-width: 640px) { .hero-lead-card { padding: 2rem; border-radius: 1.75rem; } }
.hero-lead-card h3 {
  font-size: 1.25rem; font-weight: 700; color: var(--primary);
  margin-bottom: .375rem;
}
.hero-lead-sub {
  font-size: .8rem; color: var(--slate-500);
  margin-bottom: 1.25rem; line-height: 1.5;
}
.hero-lead-form .form-group { margin-bottom: .875rem; }
.hero-lead-form label {
  display: block; font-size: .75rem; font-weight: 600;
  color: var(--primary); margin-bottom: .25rem;
}
.hero-lead-form input,
.hero-lead-form select {
  width: 100%; padding: .625rem .875rem;
  border: 1px solid var(--slate-200); border-radius: .5rem;
  font-size: .875rem; font-family: var(--font-sans);
  transition: border-color .2s;
}
.hero-lead-form input:focus,
.hero-lead-form select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(140, 95, 0,.1);
}
.hero-lead-form .checkbox-label {
  display: flex; gap: .5rem; align-items: flex-start;
  font-size: .7rem; color: var(--slate-500); cursor: pointer;
  font-weight: 400;
}
.hero-lead-form .checkbox-label input { width: auto; margin-top: 2px; }
.hero-lead-btn {
  width: 100%; padding: .875rem; margin-top: .25rem;
  font-size: .8rem; border-radius: .5rem;
}
.hero-lead-card .form-success { padding: 1.5rem 0; text-align: center; }
.hero-lead-card .form-success h4 {
  font-size: 1.125rem; color: var(--primary); margin: .75rem 0 .5rem;
}
.hero-lead-card .form-success p {
  font-size: .85rem; color: var(--slate-500);
}

/* Project Details Card (legacy) */
.project-card {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
@media (min-width: 640px) { .project-card { padding: 2rem; border-radius: 1.75rem; } }
.project-card h3 {
  font-size: 1.125rem; font-weight: 700; color: var(--primary);
  margin-bottom: 1rem; padding-bottom: .75rem;
  border-bottom: 2px solid var(--gov-gold);
  display: inline-block;
}
.project-card table { width: 100%; border-collapse: collapse; }
.project-card td {
  padding: .625rem 0; font-size: .875rem;
  border-bottom: 1px solid var(--slate-100);
}
.project-card td:first-child { color: var(--slate-500); font-weight: 500; width: 45%; }
.project-card td:last-child { color: var(--slate-900); font-weight: 600; }
.project-card .rera-note {
  margin-top: 1rem; font-size: .7rem; color: var(--slate-400);
  font-style: italic;
}

/* ===== SECTIONS ===== */
section { padding: 4rem 0; }
@media (min-width: 640px) { section { padding: 5rem 0; } }
@media (min-width: 768px) { section { padding: 6rem 0; } }

.section-white { background: #fff; }
.section-cream { background: var(--background); }
.section-dark { background: #000000; color: #fff; }

.section-label {
  display: inline-block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--gov-gold); margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700; color: var(--primary); line-height: 1.2;
}
.section-dark .section-title { color: #fff; }
.section-desc {
  margin-top: .75rem; color: var(--slate-600);
  max-width: 42rem; font-size: 1rem; line-height: 1.7;
}
.section-dark .section-desc { color: rgba(255,255,255,.7); }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: .75rem auto 0; }

/* ===== COUNTDOWN ===== */
.countdown-wrap { text-align: center; padding: 3rem 0 1rem; }
.notice-badge {
  display: inline-block; border: 1px solid rgba(140, 95, 0,.2);
  background: #fff; padding: .5rem 1.25rem;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 4px; color: var(--primary);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.countdown-wrap h2 {
  margin-top: .5rem; font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; color: var(--primary);
}
.countdown-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .5rem; max-width: 32rem; margin: 1.5rem auto 0;
}
@media (min-width: 768px) { .countdown-grid { gap: 1rem; } }
.countdown-item {
  background: var(--primary); color: var(--primary-foreground);
  padding: 1.25rem .5rem; border-radius: .75rem;
  border: 1px solid rgba(140, 95, 0,.3);
  box-shadow: 0 4px 12px rgba(140, 95, 0,.2);
}
.countdown-item .num {
  font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700; line-height: 1;
}
.countdown-item .label {
  margin-top: .25rem; font-size: 10px; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gov-gold);
}
@media (min-width: 768px) { .countdown-item .label { font-size: .75rem; } }

/* ===== BOOKING ===== */
.booking-header { text-align: center; margin-bottom: 2.5rem; }
.possession-pill {
  display: inline-block; background: rgba(140, 95, 0, .1);
  color: #8c5f00; font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .375rem 1rem; border-radius: 9999px; margin-bottom: .75rem;
}
.booking-header h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; color: var(--slate-950);
}
.booking-header p { margin-top: .5rem; color: var(--slate-600); font-size: .9rem; }

.booking-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .booking-grid { grid-template-columns: 2fr 1fr; } }

.data-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border-radius: 1rem;
  border: 1px solid var(--slate-200); overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.data-table thead { background: var(--slate-50); }
.data-table th {
  padding: 1rem; text-align: left; font-size: .75rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--slate-500); border-bottom: 1px solid var(--slate-200);
}
.data-table td {
  padding: 1rem; border-bottom: 1px solid var(--slate-100);
  font-size: .9rem;
}
.data-table tr:hover { background: rgba(248,250,252,.7); }
.data-table .amount { font-weight: 700; color: var(--primary); }
.data-table .btn-primary { font-size: .7rem; padding: .5rem 1rem; }

.refund-note {
  margin-top: 1rem; font-size: .85rem; color: var(--slate-600);
  display: flex; align-items: flex-start; gap: .5rem;
}
.refund-note strong { color: var(--slate-900); }

.timeline-card {
  background: var(--gov-paper); border: 1px solid var(--border);
  border-radius: 1rem; padding: 1.5rem;
}
.timeline-card h4 {
  font-size: 1rem; font-weight: 700; color: var(--primary);
  margin-bottom: 1rem;
}
.timeline-item {
  padding: .75rem 0; border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-item span { display: block; font-size: .75rem; color: var(--slate-500); }
.timeline-item strong { font-size: .95rem; color: var(--slate-900); }

/* ===== GOV SECTION ===== */
.gov-cards {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2.5rem;
}
.gov-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(140, 95, 0,.2);
  border-radius: 1rem; padding: 2rem;
  transition: transform .2s;
}
.gov-card:hover { transform: translateY(-4px); }
.gov-card h3 {
  font-size: 1.25rem; color: var(--gov-gold); margin-bottom: .75rem;
}
.gov-card p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; }

.marquee-wrap {
  margin-top: 2.5rem; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: .75rem 0;
}
.marquee {
  display: flex; gap: 2rem; animation: marquee 35s linear infinite;
  white-space: nowrap;
}
.marquee span {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gov-gold);
  padding: .375rem 1rem;
  border: 1px solid rgba(140, 95, 0,.3);
  border-radius: 9999px; flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 2.5rem;
}
.process-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: 1rem; padding: 1.5rem; text-align: center;
  transition: all .2s;
}
.process-card:hover {
  border-color: rgba(140, 95, 0,.2); box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transform: translateY(-4px);
}
.process-num {
  width: 2.5rem; height: 2.5rem; margin: 0 auto .75rem;
  background: var(--primary); color: var(--primary-foreground);
  border-radius: .75rem; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1rem; font-weight: 700;
}
.process-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.process-card p { font-size: .8rem; color: var(--slate-600); }

/* ===== OVERVIEW ===== */
.overview-grid {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .overview-grid { grid-template-columns: 1fr 1fr; } }
.feature-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 3rem;
}
.feature-item {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: 1rem; padding: 1.5rem;
  transition: all .2s;
}
.feature-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,.06); transform: translateY(-2px); }
.feature-item h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.feature-item p { font-size: .85rem; color: var(--slate-600); }

.overview-img {
  border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  position: relative;
}
.overview-img img { width: 100%; height: 400px; object-fit: cover; }
.img-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--gov-gold); color: var(--gov-strip);
  padding: .375rem 1rem; border-radius: 9999px;
  font-size: .75rem; font-weight: 700;
}

/* ===== MASTER PLAN ===== */
.plan-tags {
  display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0 2rem;
}
.plan-tags span {
  background: #fff; border: 1px solid var(--slate-200);
  padding: .375rem .875rem; border-radius: 9999px;
  font-size: .75rem; font-weight: 500; color: var(--slate-700);
}
.plan-img {
  border-radius: 1.5rem; overflow: hidden; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.1); cursor: zoom-in;
}
.plan-img img { width: 100%; height: 450px; object-fit: cover; }
.plan-overlay {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(4,13,30,.9));
  padding: 2rem; color: #fff;
}
.rtm-tag {
  display: inline-block; background: var(--gov-gold); color: var(--gov-strip);
  padding: .25rem .75rem; border-radius: 4px;
  font-size: .7rem; font-weight: 700; margin-bottom: .5rem;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2.5rem;
}
.price-card {
  background: #fff; border: 2px solid var(--slate-200);
  border-radius: 1.25rem; padding: 2rem; text-align: center;
  transition: all .2s; position: relative;
}
.price-card:hover { border-color: rgba(140, 95, 0,.2); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.price-card.featured {
  border-color: var(--primary); background: var(--primary); color: #fff;
}
.price-card.featured h3, .price-card.featured .area { color: #fff; }
.price-card.featured .price { color: var(--gov-gold); }
.price-card.featured li { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.1); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gov-gold); color: var(--gov-strip);
  padding: .25rem 1rem; border-radius: 9999px;
  font-size: .7rem; font-weight: 700;
}
.price-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.price { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--primary); margin: .5rem 0; }
.area { color: var(--slate-500); font-size: .9rem; margin-bottom: 1.5rem; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 1.5rem; }
.price-card li {
  padding: .5rem 0; font-size: .85rem; color: var(--slate-600);
  border-bottom: 1px solid var(--slate-100);
}
.price-card li::before { content: '✓ '; color: var(--gov-gold); font-weight: 700; }
.price-disclaimer { text-align: center; margin-top: 1.5rem; font-size: .8rem; color: var(--slate-500); font-style: italic; }

/* ===== FLOOR PLANS ===== */
.floor-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 2.5rem;
}
.floor-card {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: 1rem; overflow: hidden;
  transition: all .2s;
}
.floor-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.08); transform: translateY(-4px); }
.floor-card img { width: 100%; height: 220px; object-fit: cover; }
.floor-info { padding: 1.5rem; }
.floor-type { font-size: .75rem; font-weight: 700; color: var(--gov-gold); text-transform: uppercase; letter-spacing: .1em; }
.floor-info h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin: .5rem 0 .25rem; }
.floor-info p { color: var(--slate-500); font-size: .9rem; margin-bottom: 1rem; }

/* ===== AMENITIES ===== */
.amenities-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 2.5rem;
}
.amenity-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(140, 95, 0,.15);
  border-radius: .75rem; padding: 1.25rem;
  transition: all .2s;
}
.amenity-item:hover { background: rgba(140, 95, 0,.1); border-color: var(--gov-gold); }
.amenity-num { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--gov-gold); }
.amenity-item h3 { font-size: .875rem; font-weight: 500; margin-top: .5rem; }

/* ===== LOCATION ===== */
.location-grid {
  display: grid; gap: 3rem;
}
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1fr 1fr; } }
.connect-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.connect-table td {
  padding: .75rem 0; border-bottom: 1px solid var(--slate-100);
  font-size: .875rem;
}
.connect-table td:last-child {
  text-align: right; font-weight: 600; color: var(--primary); white-space: nowrap;
}
.location-map iframe {
  width: 100%; height: 400px; border: none;
  border-radius: 1rem; box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

/* ===== STATUS ===== */
.status-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 2.5rem;
}
.status-item {
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: 1rem; padding: 2rem; text-align: center;
}
.status-num { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 700; color: var(--gov-gold); }
.status-item h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin: .75rem 0; }
.status-pill {
  display: inline-block; padding: .25rem .875rem; border-radius: 9999px;
  font-size: .75rem; font-weight: 600;
}
.status-pill.done { background: #dcfce7; color: #15803d; }
.status-pill.active { background: rgba(140, 95, 0, .15); color: #8c5f00; }

/* ===== FAQ ===== */
.faq-tabs {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem;
}
.faq-tab {
  padding: .625rem 1.5rem; border-radius: 9999px;
  font-size: .85rem; font-weight: 500;
  background: var(--secondary); color: var(--foreground);
  border: 1px solid transparent; transition: all .2s;
}
.faq-tab.active, .faq-tab:hover { background: var(--primary); color: #fff; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-list.hidden { display: none; }
.faq-item {
  border: 1px solid var(--slate-200); border-radius: 1rem;
  overflow: hidden; transition: all .2s;
}
.faq-item:hover { border-color: rgba(140, 95, 0,.2); box-shadow: 0 4px 16px rgba(0,0,0,.04); }
.faq-item.active { border-color: rgba(140, 95, 0,.2); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem; text-align: left;
  font-family: var(--font-serif); font-size: 1rem; font-weight: 700;
  color: var(--primary);
}
.faq-q .num {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem;
  background: rgba(140, 95, 0,.1); color: var(--primary);
  border-radius: .75rem; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; transition: all .3s;
}
.faq-item.active .faq-q .num { background: var(--primary); color: #fff; }
.faq-q .icon { margin-left: auto; font-size: 1.25rem; color: var(--gov-gold); transition: transform .3s; }
.faq-item.active .faq-q .icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.active .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 1.5rem 1.25rem 4.5rem;
  border-top: 1px solid var(--slate-200);
}
.faq-a-inner::before {
  content: ''; display: block; width: 4rem; height: 2px;
  background: var(--primary); border-radius: 9999px; margin-bottom: 1rem;
}
.faq-a p { font-size: .9rem; color: var(--slate-600); line-height: 1.7; }

/* ===== NEWS ===== */
.news-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2.5rem;
}
.news-card { background: #fff; }
.news-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: .5rem; }
.news-meta {
  margin-top: 1rem; font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .05em; color: var(--slate-400);
}
.news-card h3 {
  margin-top: .5rem; font-size: 1rem; font-weight: 700;
  color: var(--slate-900); line-height: 1.4;
}
.news-card p { margin-top: .75rem; font-size: .75rem; color: var(--slate-500); line-height: 1.6; }
.news-card:hover h3 { color: #8c5f00; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--gov-strip); color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 2.5rem;
}
.footer-grid h4 {
  font-size: 1rem; color: var(--gov-gold); margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; }
.footer-links a:hover { color: var(--gov-gold); }
.footer-brand p { margin-top: 1rem; font-size: .875rem; line-height: 1.7; }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0; font-size: .75rem; line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0; text-align: center; font-size: .8rem;
}

/* ===== MOBILE BAR ===== */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 48;
  display: flex; background: #fff;
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  padding: .75rem 1rem;
  gap: .75rem;
}
@media (min-width: 768px) { .mobile-bar { display: none; } }
.mobile-bar .btn { flex: 1; }
.mobile-bar .btn-outline { border-radius: .5rem; font-size: .8rem; padding: .75rem; }
.mobile-bar .btn-primary { border-radius: .5rem; font-size: .8rem; padding: .75rem; }
body { padding-bottom: 70px; }
@media (min-width: 768px) { body { padding-bottom: 0; } }

/* ===== MODAL ===== */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: .3s;
}
.modal.active { opacity: 1; visibility: visible; }
.modal-bg {
  position: absolute; inset: 0;
  background: rgba(4,13,30,.8); backdrop-filter: blur(4px);
}
.modal-box {
  position: relative; background: #fff;
  border-radius: 1.25rem; padding: 2rem;
  max-width: 28rem; width: 90%; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0,0,0,.2);
  transform: translateY(20px); transition: .3s;
}
.modal.active .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 1.5rem; color: var(--slate-400); line-height: 1;
}
.modal-close:hover { color: var(--primary); }
.modal-box h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.modal-box .sub { font-size: .875rem; color: var(--slate-500); margin: .5rem 0 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--primary); margin-bottom: .375rem; }
.form-group input, .form-group select {
  width: 100%; padding: .75rem 1rem;
  border: 1px solid var(--slate-200); border-radius: .5rem;
  font-size: .9rem; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(140, 95, 0,.1);
}
.checkbox-label {
  display: flex; gap: .5rem; align-items: flex-start;
  font-size: .75rem; color: var(--slate-500); cursor: pointer;
}
.checkbox-label input { width: auto; margin-top: 2px; }
.form-success { text-align: center; padding: 1rem 0; }
.form-success .check {
  width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem;
  background: #dcfce7; color: #15803d; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
