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

:root {
  --bg:       #050d1a;
  --bg2:      #0a1628;
  --bg3:      #0f1f38;
  --card:     rgba(15, 31, 56, 0.7);
  --blue:     #2563eb;
  --blue-lt:  #3b82f6;
  --blue-xlt: #60a5fa;
  --gold:     #d4af37;
  --text:     #f1f5f9;
  --sub:      #94a3b8;
  --border:   rgba(255,255,255,0.08);
  --radius:   16px;
  --shadow:   0 8px 32px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Cinzel', serif; letter-spacing: 0.02em; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ─── Utility ──────────────────────────────────────── */
.glass {
  background: var(--card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600; font-size: 0.875rem; letter-spacing: 0.05em;
  padding: 12px 28px; border-radius: 10px; border: none;
  cursor: pointer; transition: all 0.2s ease;
  box-shadow: 0 0 24px rgba(37,99,235,0.4);
}
.btn-primary:hover { background: var(--blue-lt); box-shadow: 0 0 36px rgba(59,130,246,0.5); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600; font-size: 0.875rem; letter-spacing: 0.05em;
  padding: 11px 28px; border-radius: 10px;
  border: 1px solid var(--border); cursor: pointer;
  transition: all 0.2s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--blue-lt); }

.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue-xlt);
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 32px; height: 1px; background: var(--blue-xlt);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.highlight { -webkit-text-fill-color: var(--blue-xlt); }

/* ─── Navbar ───────────────────────────────────────── */
.navbar {
  position: fixed; top: 16px; left: 16px; right: 16px; z-index: 100;
  max-width: 1280px; margin: 0 auto;
  border-radius: 14px; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(5,13,26,0.95); border-color: rgba(37,99,235,0.3); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(37,99,235,0.5);
}
.nav-logo-text { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--sub); text-decoration: none;
  transition: color 0.2s; cursor: pointer;
}
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ─── Hero ─────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1920&q=85&fit=crop');
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,13,26,0.5) 0%,
    rgba(5,13,26,0.65) 50%,
    rgba(5,13,26,0.92) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px;
  max-width: 900px; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.4);
  padding: 6px 18px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--blue-xlt); margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-xlt); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 20px;
  color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero h1 em { font-style: normal; color: var(--blue-xlt); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 48px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Search Box */
.search-box {
  background: rgba(5,13,26,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 18px; padding: 20px 24px;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.search-field { flex: 1; min-width: 160px; }
.search-field label {
  display: block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-xlt); margin-bottom: 8px;
}
.search-field select,
.search-field input {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem; padding: 10px 14px; outline: none;
  transition: border-color 0.2s; cursor: pointer;
  appearance: none;
}
.search-field select:focus,
.search-field input:focus { border-color: var(--blue); }
.search-field select option { background: #0a1628; }
.search-btn { flex-shrink: 0; }

/* Hero Stats */
.hero-stats {
  display: flex; justify-content: center; gap: 48px;
  margin-top: 48px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block; font-family: 'Cinzel', serif;
  font-size: 2rem; font-weight: 700; color: #fff;
}
.hero-stat span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sub); }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.scroll-hint span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sub); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--blue), transparent); animation: scrollDown 2s infinite; }
@keyframes scrollDown { 0%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(0);transform-origin:bottom} }

/* ─── Properties Section ──────────────────────────── */
.section { padding: 100px 20px; }
.container { max-width: 1280px; margin: 0 auto; }

.section-header { margin-bottom: 48px; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* Filter Bar */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.filter-btn {
  padding: 9px 22px; border-radius: 100px;
  background: transparent; border: 1px solid var(--border);
  color: var(--sub); font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--blue-lt); color: var(--text); }
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 0 20px rgba(37,99,235,0.4); }

.sort-select {
  background: transparent; border: 1px solid var(--border); border-radius: 100px;
  color: var(--sub); font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem; padding: 9px 20px; cursor: pointer; outline: none;
  appearance: none; transition: all 0.2s;
}
.sort-select:focus { border-color: var(--blue); color: var(--text); }
.sort-select option { background: #0a1628; }

/* Property Grid */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.property-card {
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; position: relative;
}
.property-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(37,99,235,0.15); }
.property-card.hidden { display: none; }

.card-img { position: relative; height: 240px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.property-card:hover .card-img img { transform: scale(1.06); }

.card-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.badge-featured { background: var(--blue); color: #fff; }
.badge-new { background: #16a34a; color: #fff; }
.badge-hot { background: #dc2626; color: #fff; }

.card-fav {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(5,13,26,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; z-index: 2;
}
.card-fav:hover { background: rgba(220,38,38,0.2); border-color: #dc2626; }
.card-fav.active svg { fill: #dc2626; stroke: #dc2626; }
.card-fav svg { width: 16px; height: 16px; stroke: #fff; fill: none; transition: all 0.2s; }

.card-type-tag {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(5,13,26,0.8); border: 1px solid var(--border); color: var(--sub);
}

.card-body { padding: 20px 22px 22px; background: var(--bg3); border: 1px solid var(--border); border-top: none; }
.card-price {
  font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--blue-xlt); margin-bottom: 6px;
}
.card-price span { font-size: 0.75rem; color: var(--sub); font-family: 'Josefin Sans', sans-serif; font-weight: 400; }
.card-title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.card-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.8rem; color: var(--sub); margin-bottom: 16px;
}
.card-location svg { width: 14px; height: 14px; flex-shrink: 0; }

.card-meta { display: flex; gap: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--sub); }
.meta-item svg { width: 15px; height: 15px; color: var(--blue-xlt); flex-shrink: 0; }
.meta-item strong { color: var(--text); font-weight: 600; }

/* No results */
.no-results { grid-column: 1/-1; text-align: center; padding: 80px 20px; color: var(--sub); }
.no-results svg { width: 48px; height: 48px; margin: 0 auto 16px; opacity: 0.4; }

/* ─── Stats Bar ────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--blue) 0%, #1d4ed8 100%);
  padding: 60px 20px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item strong { display: block; font-family: 'Cinzel', serif; font-size: 2.5rem; font-weight: 700; color: #fff; }
.stat-item p { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 6px; }

/* ─── Why Us ───────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img { border-radius: var(--radius); overflow: hidden; position: relative; }
.why-img img { width: 100%; height: 540px; object-fit: cover; display: block; }
.why-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(5,13,26,0.9); backdrop-filter: blur(16px);
  border: 1px solid rgba(37,99,235,0.4); border-radius: 14px;
  padding: 16px 20px;
}
.why-img-badge strong { display: block; font-family: 'Cinzel', serif; font-size: 1.6rem; color: var(--blue-xlt); }
.why-img-badge span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sub); }
.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.why-feature {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px; border-radius: 14px; border: 1px solid var(--border);
  background: rgba(15,31,56,0.4); transition: border-color 0.2s, box-shadow 0.2s;
}
.why-feature:hover { border-color: rgba(37,99,235,0.4); box-shadow: 0 8px 32px rgba(37,99,235,0.08); }
.why-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.25);
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 20px; height: 20px; color: var(--blue-xlt); }
.why-feature h4 { font-family: 'Josefin Sans', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; letter-spacing: 0.05em; }
.why-feature p { font-size: 0.85rem; color: var(--sub); line-height: 1.6; }

/* ─── Testimonials ─────────────────────────────────── */
.testimonials-bg { background: var(--bg2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  padding: 28px; border-radius: var(--radius); border: 1px solid var(--border);
  background: rgba(15,31,56,0.5); transition: border-color 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { border-color: rgba(37,99,235,0.3); box-shadow: 0 8px 32px rgba(37,99,235,0.06); }
.t-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.t-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.t-quote { font-size: 0.9rem; line-height: 1.7; color: rgba(241,245,249,0.8); margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(37,99,235,0.4); flex-shrink: 0;
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.t-role { font-size: 0.75rem; color: var(--blue-xlt); letter-spacing: 0.05em; }

/* ─── CTA Section ──────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0f1f38 0%, #050d1a 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; padding: 80px 20px;
  max-width: 1280px; margin: 0 auto;
}
.cta-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 12px; }
.cta-text p { font-size: 1rem; color: var(--sub); max-width: 460px; line-height: 1.6; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ─── Footer ───────────────────────────────────────── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 72px 20px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: 0.85rem; color: var(--sub); line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h5 { font-family: 'Josefin Sans', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--sub); text-decoration: none; transition: color 0.2s; cursor: pointer; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.8rem; color: var(--sub); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--sub); transition: all 0.2s; cursor: pointer; text-decoration: none;
}
.social-link:hover { border-color: var(--blue); color: var(--blue-xlt); background: rgba(37,99,235,0.08); }
.social-link svg { width: 16px; height: 16px; }

/* ─── Modal ────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,13,26,0.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 20px; max-width: 900px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
  transform: translateY(24px) scale(0.97); transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-gallery { position: relative; height: 360px; background: #000; border-radius: 20px 20px 0 0; overflow: hidden; }
.modal-gallery img { width: 100%; height: 100%; object-fit: cover; display: none; }
.modal-gallery img.active { display: block; }
.gallery-prev, .gallery-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(5,13,26,0.8); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; z-index: 2; color: #fff;
}
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-prev:hover, .gallery-next:hover { background: var(--blue); border-color: var(--blue); }
.gallery-prev svg, .gallery-next svg { width: 18px; height: 18px; }
.gallery-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.gallery-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: all 0.2s; cursor: pointer; }
.gallery-dot.active { background: #fff; width: 18px; border-radius: 3px; }

.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(5,13,26,0.8); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; color: #fff;
}
.modal-close:hover { background: #dc2626; border-color: #dc2626; }
.modal-close svg { width: 18px; height: 18px; }

.modal-body { padding: 28px 32px 32px; }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.modal-price { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700; color: var(--blue-xlt); }
.modal-price span { font-size: 0.85rem; color: var(--sub); font-family: 'Josefin Sans', sans-serif; font-weight: 400; }
.modal-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.modal-loc { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--sub); }
.modal-loc svg { width: 14px; height: 14px; }
.modal-specs { display: flex; gap: 24px; flex-wrap: wrap; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.modal-spec { text-align: center; }
.modal-spec strong { display: block; font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.modal-spec span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sub); }
.modal-features h4 { font-family: 'Josefin Sans', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sub); margin-bottom: 14px; }
.features-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.feature-tag {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px;
  background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.2);
  font-size: 0.8rem; color: var(--blue-xlt);
}
.feature-tag svg { width: 13px; height: 13px; }
.modal-actions { display: flex; gap: 12px; }

/* ─── Mobile Nav ───────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(5,13,26,0.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Cinzel', serif; font-size: 1.5rem;
  color: var(--text); text-decoration: none; letter-spacing: 0.08em;
  transition: color 0.2s; cursor: pointer;
}
.mobile-menu a:hover { color: var(--blue-xlt); }

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-img img { height: 380px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .property-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .search-box { flex-direction: column; }
  .search-btn { width: 100%; }
  .search-btn .btn-primary { width: 100%; justify-content: center; }
  .section { padding: 72px 20px; }
  .modal-body { padding: 20px; }
  .modal-gallery { height: 240px; }
  .modal-specs { gap: 16px; }
  .modal-price { font-size: 1.5rem; }
  .hero-stats { gap: 28px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { text-align: center; justify-content: center; }
  .cta-btns { justify-content: center; }
}

/* ─── Animations ───────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, .fade-in { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .scroll-line { animation: none; }
  .hero-badge span { animation: none; }
}
