/* ============================
   CSS CUSTOM PROPERTIES
   ============================ */
:root {
  --navy: #1B2B4B;
  --navy-dark: #111e35;
  --navy-light: #243558;
  --gold: #C9A96E;
  --gold-dark: #b8943e;
  --white: #ffffff;
  --grey-50: #f8f9fa;
  --grey-100: #f1f3f5;
  --grey-200: #e9ecef;
  --grey-300: #dee2e6;
  --grey-400: #ced4da;
  --grey-500: #adb5bd;
  --grey-600: #6c757d;
  --grey-700: #495057;
  --grey-800: #343a40;
  --grey-900: #212529;
  --text: #1a1a2e;
  --text-muted: #6c757d;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --transition: 0.25s ease;
  --nav-h: 68px;
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

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

/* ============================
   TYPOGRAPHY
   ============================ */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.25rem; font-weight: 600; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title { color: var(--navy); }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,169,110,0.4);
}
.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--grey-300);
  color: var(--grey-700);
}
.btn--ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.btn--full { width: 100%; }

/* ============================
   NAVBAR
   ============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  transition: color var(--transition);
  flex-shrink: 0;
}
.nav.scrolled .nav__logo { color: var(--navy); }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav.scrolled .nav__links a { color: var(--grey-700); }
.nav__links a:hover,
.nav.scrolled .nav__links a:hover { color: var(--gold); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 4px 12px;
  transition: all var(--transition);
  cursor: pointer;
}
.nav.scrolled .lang-toggle {
  color: var(--grey-600);
  border-color: var(--grey-300);
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
.lang-divider { opacity: 0.4; }
.lang-tr, .lang-en { transition: color var(--transition); }
.lang-tr.active, .lang-en.active { color: var(--gold); }

.nav__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav__menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition);
}
.nav.scrolled .nav__menu-btn span { background: var(--navy); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 24px;
  border-top: 1px solid var(--grey-200);
  box-shadow: var(--shadow);
}
.nav__mobile a {
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-100);
  color: var(--grey-700);
  font-weight: 500;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile.open { display: flex; }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, #2a4a7f 100%);
  overflow: hidden;
}
.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='%23C9A96E' fill-opacity='0.04'%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__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(201,169,110,0.08) 0%, transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
  max-width: 780px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero__title { color: var(--white); margin-bottom: 1rem; }
.hero__sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero__search { display: flex; flex-direction: column; gap: 16px; }

.search-box {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 6px 6px 6px 18px;
  box-shadow: var(--shadow-xl);
  gap: 12px;
  max-width: 640px;
}
.search-icon { width: 20px; height: 20px; color: var(--grey-400); flex-shrink: 0; }
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text);
  background: transparent;
  min-width: 0;
}
.search-box input::placeholder { color: var(--grey-400); }
.search-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.search-btn:hover { background: var(--gold-dark); }

.hero__quick-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.qf-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
}
.qf-btn:hover, .qf-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll-hint svg { width: 28px; height: 28px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================
   LISTINGS SECTION
   ============================ */
.listings-section { padding: 80px 0; background: var(--grey-50); }
.listings-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.result-count { font-size: 0.875rem; color: var(--text-muted); margin-top: 4px; }
.listings-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sort-wrap { display: flex; align-items: center; gap: 8px; }
.sort-label { font-size: 0.85rem; color: var(--grey-600); white-space: nowrap; }
.sort-wrap select {
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--grey-700);
  background: var(--white);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.sort-wrap select:focus { border-color: var(--navy); }

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition);
  position: relative;
  cursor: pointer;
}
.filter-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.filter-btn svg { width: 16px; height: 16px; }
.filter-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================
   PROPERTY GRID
   ============================ */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
}
.property-card.visible { opacity: 1; transform: translateY(0); }
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.property-card.visible:hover { transform: translateY(-4px); }

.card__image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--grey-100);
}
.card__image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.property-card:hover .card__image-wrap img { transform: scale(1.04); }

.card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.card__badge--gold { background: var(--gold); color: var(--navy); }

.card__transaction {
  position: absolute;
  top: 12px; right: 48px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.card__transaction--satilik { background: #16a34a; color: #fff; }
.card__transaction--kiralik { background: #2563eb; color: #fff; }

.card__fav {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
  border: none;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.card__fav:hover { background: var(--white); transform: scale(1.1); }
.card__fav svg { width: 16px; height: 16px; stroke: var(--grey-500); fill: none; transition: all var(--transition); }
.card__fav.active svg { stroke: #e11d48; fill: #e11d48; }

.card__body { padding: 16px 20px 20px; }
.card__title {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.card__location svg { width: 12px; height: 12px; flex-shrink: 0; }
.card__meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--grey-600);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.card__meta-item { display: flex; align-items: center; gap: 5px; }
.card__meta-item svg { width: 13px; height: 13px; }
.card__price { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.card__price-sub { font-size: 0.75rem; color: var(--text-muted); margin-left: 4px; }

.no-results {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ============================
   ABOUT
   ============================ */
.about-section { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image img { border-radius: var(--radius-xl); width: 100%; box-shadow: var(--shadow-lg); }
.about-content h2 { color: var(--navy); margin-bottom: 1.25rem; }
.about-content p { color: var(--grey-700); line-height: 1.8; margin-bottom: 2rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 2rem;
  padding: 24px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.75rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); }

/* ============================
   CONTACT
   ============================ */
.contact-section { padding: 100px 0; background: var(--grey-50); }
.contact-header { text-align: center; margin-bottom: 56px; }
.contact-header h2 { color: var(--navy); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item svg { width: 22px; height: 22px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.contact-item p, .contact-item a { font-size: 0.9rem; color: var(--grey-600); line-height: 1.5; }
.contact-item a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--grey-700); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer__brand { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer__brand-row { display: flex; align-items: center; gap: 10px; }
.footer__name { font-weight: 700; color: var(--white); font-size: 1rem; }
.footer__brand p { font-size: 0.85rem; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 0.85rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--gold); }
.footer__copy { font-size: 0.78rem; margin-top: 8px; }

/* ============================
   FILTER PANEL
   ============================ */
.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(2px);
}
.filter-overlay.open { opacity: 1; pointer-events: all; }

.filter-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}
.filter-panel.open { transform: translateX(0); }

.filter-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--grey-200);
  flex-shrink: 0;
}
.filter-panel__header h3 { color: var(--navy); }
.filter-panel__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  cursor: pointer;
}
.filter-panel__close svg { width: 20px; height: 20px; stroke: var(--grey-600); }
.filter-panel__close:hover { background: var(--grey-100); }

.filter-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.filter-group { display: flex; flex-direction: column; gap: 10px; }
.filter-group__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--grey-300);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--grey-600);
  transition: all var(--transition);
  cursor: pointer;
  background: none;
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip.active { background: var(--navy); border-color: var(--navy); color: var(--white); font-weight: 600; }

.range-inputs { display: flex; align-items: center; gap: 8px; }
.range-inputs input {
  flex: 1;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition);
  color: var(--text);
  min-width: 0;
}
.range-inputs input:focus { border-color: var(--navy); }
.range-sep { color: var(--grey-400); font-weight: 500; flex-shrink: 0; }

#neighbourhoodFilter {
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  cursor: pointer;
  width: 100%;
}
#neighbourhoodFilter:focus { border-color: var(--navy); }

.filter-panel__footer {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid var(--grey-200);
  flex-shrink: 0;
}
.filter-panel__footer .btn { flex: 1; }

/* ============================
   MODAL
   ============================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: scale(1); }

.modal__close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 10;
  transition: background var(--transition);
  cursor: pointer;
  border: none;
}
.modal__close svg { width: 18px; height: 18px; stroke: var(--grey-600); }
.modal__close:hover { background: var(--grey-100); }

.modal__gallery {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--grey-100);
}
.modal__gallery img { width: 100%; height: 100%; object-fit: cover; }

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
  border: none;
}
.gallery-nav:hover { background: var(--white); }
.gallery-nav svg { width: 18px; height: 18px; stroke: var(--navy); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.gallery-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}
.gallery-dot.active { background: var(--white); }

.modal__body { padding: 32px; }
.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.modal__title { font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.modal__price { font-size: 1.4rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: 24px;
}
.modal__meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--grey-700); }
.modal__meta-item svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; }
.modal__desc { font-size: 0.9rem; line-height: 1.8; color: var(--grey-700); margin-bottom: 24px; }
.modal__features-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.modal__features { display: flex; flex-wrap: wrap; gap: 8px; }
.modal__feature-tag {
  background: var(--grey-100);
  color: var(--grey-700);
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 500;
}
.modal__cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.modal__cta .btn { flex: 1; min-width: 140px; }
.btn--whatsapp { background: #25d366; color: white; }
.btn--whatsapp:hover { background: #1da851; transform: translateY(-1px); }

/* ============================
   WHATSAPP FLOAT
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 90;
  transition: all var(--transition);
}
.whatsapp-float:hover { background: #1da851; transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }
  .listings-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .modal__body { padding: 20px; }
  .modal__header { flex-direction: column; gap: 8px; }
  .whatsapp-float { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .listings-header { flex-direction: column; align-items: flex-start; }
  .listings-header__right { width: 100%; justify-content: space-between; }
  .contact-form { padding: 24px; }
  .about-stats { gap: 12px; }
}

@media (min-width: 600px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .listings-grid { grid-template-columns: repeat(3, 1fr); }
}
