/* ============================================================
   Bahria Town Lahore: Home Page
   Brand colors extracted from logo:
   logo file: assets/logo/bahria-lahore-logo.png
   sampled gold avg: #D39442 (primary)
   ============================================================ */
:root {
  --bl-primary: #D39442;      /* exact logo gold */
  --bl-secondary: #8A5E24;    /* dark bronze shade of logo hue */
  --bl-accent: #F2C66D;       /* light gold highlight */
  --bl-dark: #1E1408;         /* warm near-black derived from logo hue */
  --bl-light: #FDF8EE;        /* warm off-white tint of logo hue */
  --bl-ink: #2A2118;
  --bl-muted: #6E6252;
  --bl-line: #EFE3CE;
  --bl-white: #FFFFFF;
  --bl-glass: rgba(255, 255, 255, 0.62);
  --bl-glass-strong: rgba(255, 255, 255, 0.78);
  --bl-glass-dark: rgba(30, 20, 8, 0.55);
  --bl-shadow: 0 10px 34px rgba(30, 20, 8, 0.12);
  --bl-shadow-sm: 0 4px 18px rgba(30, 20, 8, 0.08);
  --bl-radius: 18px;
  --bl-radius-sm: 12px;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--bl-ink);
  background: var(--bl-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bl-dark);
  margin: 0 0 0.6em;
}
h1 { font-weight: 800; }
h2 { font-weight: 700; font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-weight: 600; font-size: 1.15rem; }
h4, h5, h6 { font-weight: 600; }
p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bl-secondary); }
.container { width: min(1200px, 92%); margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--bl-primary), var(--bl-secondary));
  color: #fff;
  box-shadow: 0 8px 24px rgba(211, 148, 66, 0.38);
}
.btn--primary:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 32px rgba(211, 148, 66, 0.55), 0 0 0 6px rgba(211, 148, 66, 0.14);
}
.btn--glass {
  background: var(--bl-glass-strong);
  border-color: rgba(255,255,255,0.7);
  color: var(--bl-dark);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.btn--glass:hover { transform: scale(1.04); box-shadow: var(--bl-shadow); }
.btn--outline {
  border-color: var(--bl-primary); color: var(--bl-secondary); background: #fff;
}
.btn--outline:hover { background: var(--bl-primary); color: #fff; transform: scale(1.03); }
.btn--block { width: 100%; justify-content: center; }
.btn--dark {
  background: linear-gradient(135deg, #2A2118, var(--bl-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(30, 20, 8, 0.35);
}
.btn--dark:hover { transform: scale(1.03); box-shadow: 0 12px 34px rgba(30, 20, 8, 0.5); }
.btn--whatsapp {
  background: linear-gradient(135deg, #2ED573, #25D366);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.42);
}
.btn--whatsapp:hover { transform: scale(1.03); filter: brightness(1.05); box-shadow: 0 12px 34px rgba(37, 211, 102, 0.55); }
.btn--whatsapp svg { flex-shrink: 0; }

/* Floating site-wide WhatsApp button */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 300;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5), 0 0 0 1px rgba(255,255,255,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.6); }
@media (prefers-reduced-motion: reduce) { .wa-float { transition: none; } }

/* ---------- Glass card base ---------- */
.glass {
  background: var(--bl-glass);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--bl-radius);
  box-shadow: var(--bl-shadow);
}
/* Fallback when backdrop-filter unsupported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass, .navbar, .navbar__dropdown, .hero__card, .search-widget, .cat-card, .amenity-card,
  .near-card, .why-card, .testi-card, .lead-card {
    background: #FFFFFF !important;
  }
  .hero__card h2 { color: var(--bl-dark); text-shadow: none; }
  .hero__card > p, .search-widget__note { color: var(--bl-muted); }
  .search-widget label { color: var(--bl-dark); text-shadow: none; }
  .search-widget select { background-color: #fff; color: var(--bl-ink); border-color: var(--bl-line); }
  .hero__grain, .hero__glow { display: none; }
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 248, 238, 0.72);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid rgba(211, 148, 66, 0.22);
}
.navbar__inner {
  width: min(1280px, 94%); margin: 0 auto;
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; flex-wrap: nowrap;
}
.navbar__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
/* Text monogram replacing the logo image: Sora 800 on brand gold. */
.brand-mark {
  display: inline-grid; place-items: center; flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--bl-primary), var(--bl-secondary));
  color: #fff; font-family: var(--font-head); font-weight: 800;
  font-size: 1.05rem; letter-spacing: 0.02em; line-height: 1;
  box-shadow: 0 6px 18px rgba(211, 148, 66, 0.35);
}
.brand-mark--lg { width: 64px; height: 64px; border-radius: 16px; font-size: 1.3rem; }
.navbar__brand-text { line-height: 1.1; }
.navbar__brand-text strong {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 0.95rem; letter-spacing: 0.06em; color: var(--bl-dark);
}
.navbar__brand-text span {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.28em;
  color: var(--bl-secondary);
}
.navbar__links {
  display: flex; gap: 2px; list-style: none; margin: 0 0 0 auto; padding: 0;
  align-items: center; flex-wrap: nowrap; min-width: 0;
}
.navbar__links a, .navbar__drop-btn {
  font-family: var(--font-head);
  text-decoration: none; font-weight: 600; font-size: 0.8rem;
  color: var(--bl-ink); padding: 9px 11px; border-radius: 999px;
  white-space: nowrap; background: transparent; border: 1px solid transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.navbar__links a:hover, .navbar__links a.is-active,
.navbar__drop-btn:hover, .navbar__drop-btn.is-active, .has-dropdown.open > .navbar__drop-btn {
  background: rgba(211, 148, 66, 0.14); color: var(--bl-secondary);
}
.caret { font-size: 0.7em; line-height: 1; transition: transform 0.22s ease; }
.has-dropdown.open .caret { transform: rotate(180deg); }

/* Desktop dropdown: glass, fade + slide */
.has-dropdown { position: relative; }
.navbar__dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; z-index: 120;
  min-width: 220px; list-style: none; margin: 0; padding: 8px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(211, 148, 66, 0.28);
  border-radius: 14px; box-shadow: var(--bl-shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.has-dropdown:hover > .navbar__dropdown,
.has-dropdown:focus-within > .navbar__dropdown,
.has-dropdown.open > .navbar__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.navbar__dropdown a {
  display: flex; width: 100%; padding: 11px 14px; font-size: 0.83rem;
}
.navbar__dropdown a:hover { background: rgba(211, 148, 66, 0.14); }
.navbar__cta { margin-left: 4px; padding: 11px 22px; font-size: 0.85rem; flex-shrink: 0; }
.navbar__toggle {
  display: none; margin-left: auto; background: #fff; flex-shrink: 0;
  border: 1px solid var(--bl-line); border-radius: 10px;
  width: 44px; height: 42px; cursor: pointer;
}
.navbar__toggle span { display: block; height: 2px; background: var(--bl-dark); margin: 5px 10px; border-radius: 2px; }
.navbar__mobile { display: none; border-top: 1px solid var(--bl-line); background: #fff; }
.navbar__mobile.open { display: block; }
.navbar__mobile ul { list-style: none; margin: 0; padding: 10px 4%; display: grid; gap: 2px; }
.navbar__mobile a, .m-drop-btn {
  display: flex; align-items: center; gap: 8px; width: 100%;
  padding: 12px 10px; border-radius: 10px;
  text-decoration: none; font-weight: 600; color: var(--bl-ink);
  font-family: var(--font-head); font-size: 0.95rem;
  background: transparent; border: 0; cursor: pointer; text-align: left;
}
.navbar__mobile a:hover, .m-drop-btn:hover, .m-drop-btn.is-active { background: var(--bl-light); }
.m-drop-btn .caret { margin-left: auto; }
.m-drop.open > .m-drop-btn .caret { transform: rotate(180deg); }
/* Mobile accordion submenu */
.m-submenu {
  display: none; list-style: none; margin: 2px 0 4px 14px; padding: 2px 0 2px 12px;
  border-left: 2px solid rgba(211, 148, 66, 0.4);
}
.m-drop.open > .m-submenu { display: grid; gap: 2px; }
.m-submenu a { font-size: 0.88rem; padding: 10px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bl-dark); }
.hero__bg {
  position: absolute; inset: 0;
  background: url('../assets/images/bahria-lahore-grand-jamia-masjid-hero.jpg') center/cover no-repeat;
}
img.hero__bg { width: 100%; height: 100%; object-fit: cover; background: none; }
/* Home: bias the crop toward the mosque (right) and domes (upper third) at every width. */
.hero--home .hero__bg { background-position: 75% 35%; }
.hero--home img.hero__bg { object-position: 75% 35%; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(20,12,4,0.55) 0%, transparent 28%),
    linear-gradient(92deg, rgba(16,10,4,0.88) 0%, rgba(16,10,4,0.70) 28%, rgba(20,13,5,0.38) 48%, rgba(20,13,5,0.12) 64%, transparent 82%);
}
.hero__glow {
  position: absolute; z-index: 1; right: 4%; top: 10%;
  width: min(480px, 44vw); aspect-ratio: 1; pointer-events: none;
  background: radial-gradient(circle, rgba(242,198,109,0.30), rgba(211,148,66,0.12) 45%, transparent 70%);
  filter: blur(50px);
  animation: heroGlow 7s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.8; }
  to { transform: translate3d(-24px, 26px, 0) scale(1.08); opacity: 1; }
}
.hero__grain {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
/* Subtle load entrance for the hero copy, same fade/rise language as .reveal, no JS dependency. */
.hero__inner > div:first-child { animation: heroEnter 0.7s ease both; }
.hero__inner {
  position: relative; z-index: 2; width: min(1280px, 94%); margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0 clamp(48px, 6vw, 80px);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 32px; align-items: center; align-content: center;
  min-height: clamp(560px, 82vh, 720px);
}
/* Card-less hero: left-aligned single column on the logo gutter. Contact keeps the split layout. */
.hero__inner:not(:has(> .hero__card)) { grid-template-columns: minmax(0, 860px); justify-content: start; align-content: center; text-align: left; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 4px 22px rgba(242,198,109,0.20), inset 0 1px 0 rgba(255,255,255,0.25);
  color: #fff; border-radius: 999px; padding: 8px 16px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2);
}
.hero__eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--bl-accent); display: inline-block; box-shadow: 0 0 10px rgba(242,198,109,0.9); }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.25; letter-spacing: 0; margin: 22px 0 20px; text-shadow: 0 2px 26px rgba(0,0,0,0.5); }
/* Badgeless heroes: heading leads the block, so drop its top margin (contact keeps badge + gap). */
.hero__inner > div:first-child > h1:first-child { margin-top: 0; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--bl-accent), var(--bl-primary));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: none;
}
.hero__sub { color: #fff; font-size: 1.12rem; max-width: 560px; margin-bottom: 0; text-shadow: 0 2px 16px rgba(0,0,0,0.5); }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 34px; }
.hero__ctas .btn--primary { box-shadow: 0 12px 34px rgba(211,148,66,0.55), 0 0 0 1px rgba(255,255,255,0.14); }
.hero__ctas .btn--primary:hover { transform: scale(1.05); box-shadow: 0 14px 44px rgba(211,148,66,0.65), 0 0 0 6px rgba(211,148,66,0.16); }
.hero__ctas .btn--glass { box-shadow: 0 8px 28px rgba(255,255,255,0.16); }
.hero__ctas .btn--glass:hover { transform: scale(1.05); background: #fff; border-color: var(--bl-accent); box-shadow: 0 12px 40px rgba(255,255,255,0.28); }
.hero__trust { display: flex; gap: 12px 20px; flex-wrap: wrap; color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,0.4); }
.hero__trust > div { padding: 10px 16px; border-radius: 14px; border: 1px solid transparent; transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease; }
.hero__trust > div + div { border-left-color: rgba(255,255,255,0.22); padding-left: 20px; }
.hero__trust > div:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transform: translateY(-2px); }
.hero__trust div strong { display: block; font-family: var(--font-head); font-size: 1.25rem; }
.hero__trust div span { font-size: 0.82rem; opacity: 0.85; }
.hero__stars { color: var(--bl-accent); letter-spacing: 2px; font-size: 0.95rem; }
.hero__card {
  position: relative;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 24px; padding: 28px;
  box-shadow: 0 24px 60px rgba(10,6,2,0.45), 0 8px 32px rgba(211,148,66,0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hero__card::before {
  content: ""; position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
  border-radius: 999px; pointer-events: none;
}
.hero__card:hover { transform: translateY(-4px); box-shadow: 0 30px 70px rgba(10,6,2,0.5), 0 10px 40px rgba(211,148,66,0.24); }
.hero__card h2 { font-size: 1.25rem; margin-bottom: 4px; color: #fff; text-shadow: 0 1px 14px rgba(0,0,0,0.4); }
.hero__card > p { font-size: 0.9rem; color: rgba(255,255,255,0.82); margin-bottom: 16px; }
.search-widget { display: grid; gap: 12px; }
.search-widget label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,0.35); display: grid; gap: 6px; }
.search-widget select {
  font-family: var(--font-body); font-size: 0.95rem; padding: 13px 38px 13px 14px;
  border-radius: 14px; border: 1px solid rgba(255,255,255,0.25);
  background-color: rgba(255,255,255,0.14); color: #fff;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.search-widget select:hover { border-color: rgba(255,255,255,0.45); }
.search-widget select:focus { outline: 2px solid rgba(242,198,109,0.6); outline-offset: 1px; }
.search-widget select option { color: #2A2118; background: #fff; }
.search-widget__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.search-widget__note { font-size: 0.8rem; color: rgba(255,255,255,0.72); }
.hero__card .btn--primary { box-shadow: 0 10px 30px rgba(211,148,66,0.50); }
.hero__card .btn--primary:hover { transform: scale(1.03); filter: brightness(1.06); box-shadow: 0 14px 44px rgba(211,148,66,0.65), 0 0 0 6px rgba(211,148,66,0.16); }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 7vw, 96px) 0; }
.section--white { background: #fff; }
.section--tint {
  background:
    radial-gradient(700px 320px at 10% 0%, rgba(211,148,66,0.14), transparent 60%),
    radial-gradient(700px 320px at 90% 20%, rgba(242,198,109,0.16), transparent 60%),
    var(--bl-light);
}
.section__head { max-width: 780px; margin: 0 auto 36px; text-align: center; }
.section__eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.22em;
  color: var(--bl-secondary); background: rgba(211,148,66,0.12);
  border: 1px solid rgba(211,148,66,0.3); padding: 7px 16px; border-radius: 999px;
  margin-bottom: 14px; text-transform: uppercase;
}
.section__sub { color: var(--bl-muted); font-size: 1.02rem; }
.prose { max-width: 860px; margin: 0 auto; color: #453B2D; font-size: 1rem; }
.prose p { margin-bottom: 1.1em; }
.prose a { color: var(--bl-secondary); font-weight: 700; text-decoration: none; }
.prose a:hover { color: var(--bl-secondary); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.tos-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.prose--tos > h3 { margin-top: 2rem; }
.prose--tos > h3:first-of-type { margin-top: 0; }

/* ---------- About section ---------- */
#about .section__head { margin-bottom: 46px; }
#about .section__eyebrow { margin-bottom: 22px; }
#about .section__head h2 { margin-bottom: 16px; }
.about-card {
  padding: clamp(26px, 4vw, 52px) clamp(20px, 5vw, 64px);
  text-align: left;
}
.about-card > p {
  max-width: 960px; margin: 0 auto 1.15em;
  color: #453B2D; font-size: 1rem; line-height: 1.8;
  font-family: var(--font-body);
}
.about-card > p:last-of-type { margin-bottom: 0; }
.about-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 26px auto; max-width: 240px;
}
.about-divider::before, .about-divider::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, rgba(211, 148, 66, 0.55), transparent);
}
.about-divider i {
  width: 8px; height: 8px; transform: rotate(45deg);
  background: var(--bl-primary); border-radius: 2px; flex-shrink: 0;
}
.about-cta { margin-top: 44px; text-align: center; }
.about-cta__lead {
  font-family: var(--font-head); font-weight: 600;
  font-size: 1.05rem; color: var(--bl-dark); margin: 0 0 20px;
}
.about-cta__btns {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}

/* trust strip */
.trustbar {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, rgba(48,33,15,0.94), rgba(30,20,8,0.90));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(242,198,109,0.40);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 -14px 44px rgba(211,148,66,0.14);
  color: #fff;
}
.trustbar__inner {
  width: min(1200px, 92%); margin: 0 auto; padding: 22px 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.trustbar__icon {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0;
  background: rgba(211,148,66,0.14); border: 1px solid rgba(211,148,66,0.35);
  color: var(--bl-accent);
}
.trustbar__icon svg { width: 20px; height: 20px; }
.trustbar__item { display: flex; gap: 12px; align-items: center; }
.trustbar__item strong { display: block; font-family: var(--font-head); font-size: 1.3rem; color: var(--bl-accent); }
.trustbar__item span { font-size: 0.82rem; opacity: 0.85; }

/* category grid */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.cat-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-card:hover .cat-card__media img { transform: scale(1.06); }
.cat-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(30,20,8,0.72); color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; padding: 7px 13px; border-radius: 999px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.cat-card__body { padding: 22px; display: grid; gap: 10px; flex: 1; }
.cat-card__body p { font-size: 0.93rem; color: #57493a; }
.cat-card__meta { display: flex; gap: 8px; flex-wrap: wrap; font-size: 0.76rem; font-weight: 700; color: var(--bl-secondary); }
.cat-card__meta span { background: rgba(211,148,66,0.12); border: 1px solid rgba(211,148,66,0.28); padding: 4px 11px; border-radius: 999px; }

/* amenities */
.amen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.amenity-card { padding: 22px 20px; text-align: left; transition: transform 0.2s ease; }
.amenity-card:hover { transform: translateY(-4px); }
.amenity-card__icon {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bl-primary), var(--bl-secondary));
  color: #fff; font-size: 1.25rem; margin-bottom: 12px;
}
.amenity-card p { font-size: 0.88rem; color: #57493a; margin: 0; }
.amenity-wide {
  margin-top: 18px; padding-top: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  align-items: stretch;
}
.amenity-wide figure { margin: 0; border-radius: var(--bl-radius); overflow: hidden; box-shadow: var(--bl-shadow-sm); }
.amenity-wide img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
/* Resident-days carousel: same frame as the old single image, fading slides. */
.amenity-carousel { position: relative; aspect-ratio: 3 / 2; }
.amenity-carousel img {
  position: absolute; inset: 0; opacity: 0; min-height: 0;
  transition: opacity 0.8s ease;
}
.amenity-carousel img.is-active { opacity: 1; }

/* nearby */
.near-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.near-card { padding: 22px; display: grid; gap: 8px; }
.near-card__dist {
  font-family: var(--font-head); font-weight: 800; color: var(--bl-secondary); font-size: 1.05rem;
}
.near-card p { font-size: 0.9rem; color: #57493a; margin: 0; }
.near-map {
  margin-top: 18px; border-radius: var(--bl-radius); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; box-shadow: var(--bl-shadow);
  background: #fff; border: 1px solid var(--bl-line);
}
.near-map img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.near-map__body { padding: 30px; }

/* why */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.why-card { padding: 26px; }
.why-card h3 { display: flex; gap: 10px; align-items: center; }
.why-card__num {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(211,148,66,0.14); border: 1px solid rgba(211,148,66,0.35);
  color: var(--bl-secondary); display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 0.9rem;
}
.why-card p { font-size: 0.93rem; color: #57493a; margin: 0; }

/* testimonials */
.testi-wrap { position: relative; max-width: 860px; margin: 0 auto; }
.testi-track { display: grid; gap: 16px; }
.testi-card { padding: 28px; }
.testi-card blockquote { margin: 0 0 14px; font-size: 1.02rem; }
.testi-card__who { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bl-accent), var(--bl-primary));
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: #fff;
}
.testi-card__who strong { display: block; font-size: 0.95rem; }
.testi-card__who span { font-size: 0.82rem; color: var(--bl-muted); }
.testi-card__stars { color: var(--bl-primary); letter-spacing: 2px; }
.testi-nav { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }
.testi-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--bl-line);
  background: #fff; cursor: pointer; font-size: 1.1rem; color: var(--bl-secondary);
}
.testi-nav button:hover { background: var(--bl-primary); color: #fff; border-color: var(--bl-primary); }

/* lead + faq layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.lead-card { padding: 30px; }
.lead-card form { display: grid; gap: 14px; }
.lead-card label { display: grid; gap: 6px; font-size: 0.82rem; font-weight: 700; }
.lead-card input, .lead-card select, .lead-card textarea {
  font-family: var(--font-body); font-size: 0.95rem; padding: 13px 14px;
  border-radius: 12px; border: 1px solid var(--bl-line); background: #fff; width: 100%;
}
.lead-card textarea { min-height: 110px; resize: vertical; }
.faq-list { display: grid; gap: 12px; }
.faq {
  background: var(--bl-glass-strong);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.7); border-radius: 14px; overflow: hidden;
  box-shadow: var(--bl-shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px;
  padding: 18px 20px; font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex-shrink: 0; width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(211,148,66,0.14); border: 1px solid rgba(211,148,66,0.3);
  color: var(--bl-secondary); font-weight: 800;
}
.faq[open] summary::after { content: "–"; }
.faq__answer { padding: 0 20px 18px; font-size: 0.92rem; color: #4d4234; }

/* footer */
.footer { background: var(--bl-dark); color: rgba(255,255,255,0.82); }
.footer__inner {
  width: min(1200px, 92%); margin: 0 auto; padding: 56px 0 26px;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 28px;
}
.footer h3, .footer h4 { color: #fff; }
.footer a { color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.9rem; }
.footer a:hover { color: var(--bl-accent); }
.footer__legal { color: rgba(255,255,255,0.6); font-size: 0.82rem; text-decoration: underline; text-underline-offset: 3px; }
.footer__legal:hover { color: var(--bl-accent); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer__brand .brand-mark--lg { margin-bottom: 12px; }
.footer__brand p { font-size: 0.88rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 18px 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.6);
  width: min(1200px, 92%); margin: 0 auto;
}
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
}
.socials a svg { width: 18px; height: 18px; display: block; }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* responsive */
@media (max-width: 1100px) {
  .navbar__links { display: none; }
  .navbar__toggle { display: block; }
  .navbar__cta { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .browse-grid { grid-template-columns: repeat(2, 1fr); }
  .amen-grid { grid-template-columns: repeat(2, 1fr); }
  .near-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  /* Let long button labels wrap instead of clipping at ~320px widths. */
  .btn { white-space: normal; text-align: center; }
  .cat-grid, .amen-grid, .near-grid, .why-grid, .split,
  .amenity-wide, .near-map, .browse-grid { grid-template-columns: 1fr; }
  .search-widget__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .trustbar__inner { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero__ctas .btn { flex: 1 1 100%; justify-content: center; }
  .about-card { padding: 24px 20px; }
  .about-cta { margin-top: 36px; }
  .about-cta__btns { flex-direction: column; align-items: stretch; }
  .about-cta__btns .btn { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  .hero__glow { animation: none; }
  .hero__inner > div:first-child { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Browse Properties (home tabbed category cards) ---------- */
.browse-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.browse-card {
  padding: 22px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.browse-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(30, 20, 8, 0.16); }
.browse-card__foot { margin-top: auto; padding-top: 4px; }
.browse-card__foot a { font-size: 0.86rem; font-weight: 700; color: var(--bl-secondary); text-decoration: none; white-space: nowrap; }
.browse-card__foot a:hover { text-decoration: underline; text-underline-offset: 3px; }
.browse-card__top { display: flex; gap: 13px; align-items: flex-start; }
.browse-card__icon {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: var(--bl-secondary);
  background: rgba(211, 148, 66, 0.14); border: 1px solid rgba(211, 148, 66, 0.32);
}
.browse-card__icon svg { width: 24px; height: 24px; }
.browse-card h3 { margin: 0 0 2px; font-size: 1.08rem; }
.browse-card__top p { margin: 0; font-size: 0.83rem; color: var(--bl-muted); }
.browse-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.browse-tab {
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 700;
  padding: 7px 14px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--bl-line); background: transparent; color: var(--bl-muted);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.browse-tab:hover { border-color: var(--bl-secondary); color: var(--bl-secondary); }
.browse-tab.is-active {
  background: var(--bl-secondary); border-color: var(--bl-secondary); color: #fff;
  box-shadow: 0 4px 14px rgba(138, 94, 36, 0.35);
}
.browse-pane { display: none; }
.browse-pane.is-active { display: block; }
.browse-chips { display: flex; gap: 9px 10px; flex-wrap: wrap; min-height: 76px; align-content: flex-start; }
.chip--link { text-decoration: none; transition: background 0.2s ease; }
.chip--link:hover { background: rgba(211, 148, 66, 0.28); }
.browse-dots { display: none; gap: 7px; justify-content: center; margin-top: 12px; }
.browse-dots.has-pages { display: flex; }
.browse-dots button {
  width: 7px; height: 7px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: rgba(138, 94, 36, 0.28);
}
.browse-dots button.is-active { background: var(--bl-secondary); transform: scale(1.25); }

/* ---------- Discover rows (home horizontal strips) ---------- */
.disco-row { margin-top: 38px; }
.disco-row:first-of-type { margin-top: 6px; }
.disco-row__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; }
.disco-row__title { margin: 0; font-size: clamp(1.15rem, 2.2vw, 1.5rem); }
.disco-row__sub { color: var(--bl-muted); font-size: 0.92rem; margin: 6px 0 16px; max-width: 640px; }
.disco-row__nav { display: flex; align-items: center; gap: 12px; flex: none; }
.disco-row__more { font-size: 0.85rem; font-weight: 700; color: var(--bl-secondary); text-decoration: none; white-space: nowrap; }
.disco-row__more:hover { text-decoration: underline; text-underline-offset: 3px; }
.disco-arrow {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer; flex: none;
  border: 1px solid rgba(211, 148, 66, 0.40); background: var(--bl-glass-strong);
  color: var(--bl-secondary); font-size: 1.15rem; line-height: 1;
  box-shadow: var(--bl-shadow-sm); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.disco-arrow:hover { background: var(--bl-dark); border-color: var(--bl-dark); color: #fff; }
.disco-strip {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(300px, 78vw); gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px 2px 14px;
  scrollbar-width: none; /* Firefox: hide scrollbar, keep swipe/scroll */
  -ms-overflow-style: none; /* legacy Edge/IE */
}
.disco-strip::-webkit-scrollbar { display: none; } /* Chrome/Safari/Edge */
.listing-card--strip { scroll-snap-align: start; }
@media (max-width: 720px) {
  .disco-row__more { display: none; }
}
