/* =========================================================
   Uttara Realty — Design Tokens
   Palette: forest green (primary), survey gold (accent),
   parchment (bg), ink (text), sage (tint)
   Type: Fraunces (display) / Inter (body) / JetBrains Mono (data)
   Signature: dotted site-plan grid motif used as a recurring
   structural device (hero, section dividers, plot cards)
   ========================================================= */

:root {
  --forest: #163A2E;
  --forest-dark: #0E2721;
  --gold: #C7A044;
  --gold-soft: #E9DCB4;
  --parchment: #FAF7F0;
  --ink: #1E2622;
  --ink-soft: #55645D;
  --sage: #E7EEE5;
  --line: #D8D2C2;
  --white: #FFFFFF;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, Segoe UI, sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  --radius: 6px;
  --shadow-soft: 0 10px 30px rgba(14, 39, 33, 0.08);
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.65;
}

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  color: var(--forest-dark);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.text-gold { color: var(--gold) !important; }
.bg-forest { background: var(--forest) !important; }
.bg-sage { background: var(--sage) !important; }
.bg-parchment { background: var(--parchment) !important; }

a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--gold); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- Navbar ---------- */
.navbar-uttara {
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
  padding-top: 14px;
  padding-bottom: 14px;
}
.navbar-uttara .navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--forest-dark);
}
.navbar-uttara .navbar-brand span { color: var(--gold); }
.navbar-uttara .nav-link {
  font-weight: 500;
  color: var(--ink);
  margin: 0 6px;
  position: relative;
}
.navbar-uttara .nav-link.active,
.navbar-uttara .nav-link:hover { color: var(--forest); }
.navbar-uttara .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--gold);
}
.btn-uttara {
  background: var(--forest);
  color: var(--white);
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.92rem;
}
.btn-uttara:hover { background: var(--forest-dark); color: var(--white); }
.btn-uttara-outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.92rem;
}
.btn-uttara-outline:hover { background: var(--forest); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--forest-dark);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 700;
}
.btn-gold:hover { background: #b68f34; color: var(--forest-dark); }

/* ---------- Signature: dotted site-plan grid ---------- */
.plan-grid {
  background-image: radial-gradient(circle, rgba(199,160,68,0.35) 1px, transparent 1px);
  background-size: 22px 22px;
}
.plan-grid-dark {
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--forest);
  color: var(--white);
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.6;
}
.hero .hero-inner { position: relative; z-index: 2; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.12;
}
.hero p.lead { color: rgba(255,255,255,0.82); max-width: 560px; }

.hero-plot-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  color: var(--ink);
}

.stat-row { border-top: 1px solid rgba(255,255,255,0.18); margin-top: 48px; padding-top: 28px; }
.stat-num { font-family: var(--font-mono); font-size: 2rem; color: var(--gold); font-weight: 700; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Section spacing ---------- */
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.section-title { margin-bottom: 44px; }

/* ---------- Cards ---------- */
.scheme-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.scheme-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.scheme-card .img-wrap { height: 210px; overflow: hidden; position: relative; }
.scheme-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.scheme-card .status-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 0.72rem;
  background: var(--forest); color: var(--white);
  padding: 4px 10px; border-radius: 3px; text-transform: uppercase;
}
.scheme-card .body { padding: 22px; }
.scheme-card .price { font-family: var(--font-mono); color: var(--forest); font-weight: 700; }

.amenity-item, .feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px dashed var(--line);
}
.amenity-item i, .feature-item i { color: var(--gold); font-size: 1.3rem; margin-top: 2px; }

.benefit-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px;
  height: 100%;
}

/* ---------- Plot table / grid ---------- */
.plot-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  height: 100%;
}
.plot-no { font-family: var(--font-mono); font-size: 1.1rem; font-weight: 700; color: var(--forest-dark); }
.plot-card .meta { font-size: 0.86rem; color: var(--ink-soft); }

table.plot-table th {
  font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase;
  color: var(--ink-soft); border-bottom: 2px solid var(--forest);
}
table.plot-table td { vertical-align: middle; }

/* ---------- Document / gallery ---------- */
.doc-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px;
}
.doc-card i { font-size: 1.6rem; color: var(--forest); }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item img, .gallery-item video { width: 100%; height: 220px; object-fit: cover; }
.gallery-item .play-badge {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(14,39,33,0.35); color: #fff; font-size: 2.4rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--forest-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 56px;
  position: relative;
  overflow: hidden;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 24px;
}
footer.site-footer h5 { color: var(--white); font-family: var(--font-display); }
footer.site-footer a { color: rgba(255,255,255,0.75); }
footer.site-footer a:hover { color: var(--gold); }
footer.site-footer .brand { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); }
footer.site-footer .brand span { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 20px; font-size: 0.85rem; }

/* ---------- Breadcrumb strip ---------- */
.page-header {
  background: var(--sage);
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

/* ---------- Forms ---------- */
.form-control, .form-select {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 12px 14px;
}
.form-control:focus, .form-select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(22,58,46,0.12);
}
label.form-label { font-weight: 600; font-size: 0.88rem; color: var(--ink); }

/* ---------- Accessibility: visible focus ---------- */
a:focus-visible, button:focus-visible, .nav-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .scheme-card { transition: none; }
}

@media (max-width: 767px) {
  .section { padding: 56px 0; }
  .cta-band { padding: 34px; }
}
