/* ═══════════════════════════════════════════════════════
   BURARI PROPERTIES — Main Stylesheet
   Fonts: Playfair Display (headings) + DM Sans (body)
   ═══════════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────────── */
:root {
  --navy: #1a365d;
  --navy-dark: #0f1923;
  --navy-light: #2d4a7a;
  --gold: #c9a84c;
  --gold-light: #e4c66a;
  --gold-dark: #a8872e;
  --green: #2d6a4f;
  --light-bg: #f8f9fa;
  --section-bg: #f0f4ff;
  --text: #1a1a2e;
  --text-mid: #444455;
  --text-muted: #888899;
  --border: #e0e4ee;
  --white: #ffffff;
  --success: #27ae60;
  --error: #e74c3c;
  --wa-green: #25d366;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(26, 54, 93, .07);
  --shadow: 0 4px 20px rgba(26, 54, 93, .10);
  --shadow-lg: 0 8px 40px rgba(26, 54, 93, .14);
  --shadow-xl: 0 20px 60px rgba(26, 54, 93, .18);
  --transition: 0.25s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset & Base ────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Prevent any rogue element from forcing the whole page wider than the
     viewport on phones. `clip` preserves sticky/fixed positioning inside;
     `hidden` is the fallback for browsers that don't support clip yet. */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── Typography ─────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

p {
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── Container ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utility ────────────────────────────────────────── */
.text-gold {
  color: var(--gold);
}

.text-navy {
  color: var(--navy);
}

.text-white {
  color: var(--white);
}

.text-center {
  text-align: center;
}

.bg-light-blue {
  background: var(--section-bg);
}

.mt-2 {
  margin-top: 12px;
}

.mt-3 {
  margin-top: 20px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-3 {
  margin-bottom: 20px;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-navy {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-white {
  background: white;
  color: var(--navy);
  border-color: white;
}

.btn-white:hover {
  background: var(--section-bg);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: white;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .1);
}

.btn-wa {
  background: var(--wa-green);
  color: white;
  border-color: var(--wa-green);
}

.btn-wa:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-wa-outline {
  background: transparent;
  color: var(--wa-green);
  border-color: var(--wa-green);
  font-size: 0.82rem;
  padding: 6px 12px;
}

.btn-wa-outline:hover {
  background: var(--wa-green);
  color: white;
}

.btn-text-link {
  background: none;
  border: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 4px 0;
  cursor: pointer;
  text-decoration: underline;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Section Headers ────────────────────────────────── */
.section-tag {
  display: inline-block;
  background: var(--section-bg);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-header.text-center .section-sub {
  text-align: center;
}

.section-header.text-center {
  margin-bottom: 40px;
}

/* ── Navbar ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  padding: 0;
}

.navbar.scrolled .nav-link {
  color: var(--navy);
}

.navbar.scrolled .navbar-phone {
  color: var(--navy);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.navbar-logo .logo-svg {
  height: 42px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: space-between;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: white;
  font-weight: 500;
  font-size: 0.93rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, .1);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-phone {
  color: white;
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-phone:hover {
  color: var(--gold);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.navbar-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

.navbar.scrolled .navbar-toggle span {
  background: var(--navy);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--border);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  transition: all var(--transition);
}

.dropdown-item:hover {
  background: var(--section-bg);
  color: var(--navy);
}

.cat-icon {
  font-size: 1.1rem;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Hero (Homepage) ────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 25, 35, .85) 0%, rgba(26, 54, 93, .7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}

.hero-text {
  color: white;
}

.hero-tag {
  display: inline-block;
  background: rgba(201, 168, 76, .2);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, .4);
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.hero-title {
  color: white;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-subtitle {
  color: rgba(255, 255, 255, .8);
  font-size: 1.1rem;
  margin-bottom: 24px;
  max-width: 540px;
}

.hero-trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust-badges span {
  color: rgba(255, 255, 255, .85);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-search {
  position: relative;
  display: flex;
  gap: 0;
  background: white;
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  max-width: 580px;
}

.hero-search input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 0.95rem;
  background: transparent;
  outline: none;
  color: var(--text);
  border-radius: var(--radius) 0 0 var(--radius);
}

.hero-search button {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition);
}

.hero-search button:hover {
  background: var(--gold-light);
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .18);
  z-index: 9000;
  max-height: 320px;
  overflow-y: auto;
  display: none;
  border: 1px solid var(--border);
}

.search-suggestions.visible {
  display: block;
}

.search-suggestion-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: background var(--transition);
  border-bottom: 1px solid #f5f5f5;
}

.search-suggestion-item:last-child {
  border-bottom: none;
}

.search-suggestion-item:hover,
.search-suggestion-item.active {
  background: var(--section-bg);
}

.hero-mini-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xl);
}

.hero-mini-form h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--section-bg);
}

.hero-mini-form input,
.hero-mini-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 12px;
  outline: none;
  transition: border-color var(--transition);
}

.hero-mini-form input:focus,
.hero-mini-form select:focus {
  border-color: var(--navy);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .5);
  font-size: 0.8rem;
  text-align: center;
  z-index: 2;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, .4);
  border-bottom: 2px solid rgba(255, 255, 255, .4);
  transform: rotate(45deg);
  margin: 8px auto 0;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* ── Categories Section ─────────────────────────────── */
.categories-section {
  padding: 80px 0;
  background: var(--white);
}

.categories-grid {
  display: grid;
  /* Self-adjusting columns: fits as many ~220px cards as the viewport allows
     and collapses to 1 column on narrow phones. Works even if the media-query
     overrides below don't apply (e.g. stale cached CSS). */
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 20px;
  margin-top: 40px;
}

.category-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  display: block;
  /* Allow the card to shrink inside narrow grid tracks instead of forcing
     horizontal overflow / character-by-character text breaks. */
  min-width: 0;
  word-break: normal;
  overflow-wrap: break-word;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--cat-color, var(--navy));
}

.category-card:hover {
  border-color: var(--cat-color, var(--navy));
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cat-icon-wrap {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.cat-name {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.cat-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  min-height: 40px;
}

.cat-count {
  font-size: 0.78rem;
  color: var(--cat-color, var(--navy));
  font-weight: 700;
}

.cat-arrow {
  position: absolute;
  bottom: 16px;
  right: 20px;
  color: var(--cat-color, var(--navy));
  font-size: 1.2rem;
  opacity: 0;
  transition: all var(--transition);
}

.category-card:hover .cat-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ── Featured Section ───────────────────────────────── */
.featured-section {
  padding: 80px 0;
  background: var(--section-bg);
}

/* ── Property Cards ─────────────────────────────────── */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.property-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 54, 93, .15);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.property-card:hover .card-img {
  transform: scale(1.04);
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--section-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.card-img-placeholder span {
  font-size: 3rem;
  margin-bottom: 8px;
}

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-featured {
  background: var(--gold);
  color: var(--navy-dark);
}

.badge-buy {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-rent {
  background: #e3f2fd;
  color: #1565c0;
}

.badge-lease {
  background: #f3e5f5;
  color: #6a1b9a;
}

.badge-sold {
  background: #ffebee;
  color: var(--error);
}

.badge-rented {
  background: #fff3e0;
  color: #e65100;
}

.badge-available {
  background: #e8f5e9;
  color: #2e7d32;
}

.card-actions-hover {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transition: opacity var(--transition);
}

.property-card:hover .card-actions-hover {
  opacity: 1;
}

.card-action-btn {
  background: white;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--navy);
}

.card-action-btn:hover {
  background: var(--navy);
  color: white;
  transform: scale(1.1);
}

.compare-checkbox-label input {
  display: none;
}

.card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-title {
  font-size: 1rem;
  line-height: 1.35;
}

.card-title a:hover {
  color: var(--navy-light);
}

.card-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
}

.card-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.spec-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-footer {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ── Why Section ────────────────────────────────────── */
.why-section {
  padding: 80px 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-text p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  background: var(--section-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  border: 1.5px solid var(--border);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--navy);
  font-weight: 800;
}

.stat-plus {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ── Testimonials ───────────────────────────────────── */
.testimonials-section {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author small {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ── Contact Section ────────────────────────────────── */
.contact-section {
  padding: 80px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all var(--transition);
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, .12);
}

.ci-icon {
  font-size: 1.5rem;
}

.contact-info-item small {
  color: rgba(255, 255, 255, .6);
  font-size: 0.8rem;
  display: block;
}

.contact-info-item strong {
  color: white;
}

.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ── Lead Form ──────────────────────────────────────── */
.lead-form-wrapper {}

.lead-form {}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition);
  background: white;
  color: var(--text);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, .08);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--error);
}

.form-group-full {
  grid-column: 1 / -1;
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.phone-input-wrap:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, .08);
}

.phone-prefix {
  padding: 12px 10px 12px 14px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: var(--section-bg);
  border-right: 1.5px solid var(--border);
  white-space: nowrap;
}

.phone-input-wrap input {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
}

.radio-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  cursor: pointer;
}

.budget-range {
  display: flex;
  align-items: center;
  gap: 8px;
}

.budget-range select {
  flex: 1;
}

.budget-range span {
  color: var(--text-muted);
}

.field-error {
  font-size: 0.78rem;
  color: var(--error);
  min-height: 16px;
}

.req {
  color: var(--error);
}

.form-footer {
  margin-top: 20px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
}

.form-success-msg {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
}

.form-error-msg {
  background: #ffebee;
  color: var(--error);
  padding: 14px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.btn-submit {
  width: 100%;
  font-size: 1rem;
  padding: 15px 24px;
}

/* ── Floating Buttons ───────────────────────────────── */
.float-btn {
  position: fixed;
  right: 20px;
  z-index: 9999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
  color: white;
}

.float-wa {
  background: var(--wa-green);
  bottom: 88px;
  animation: wa-pulse 2.5s infinite;
}

.float-call {
  background: var(--navy);
  bottom: 28px;
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(0, 0, 0, .3);
}

.float-btn-tooltip {
  position: absolute;
  right: 62px;
  background: var(--navy-dark);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.float-btn:hover .float-btn-tooltip {
  opacity: 1;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5), 0 4px 20px rgba(0, 0, 0, .25);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0), 0 4px 20px rgba(0, 0, 0, .25);
  }
}

/* ── Compare Bar ────────────────────────────────────── */
.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--navy);
  color: white;
  padding: 12px 24px;
}

.compare-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo .logo-svg {
  height: 36px;
  margin-bottom: 16px;
}

.footer-tagline {
  color: var(--gold);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 12px;
}

.footer-desc {
  color: rgba(255, 255, 255, .55);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, .1);
}

.social-wa:hover {
  border-color: var(--wa-green);
  color: var(--wa-green);
}

.footer-heading {
  color: white;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .55);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .55);
}

.footer-contact-list a {
  color: rgba(255, 255, 255, .55);
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: var(--gold);
}

.contact-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  gap: 16px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .4);
  font-size: 0.82rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, .4);
  margin: 0 4px;
  font-size: 0.82rem;
}

.footer-legal a:hover {
  color: var(--gold);
}
/*
.footer-developer {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-developer a {
  color: #c9a84c;
  text-decoration: none;
  font-weight: 600;
}

.footer-developer a:hover {
  text-decoration: underline;
}
*/
/* ── Thank You Page ─────────────────────────────────── */
.thankyou-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--section-bg);
}

.thankyou-card {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.ty-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.thankyou-card h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.ty-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.ty-message p {
  margin-bottom: 12px;
}

.ty-steps {
  margin: 32px 0;
  text-align: left;
}

.ty-steps h3 {
  text-align: center;
  margin-bottom: 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
}

.step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.step p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ty-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ── Compare Page ───────────────────────────────────── */
.compare-page {
  padding: 80px 0;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.compare-table th {
  background: var(--navy);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
}

.compare-label {
  font-weight: 600;
  color: var(--text-muted);
  background: var(--section-bg);
}

.compare-table tr:hover td {
  background: rgba(240, 244, 255, .5);
}

/* ── Property Detail ────────────────────────────────── */
.detail-page {
  padding-top: 72px;
}

.detail-breadcrumb {
  background: var(--section-bg);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.detail-breadcrumb nav {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-breadcrumb a:hover {
  color: var(--navy);
}

.detail-container {
  padding-top: 32px;
  padding-bottom: 60px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
}

.detail-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--border);
  margin-bottom: 24px;
}

.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.detail-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.detail-title {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.detail-location {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.detail-price-box {
  text-align: right;
}

.detail-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
}

.price-neg {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
  background: #e8f5e9;
  padding: 2px 8px;
  border-radius: 12px;
}

.detail-deposit {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.detail-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--section-bg);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 24px;
}

.ds-item {
  text-align: center;
  min-width: 70px;
}

.ds-val {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.ds-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.detail-section h2 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.details-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dt-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.dt-row span:first-child {
  color: var(--text-muted);
}

.dt-row span:last-child {
  font-weight: 500;
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amenity-chip {
  background: var(--section-bg);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--border);
}

.suitable-chip {
  background: #e8f5e9;
  border-color: #c8e6c9;
  color: #2e7d32;
}

.video-embed-wrap {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-embed-wrap-sm {
  border-radius: var(--radius);
  overflow: hidden;
}

/* Sidebar */
.detail-sidebar {}

.sidebar-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1.5px solid var(--border);
  margin-bottom: 16px;
}

.sidebar-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
}

.sidebar-title {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 6px 0 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.sidebar-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.sidebar-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

.sidebar-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-stats>div {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-stats span {
  color: var(--text-muted);
}

.share-buttons {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.share-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.share-wa {
  background: var(--wa-green);
  color: white;
  border-color: var(--wa-green);
}

.share-copy {
  background: var(--section-bg);
  color: var(--navy);
}

.share-copy:hover {
  background: var(--navy);
  color: white;
}

.similar-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* ── Gallery ─────────────────────────────────────────── */
.gallery-section {
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-main {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .55);
  color: white;
  border: 2px solid rgba(255, 255, 255, .3);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
  user-select: none;
}

.gallery-prev {
  left: 14px;
}

.gallery-next {
  right: 14px;
}

.gallery-nav:hover {
  background: var(--navy);
  border-color: white;
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-fullscreen-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, .65);
  color: white;
  border: 1px solid rgba(255, 255, 255, .3);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.gallery-fullscreen-btn:hover {
  background: var(--navy);
  border-color: white;
}

.gallery-count {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, .65);
  color: white;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, .2);
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: #1a1a2e;
  overflow-x: auto;
  scrollbar-width: thin;
}

.gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}

.gallery-thumbs::-webkit-scrollbar-track {
  background: #111;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 2px;
}

.gallery-thumb {
  width: 88px;
  height: 66px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.gallery-thumb:hover {
  opacity: 0.9;
}

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--gold);
}

.gallery-placeholder {
  background: var(--section-bg);
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 12px;
}

/* ── Lightbox ─────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open {
  display: flex;
}

.lightbox-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  cursor: zoom-out;
  z-index: 0;
}

.lightbox-img-wrap {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 60px rgba(0, 0, 0, .6);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 10;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  color: white;
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.lightbox-close:hover {
  background: var(--error);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: white;
  font-size: 2.2rem;
  width: 56px;
  height: 72px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: 0;
  border-radius: 0 8px 8px 0;
}

.lightbox-next {
  right: 0;
  border-radius: 8px 0 0 8px;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, .25);
}

.lightbox-count {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, .75);
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(0, 0, 0, .5);
  padding: 6px 16px;
  border-radius: 20px;
}

/* ── Scroll Animations ──────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ── EMI Section ────────────────────────────────────── */
.emi-section {
  padding: 80px 0;
  background: var(--section-bg);
}

.emi-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  margin-top: 32px;
}

.emi-field {
  margin-bottom: 20px;
}

.emi-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.emi-field input[type=number] {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.emi-field input[type=number]:focus {
  border-color: var(--navy);
}

.emi-field input[readonly] {
  background: var(--section-bg);
}

.range-slider {
  width: 100%;
  accent-color: var(--navy);
  cursor: pointer;
  height: 4px;
  margin-top: 6px;
}

.emi-val-display {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.emi-result-main {
  text-align: center;
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}

.emi-label {
  font-size: 0.85rem;
  opacity: .8;
  display: block;
  margin-bottom: 8px;
}

.emi-amount {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
}

.emi-result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.emi-stat {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.stat-label {
  color: var(--text-muted);
}

.stat-val {
  font-weight: 700;
  color: var(--navy);
}

.emi-chart-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  justify-content: center;
}

.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}

.btn-block.mt-3 {
  margin-top: 16px;
}

/* ── Breadcrumb ─────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .7);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .9);
}

/* ── Brochure Modal ─────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  background: var(--section-bg);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.modal-header h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── Map Section ────────────────────────────────────── */
.map-section {
  padding: 60px 0 0;
}

.map-embed-wrap {
  margin-top: 32px;
}

.map-embed-wrap iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}