/* ═══════════════════════════════════════════════════════════════
   ELIF 4 EMLAK — World-Class Luxury Real Estate
   Designed with Sotheby's-level precision.
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ── Preloader ─────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: #0c0c14;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: #f0ece4; letter-spacing: 1px;
  animation: fadeIn 0.8s ease both;
}
.preloader-logo span { color: #c8a96e; }
.preloader-bar {
  width: 180px; height: 2px; margin: 20px auto 0;
  background: rgba(200,169,110,0.15); border-radius: 2px; overflow: hidden;
}
.preloader-fill {
  width: 100%; height: 100%;
  background: linear-gradient(90deg, #c8a96e, #e0c992);
  border-radius: 2px;
  animation: preloaderSlide 1s ease-in-out infinite;
  transform-origin: left;
}
@keyframes preloaderSlide {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --bg-primary: #151522;
  --bg-secondary: #1d1d2f;
  --bg-elevated: #26263d;
  --gold: #c8a96e;
  --gold-light: #e0c992;
  --gold-dark: #a68b4b;
  --text-primary: #f5f0e8;
  --text-secondary: #a8a8c0;
  --text-dim: #787898;
  --glass: rgba(29, 29, 47, 0.85);
  --glass-border: rgba(200, 169, 110, 0.16);
  --card-bg: rgba(38, 38, 61, 0.45);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-luxury);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(200, 169, 110, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, #1b1b2b 0%, #131320 100%),
    linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
  background-size: 100% 100%, 60px 60px, 60px 60px;
  background-attachment: scroll, fixed, fixed;
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ── Interactive Cursor Spotlight Glow ────────────────────── */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.12) 0%, rgba(200, 169, 110, 0.03) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: left, top;
}

body:hover .cursor-glow {
  opacity: 1;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-base); }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; outline: none; }

/* ── Custom Scrollbar ───────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
}

::selection {
  background: rgba(200, 169, 110, 0.3);
  color: var(--text-primary);
}

/* ── Utility: Gold Gradient Text ────────────────────────────── */
.gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════════════════════════════
   1. NAVBAR
   ════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.navbar.scrolled {
  padding: 12px 40px;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 75px;
  width: auto;
  transition: all 0.4s var(--ease-luxury);
}

.navbar.scrolled .nav-logo img {
  height: 52px;
}

.nav-logo:hover img { transform: scale(1.05); }

.nav-logo-text {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-base);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.4s var(--ease-luxury);
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(200, 169, 110, 0.2);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.35);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ════════════════════════════════════════════════════════════════
   2. HERO
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('meydan-hero.jpg') center/cover no-repeat;
  animation: heroZoom 20s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(12, 12, 20, 0.7) 0%,
      rgba(12, 12, 20, 0.25) 35%,
      rgba(12, 12, 20, 0.15) 50%,
      rgba(12, 12, 20, 0.5) 75%,
      rgba(12, 12, 20, 0.95) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin-bottom: 28px;
  animation: badgePulse 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
  background: rgba(200, 169, 110, 0.05);
}

.hero h1,
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.hero-stat {
  padding: 0 36px;
  text-align: center;
  position: relative;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-dark), transparent);
}

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Hero Search Bar */
.hero-search {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  z-index: 3;
}

.search-row {
  display: flex;
  align-items: stretch;
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.search-group {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid var(--glass-border);
}

.search-group:last-of-type { border-right: none; }

.search-group label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 4px;
}

.search-group select,
.search-group input {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.88rem;
  padding: 4px 0;
}

.search-group select option { background: var(--bg-elevated); }

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: all var(--transition-base);
}

.search-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 30px rgba(200, 169, 110, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
}

.scroll-indicator svg,
.scroll-indicator i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ════════════════════════════════════════════════════════════════
   3. SECTIONS — Common
   ════════════════════════════════════════════════════════════════ */
.section {
  padding: 120px 0;
  position: relative;
}

/* Ambient glow effect for sections to prevent flat/dead dark background */
#deger::before,
#ekip::before,
#mahalle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.12) 0%, transparent 70%);
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  animation: pulseGlow 12s infinite alternate ease-in-out;
}

#mahalle::before {
  background: radial-gradient(circle, rgba(166, 139, 75, 0.09) 0%, transparent 70%);
  animation-duration: 15s;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.9; }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-label::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════
   4. REVEAL ANIMATIONS
   ════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-luxury);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s var(--ease-luxury);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s var(--ease-luxury);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s var(--ease-luxury);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ════════════════════════════════════════════════════════════════
   5. LISTINGS
   ════════════════════════════════════════════════════════════════ */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.listing-card {
  background: var(--card-bg);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease-luxury);
  position: relative;
}

.listing-card:hover {
  border-color: var(--glass-border);
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(200, 169, 110, 0.1);
}

.listing-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.listing-card:hover .listing-img img {
  transform: scale(1.08);
}

.listing-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.listing-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
}

.listing-score {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 4px 10px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* Listing Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-base);
  cursor: pointer;
}

.slider-arrow.prev { left: 12px; }
.slider-arrow.next { right: 12px; }

.listing-card:hover .slider-arrow { opacity: 1; }
.slider-arrow:hover {
  background: rgba(200, 169, 110, 0.2);
  border-color: var(--gold);
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 6px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.slider-dot.active {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(200, 169, 110, 0.5);
  transform: scale(1.3);
}

/* Listing Body */
.listing-body {
  padding: 20px;
}

.listing-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.listing-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  transition: color var(--transition-base);
}

.listing-card:hover .listing-title { color: var(--gold-light); }

.listing-location {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.listing-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.listing-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}

.listing-feat:hover { background: rgba(200, 169, 110, 0.06); }

.listing-feat-icon {
  font-size: 0.85rem;
  color: var(--gold);
}

.listing-feat span {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.listing-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.feature-chip {
  padding: 3px 10px;
  font-size: 0.65rem;
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.feature-chip:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.listing-growth {
  font-size: 0.75rem;
  color: #4ade80;
  font-weight: 500;
}

.compare-checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-dim);
  cursor: pointer;
  transition: color var(--transition-base);
}

.compare-checkbox-label:hover { color: var(--text-secondary); }

.compare-checkbox {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--text-dim);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}

.compare-checkbox:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.compare-checkbox:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--bg-primary);
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════════
   6. ASGARDIA SECTION
   ════════════════════════════════════════════════════════════════ */
#asgardia {
  background-size: cover;
  background-position: center;
  position: relative;
}

#asgardia::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    rgba(12, 12, 20, 0.6) 30%,
    rgba(12, 12, 20, 0.6) 70%,
    var(--bg-primary) 100%
  );
}

#asgardia .container {
  position: relative;
  z-index: 1;
}

#asgardia .section-title,
#asgardia .section-subtitle {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

/* ════════════════════════════════════════════════════════════════
   7. NEIGHBORHOOD
   ════════════════════════════════════════════════════════════════ */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.neighborhood-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.5s var(--ease-luxury);
}

.neighborhood-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  border-color: rgba(200, 169, 110, 0.25);
}

.score-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.score-bar {
  position: relative;
}

.score-bar label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.score-bar .bar-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 4px;
  width: 0;
  transition: width 1.2s var(--ease-luxury);
}

.score-fill.animated { /* JS toggles this class */ }

.neighborhood-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.overall-score {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(200, 169, 110, 0.05);
  box-shadow: 0 0 40px rgba(200, 169, 110, 0.1);
  transition: all var(--transition-slow);
}

.neighborhood-card:hover .overall-score {
  box-shadow: 0 0 60px rgba(200, 169, 110, 0.2);
  transform: scale(1.05);
}

.overall-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
}

.nearby-places {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.nearby-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.nearby-item:hover { color: var(--text-primary); }

.nearby-item i {
  color: var(--gold);
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
}

/* ════════════════════════════════════════════════════════════════
   8. FORECAST
   ════════════════════════════════════════════════════════════════ */
.forecast-container {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.forecast-header {
  padding: 28px 28px 0;
}

.forecast-tabs {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.forecast-tab {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 500;
  transition: all var(--transition-base);
  cursor: pointer;
}

.forecast-tab:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.forecast-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent;
  color: var(--bg-primary);
  font-weight: 600;
}

.chart-area {
  height: 300px;
  padding: 20px 28px;
  position: relative;
}

.forecast-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 0 28px 28px;
}

.forecast-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition-base);
}

.forecast-card:hover {
  background: rgba(200, 169, 110, 0.04);
  border-color: var(--glass-border);
}

/* ════════════════════════════════════════════════════════════════
   9. CALCULATOR
   ════════════════════════════════════════════════════════════════ */
.calc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
}

.calc-form,
.calc-results {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
  background: rgba(200, 169, 110, 0.03);
}

.form-group input::placeholder {
  color: var(--text-dim);
}

.calc-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(200, 169, 110, 0.2);
}

.calc-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 169, 110, 0.35);
}

.calc-btn:active { transform: translateY(-1px); }

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
}

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

.result-item span:first-child { color: var(--text-secondary); }
.result-item span:last-child { color: var(--text-primary); font-weight: 600; }

/* ════════════════════════════════════════════════════════════════
   10. ABOUT
   ════════════════════════════════════════════════════════════════ */
.about-grid {
  max-width: 800px;
  margin: 0 auto;
}

.about-content {
  margin-bottom: 48px;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.85;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.about-feat:hover {
  background: rgba(200, 169, 110, 0.04);
}

.about-feat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all var(--transition-base);
}

.about-feat:hover .about-feat-icon {
  background: var(--gold);
  color: var(--bg-primary);
  box-shadow: 0 0 24px rgba(200, 169, 110, 0.25);
}

.about-feat h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.about-feat p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════
   11. TEAM
   ════════════════════════════════════════════════════════════════ */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  flex: 1 1 300px;
  max-width: 340px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.5s var(--ease-luxury);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(200, 169, 110, 0.25);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 110, 0.06);
  color: var(--gold);
  font-size: 1.5rem;
  transition: all var(--transition-base);
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card:hover .team-avatar {
  box-shadow: 0 0 32px rgba(200, 169, 110, 0.25);
  transform: scale(1.05);
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-phone,
.team-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.team-phone {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
}

.team-phone:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(200, 169, 110, 0.06);
}

.team-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #25D366;
}

.team-whatsapp:hover {
  background: rgba(37, 211, 102, 0.18);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.15);
}

.team-icon {
  font-size: 0.95rem;
}

/* ════════════════════════════════════════════════════════════════
   12. CONTACT
   ════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: background var(--transition-base);
}

.contact-item:hover { background: rgba(200, 169, 110, 0.04); }

.contact-icon-wrapper {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 1rem;
  transition: transform var(--transition-base);
}

.contact-item:hover .contact-icon-wrapper { transform: scale(1.1); }

.contact-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-item a:hover { color: var(--gold-light); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  min-height: 360px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
  filter: brightness(0.85) contrast(1.1) saturate(0);
  transition: filter var(--transition-base);
}

.contact-map:hover iframe {
  filter: brightness(0.9) contrast(1.05) saturate(0.3);
}

/* ════════════════════════════════════════════════════════════════
   13. FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .nav-logo-text {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: all 0.3s ease;
  position: relative;
}

.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ════════════════════════════════════════════════════════════════
   14. COMPARE DRAWER
   ════════════════════════════════════════════════════════════════ */
.compare-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid var(--glass-border);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-luxury);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

.compare-drawer.open {
  transform: translateY(0);
}

.compare-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid var(--glass-border);
}

.compare-drawer-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
}

.close-compare-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  transition: all var(--transition-base);
}

.close-compare-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.compare-drawer-body {
  padding: 20px 28px;
  max-height: 400px;
  overflow-y: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.compare-table th {
  text-align: left;
  padding: 10px 12px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  border-bottom: 1px solid var(--glass-border);
  font-weight: 500;
}

.compare-table td {
  padding: 10px 12px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.compare-table tr:hover td {
  background: rgba(200, 169, 110, 0.03);
}

/* ════════════════════════════════════════════════════════════════
   15. LISTING MODAL
   ════════════════════════════════════════════════════════════════ */
.listing-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.listing-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.listing-modal {
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(40px) scale(0.96);
  transition: transform 0.5s var(--ease-luxury);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.listing-modal-overlay.active .listing-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  cursor: pointer;
}

.modal-close:hover {
  background: rgba(200, 169, 110, 0.2);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.modal-gallery {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 32px;
}

.modal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

/* ════════════════════════════════════════════════════════════════
   16. WHATSAPP FAB
   ════════════════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-base);
  text-decoration: none;
}

.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: fabPulse 2s ease-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ── Phone FAB (Mobile Only) ────────────────────────────────── */
.phone-fab {
  display: none;
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  font-size: 1.4rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(200, 169, 110, 0.35);
  transition: all var(--transition-base);
  text-decoration: none;
}

.phone-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(200, 169, 110, 0.4);
  animation: phonePulse 2s ease-out infinite;
}

.phone-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(200, 169, 110, 0.5);
}

@keyframes phonePulse {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { opacity: 0.3; }
  100% { transform: scale(1.15); opacity: 0; }
}

.mobile-nav-cta-li {
  display: none;
}
.mobile-nav-cta {
  display: none;
}

/* ════════════════════════════════════════════════════════════════
   17. SAHIBINDEN BUTTON
   ════════════════════════════════════════════════════════════════ */
.sahibinden-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #ffe800;
  color: #1a1a2e;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(255, 232, 0, 0.15);
}

.sahibinden-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 232, 0, 0.3);
}

.sahibinden-logo {
  padding: 10px 14px;
  font-weight: 800;
  border-right: 1px solid rgba(26, 26, 46, 0.15);
  font-size: 0.78rem;
  letter-spacing: -0.3px;
}

.sahibinden-btn span:last-child {
  padding: 10px 18px;
}

/* ════════════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ════════════════════════════════════════════════════════════════ */
@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.15); }
}

@keyframes badgePulse {
  0%, 100% {
    border-color: var(--glass-border);
    box-shadow: 0 0 0 0 rgba(200, 169, 110, 0);
  }
  50% {
    border-color: rgba(200, 169, 110, 0.3);
    box-shadow: 0 0 20px rgba(200, 169, 110, 0.08);
  }
}

@keyframes fabPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40%  { transform: translateX(-50%) translateY(8px); }
  60%  { transform: translateX(-50%) translateY(4px); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes counterUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤968px)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 968px) {
  .navbar {
    padding: 14px 20px;
  }

  .navbar .nav-cta {
    display: none !important;
  }

  .phone-fab {
    display: flex;
    bottom: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .mobile-nav-cta-li {
    display: block !important;
  }

  .mobile-nav-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary) !important;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(200, 169, 110, 0.3);
    margin-top: 16px;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background: var(--glass);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-luxury);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--text-primary);
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero h1, .hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }

  .hero-search {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 32px;
  }

  .search-row {
    flex-direction: column;
    border-radius: var(--radius-lg);
  }

  .search-group {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 16px;
  }

  .search-btn {
    padding: 16px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .section { padding: 80px 0; }

  .listings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .neighborhood-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { justify-content: center; }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤600px)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .hero h1, .hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .hero-subtitle { font-size: 0.9rem; }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero-stat {
    padding: 12px 0;
  }

  .hero-stat:not(:last-child)::after { display: none; }

  .hero-stat-value { font-size: 1.6rem; }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

  .listings-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 24px 20px 24px;
    margin: 0 -24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .listings-grid::-webkit-scrollbar {
    display: none;
  }

  .listings-grid .listing-card {
    flex: 0 0 290px;
    scroll-snap-align: center;
  }

  .listings-grid > div:not(.listing-card) {
    flex: 0 0 calc(100% - 48px);
    margin: 0 24px;
  }

  .listing-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    justify-content: center;
    max-width: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand p { margin: 0 auto; }

  .compare-drawer-body { padding: 12px 16px; }

  .modal-gallery { height: 240px; }
  .modal-body { padding: 20px; }

  .whatsapp-fab {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .navbar { padding: 12px 16px; }
  .nav-logo-text { font-size: 1.1rem; }
}

/* ════════════════════════════════════════════════════════════════
   PRINT STYLES
   ════════════════════════════════════════════════════════════════ */
@media print {
  .navbar,
  .whatsapp-fab,
  .hero-search,
  .scroll-indicator,
  .compare-drawer,
  .mobile-toggle,
  .nav-cta {
    display: none !important;
  }

  body {
    background: #fff;
    color: #1a1a1a;
    font-size: 11pt;
  }

  .hero { min-height: auto; padding: 40px 0; }
  .hero-bg { display: none; }
  .section { padding: 30px 0; }

  .listing-card,
  .neighborhood-card,
  .team-card,
  .calc-form,
  .calc-results {
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: none;
    break-inside: avoid;
  }
}

/* Footer links stack styling, icon styling & contact icon wrapper sizing */
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.btn-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}
.contact-icon-wrapper svg,
.contact-icon-wrapper i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

