/* ============================================================
   Prestige Emlak - Ana Stil Dosyası
   ============================================================ */

:root {
  --gold:       #c9a96e;
  --gold-dark:  #a8843f;
  --dark:       #1a1a2e;
  --dark2:      #16213e;
  --text:       #2d2d2d;
  --text-light: #666;
  --text-muted: #999;
  --border:     #e8e8e8;
  --bg-light:   #f8f7f4;
  --bg-white:   #ffffff;
  --success:    #22c55e;
  --error:      #ef4444;
  --warning:    #f59e0b;
  --info:       #3b82f6;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 2px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.12);
  --transition: all .25s ease;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', system-ui, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg-white); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: var(--font-body); }
ul { list-style: none; }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ---- Topbar ---- */
.topbar { background: var(--dark); color: rgba(255,255,255,.75); font-size: .82rem; padding: .5rem 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.topbar-left, .topbar-right { display: flex; gap: 1.25rem; align-items: center; }
.topbar-link { color: rgba(255,255,255,.75); transition: var(--transition); }
.topbar-link:hover { color: var(--gold); }
.topbar-link svg { vertical-align: middle; margin-right: .3rem; }

/* ---- Header ---- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--dark); }
.logo-icon { color: var(--gold); font-size: 1.1rem; }
.logo-text em { font-style: italic; color: var(--gold); }
.logo-img { height: 44px; width: auto; object-fit: contain; }

.nav { display: flex; align-items: center; gap: .15rem; }
.nav-link {
  padding: .5rem .85rem; border-radius: 6px;
  font-size: .92rem; font-weight: 500; color: var(--text);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(201,169,110,.08); }
.nav-btn {
  margin-left: .5rem; padding: .5rem 1.25rem;
  background: var(--dark); color: #fff; border-radius: 8px;
  font-size: .9rem; font-weight: 600;
  transition: var(--transition);
}
.nav-btn:hover { background: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* ---- Flash ---- */
.flash { padding: .85rem 1.25rem; font-size: .9rem; font-weight: 500; text-align: center; }
.flash-error { background: #fef2f2; color: #b91c1c; border-bottom: 2px solid #f87171; }
.flash-success { background: #f0fdf4; color: #15803d; border-bottom: 2px solid #4ade80; }

/* ---- Hero ---- */
.hero { position: relative; min-height: 620px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,.8) 0%, rgba(26,26,46,.5) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 4rem 0; }
.hero-eyebrow { display: inline-block; background: var(--gold); color: #fff; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .85rem; border-radius: 20px; margin-bottom: 1rem; }
.hero-title { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 1rem; }
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; }

/* Search Box */
.search-box { background: rgba(255,255,255,.97); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-lg); }
.search-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.search-select, .search-input {
  flex: 1; min-width: 140px;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .92rem; color: var(--text);
  background: var(--bg-white);
  transition: var(--transition);
}
.search-select:focus, .search-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,.15); }
.search-btn {
  padding: .75rem 1.75rem;
  background: var(--gold); color: #fff;
  border: none; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: .5rem;
  transition: var(--transition); white-space: nowrap;
}
.search-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ---- Sections ---- */
.section { padding: 5rem 0; }
.bg-light { background: var(--bg-light); }
.bg-dark  { background: var(--dark); }
.bg-accent { background: var(--gold); }

.section-head { text-align: center; margin-bottom: 3rem; }
.section-label { display: inline-block; color: var(--gold); font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .6rem; }
.section-title { font-family: var(--font-head); font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--dark); margin-bottom: .75rem; }
.section-desc { color: var(--text-light); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ---- Property Cards ---- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.prop-card {
  background: var(--bg-white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: var(--transition); display: flex; flex-direction: column;
}
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prop-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.prop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.prop-card:hover .prop-card-img img { transform: scale(1.05); }
.prop-card-img-placeholder { width: 100%; height: 100%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 2.5rem; }
.prop-badge {
  position: absolute; top: .75rem; left: .75rem;
  padding: .3rem .75rem; border-radius: 20px; font-size: .78rem; font-weight: 700;
}
.badge-satilik { background: var(--dark); color: #fff; }
.badge-kiralik { background: var(--gold); color: #fff; }
.prop-featured-badge {
  position: absolute; top: .75rem; right: .75rem;
  background: #f59e0b; color: #fff;
  padding: .25rem .6rem; border-radius: 20px; font-size: .72rem; font-weight: 700;
}
.prop-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.prop-location { display: flex; align-items: center; gap: .3rem; color: var(--text-muted); font-size: .83rem; margin-bottom: .5rem; }
.prop-location svg { flex-shrink: 0; }
.prop-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: .75rem; line-height: 1.35; flex: 1; }
.prop-title a:hover { color: var(--gold); }
.prop-price { font-size: 1.25rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; }
.prop-features { display: flex; gap: .75rem; flex-wrap: wrap; padding-top: .75rem; border-top: 1px solid var(--border); }
.prop-feat { display: flex; align-items: center; gap: .3rem; font-size: .82rem; color: var(--text-light); }

/* ---- Steps ---- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.step-card { background: var(--bg-white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); position: relative; border: 1px solid var(--border); }
.step-num { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: rgba(201,169,110,.2); line-height: 1; margin-bottom: .75rem; }
.step-card h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: .5rem; color: var(--dark); }
.step-card p { color: var(--text-light); font-size: .93rem; }

/* ---- Why Us ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-image { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--gold); color: #fff; padding: 1rem 1.5rem; border-radius: var(--radius-sm);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.why-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; }
.why-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.why-feat { display: flex; gap: 1rem; }
.feat-icon { width: 28px; height: 28px; background: rgba(201,169,110,.15); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 700; flex-shrink: 0; margin-top: .1rem; }
.why-feat strong { display: block; margin-bottom: .2rem; color: var(--dark); }
.why-feat p { color: var(--text-light); font-size: .9rem; margin: 0; }

/* ---- Stats ---- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { padding: 1rem; }
.stat-num { display: block; font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.stat-label { color: rgba(255,255,255,.75); font-size: .9rem; margin-top: .25rem; }

/* ---- Partners ---- */
.partners-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.partner-logo {
  background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 1rem 2rem; font-size: .9rem; font-weight: 600; color: var(--text-light);
  transition: var(--transition); cursor: default;
}
.partner-logo:hover { border-color: var(--gold); color: var(--gold); }
.partner-logo img { height: 36px; width: auto; object-fit: contain; filter: grayscale(1); transition: var(--transition); }
.partner-logo:hover img { filter: grayscale(0); }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: #fff;
  padding: .8rem 2rem; border: none; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,169,110,.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--gold);
  padding: .75rem 1.75rem; border: 2px solid var(--gold); border-radius: var(--radius-sm);
  font-size: .93rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: .75rem;
  background: #25d366; color: #fff;
  padding: 1rem 2.5rem; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 700; transition: var(--transition);
}
.btn-whatsapp:hover { background: #1ea855; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.btn-full { width: 100%; justify-content: center; }

/* ---- WhatsApp FAB ---- */
.whatsapp-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); }

/* ---- Page Hero Small ---- */
.page-hero-small {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero-small h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 700; color: #fff; margin-bottom: .5rem; }
.page-hero-small p { color: rgba(255,255,255,.7); font-size: 1.05rem; }

/* ---- Listings Layout ---- */
.listings-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; padding: 2.5rem 0 4rem; }
.filters-panel { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; height: fit-content; position: sticky; top: 90px; }
.filter-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.filter-group { margin-bottom: 1rem; }
.filter-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.filter-input {
  width: 100%; padding: .65rem .9rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .9rem; color: var(--text); background: var(--bg-white);
  transition: var(--transition);
}
.filter-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,.12); }

.listings-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.result-count { font-size: .9rem; color: var(--text-light); }
.map-toggle-btn {
  display: flex; align-items: center; gap: .4rem;
  padding: .55rem 1.1rem; background: var(--dark); color: #fff;
  border: none; border-radius: var(--radius-sm); font-size: .88rem;
  cursor: pointer; transition: var(--transition);
}
.map-toggle-btn:hover { background: var(--gold); }

.no-results { text-align: center; padding: 4rem 2rem; }
.no-results-icon { font-size: 3rem; margin-bottom: 1rem; }
.no-results h3 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: .5rem; }
.no-results p { color: var(--text-light); }
.hidden { display: none !important; }

/* ---- Map ---- */
.map-layout { display: flex; height: calc(100vh - 130px); }
.map-sidebar { width: 360px; flex-shrink: 0; display: flex; flex-direction: column; border-right: 1px solid var(--border); overflow: hidden; }
.map-sidebar-head { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.map-sidebar-head h3 { font-family: var(--font-head); font-size: 1.05rem; }
.back-btn { font-size: .85rem; color: var(--gold); font-weight: 600; cursor: pointer; background: none; border: none; }
.map-filters { padding: .75rem 1rem; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: .5rem; }
.map-listings-list { flex: 1; overflow-y: auto; padding: .75rem; display: flex; flex-direction: column; gap: .75rem; }
.map-list-card { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; transition: var(--transition); }
.map-list-card:hover, .map-list-card.active { border-color: var(--gold); box-shadow: 0 2px 12px rgba(201,169,110,.2); }
.map-list-card-inner { display: flex; gap: .75rem; padding: .75rem; }
.map-card-thumb { width: 80px; height: 60px; object-fit: cover; border-radius: 6px; flex-shrink: 0; background: var(--bg-light); }
.map-card-info h4 { font-size: .88rem; font-weight: 600; color: var(--dark); line-height: 1.3; margin-bottom: .25rem; }
.map-card-price { font-size: .9rem; font-weight: 700; color: var(--gold); }
.map-card-loc { font-size: .78rem; color: var(--text-muted); }

/* Leaflet popup */
.leaflet-popup-content-wrapper { border-radius: var(--radius-sm) !important; }
.map-popup { min-width: 220px; }
.map-popup img { width: 100%; height: 140px; object-fit: cover; border-radius: 6px; margin-bottom: .5rem; }
.map-popup h3 { font-size: .92rem; font-weight: 600; color: var(--dark); margin-bottom: .25rem; }
.map-popup .price { color: var(--gold); font-weight: 700; font-size: 1rem; }
.map-popup a { display: inline-block; margin-top: .5rem; color: var(--gold); font-size: .85rem; font-weight: 600; }

/* ---- Detail ---- */
.detail-wrap { padding: 2.5rem 0 4rem; }
.detail-breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text-muted); margin-bottom: 1.5rem; flex-wrap: wrap; }
.detail-breadcrumb a { color: var(--gold); }
.detail-breadcrumb svg { flex-shrink: 0; }

.detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }

/* Galeri */
.detail-gallery { margin-bottom: 2rem; }
.gallery-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; cursor: zoom-in; margin-bottom: .75rem; background: var(--bg-light); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: .5rem; }
.gallery-thumb { aspect-ratio: 4/3; border-radius: 6px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-more { position: relative; }
.gallery-more-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; border-radius: 6px; font-size: 1.1rem; }

/* Detail meta */
.detail-meta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.detail-meta-item { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--text-muted); background: var(--bg-light); padding: .4rem .9rem; border-radius: 20px; }

.detail-title { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.detail-location { display: flex; align-items: center; gap: .4rem; color: var(--text-light); margin-bottom: 1.25rem; }
.detail-price { font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 1.5rem; }
.detail-price-sub { font-size: .9rem; font-weight: 400; color: var(--text-muted); }

/* Özellikler tablosu */
.features-table { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 2rem; }
.feat-row { display: contents; }
.feat-key, .feat-val { padding: .65rem .9rem; font-size: .9rem; }
.feat-key { background: var(--bg-light); color: var(--text-light); font-weight: 500; border-bottom: 1px solid var(--border); }
.feat-val { color: var(--text); border-bottom: 1px solid var(--border); font-weight: 500; }

.features-icons { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.feat-icon-item { display: flex; align-items: center; gap: .4rem; background: var(--bg-light); padding: .5rem .9rem; border-radius: 20px; font-size: .85rem; font-weight: 500; color: var(--dark); }
.feat-icon-item.has { color: var(--success); }

/* Detay sidebar */
.detail-sidebar { position: sticky; top: 90px; }
.detail-contact-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); margin-bottom: 1.25rem; }
.agent-card { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.agent-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: var(--bg-light); flex-shrink: 0; }
.agent-name { font-weight: 600; color: var(--dark); }
.agent-title { font-size: .85rem; color: var(--text-muted); }
.contact-btns { display: flex; flex-direction: column; gap: .6rem; }
.btn-call { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .8rem; background: var(--dark); color: #fff; border-radius: var(--radius-sm); font-weight: 600; font-size: .93rem; transition: var(--transition); }
.btn-call:hover { background: var(--dark2); }
.btn-wa { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .8rem; background: #25d366; color: #fff; border-radius: var(--radius-sm); font-weight: 600; font-size: .93rem; transition: var(--transition); }
.btn-wa:hover { background: #1ea855; }

.share-btns { display: flex; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.share-btn { flex: 1; padding: .55rem; text-align: center; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: .82rem; color: var(--text-light); transition: var(--transition); cursor: pointer; }
.share-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Lightbox */
.lightbox-overlay { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.92); justify-content: center; align-items: center; }
.lightbox-overlay.active { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 80vh; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: none; color: #fff; font-size: 2rem; padding: .75rem 1rem; cursor: pointer; border-radius: 6px; transition: var(--transition); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.3); }

/* ---- Forms ---- */
.form-page-wrap { padding: 3rem 0 5rem; max-width: 760px; margin: 0 auto; }
.form-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.form-card h2 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.form-intro { color: var(--text-light); font-size: .95rem; margin-bottom: 1.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
.form-input {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .93rem; color: var(--text); background: var(--bg-white);
  transition: var(--transition);
}
.form-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,.12); }
.form-input.error { border-color: var(--error); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-error-msg { color: var(--error); font-size: .82rem; margin-top: .3rem; }
.form-check { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: 1rem; }
.form-check input[type="checkbox"] { width: 17px; height: 17px; flex-shrink: 0; margin-top: .1rem; accent-color: var(--gold); cursor: pointer; }
.form-check label { font-size: .88rem; color: var(--text-light); cursor: pointer; }
.form-check a { color: var(--gold); text-decoration: underline; }

/* ---- Contact Page ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; padding: 3rem 0 5rem; align-items: start; }
.contact-info h3 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--dark); }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.contact-item strong { display: block; font-size: .9rem; color: var(--dark); margin-bottom: .15rem; }
.contact-item p, .contact-item a { color: var(--text-light); font-size: .93rem; line-height: 1.5; }
.contact-item a:hover { color: var(--gold); }

/* ---- Success Page ---- */
.success-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 3rem 1rem; }
.success-card { text-align: center; max-width: 480px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 3rem 2rem; box-shadow: var(--shadow); }
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.success-card h2 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: .75rem; color: var(--dark); }
.success-card p { color: var(--text-light); margin-bottom: 2rem; }

/* ---- Legal ---- */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 3rem 0 5rem; }
.legal-wrap h2 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 1.5rem; color: var(--dark); }
.legal-wrap h3 { font-family: var(--font-head); font-size: 1.25rem; margin: 1.75rem 0 .75rem; color: var(--dark); }
.legal-wrap p, .legal-wrap li { color: var(--text-light); line-height: 1.8; margin-bottom: .75rem; }
.legal-wrap ul { padding-left: 1.5rem; list-style: disc; }

/* ---- Footer ---- */
.footer { background: var(--dark); color: rgba(255,255,255,.8); padding: 4rem 0 0; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 3rem; }
.footer-col {}
.footer-about {}
.footer-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-desc { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }
.footer-heading { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: .3rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .65rem; color: rgba(255,255,255,.65); font-size: .88rem; }
.footer-contact-list svg { flex-shrink: 0; margin-top: .15rem; color: var(--gold); }
.footer-contact-list a { color: rgba(255,255,255,.65); }
.footer-contact-list a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: .6rem; flex-wrap: wrap; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); color: rgba(255,255,255,.75); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-btn:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 3rem; padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-bottom-inner a { color: rgba(255,255,255,.5); }
.footer-bottom-inner a:hover { color: var(--gold); }

/* ---- Pagination ---- */
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.page-btn {
  padding: .55rem .9rem; border: 1.5px solid var(--border); border-radius: 6px;
  font-size: .88rem; font-weight: 500; color: var(--text);
  background: var(--bg-white); cursor: pointer; transition: var(--transition);
  text-decoration: none; display: inline-block;
}
.page-btn:hover, .page-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.page-btn.disabled { opacity: .4; pointer-events: none; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .listings-layout { grid-template-columns: 240px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
}

@media (max-width: 768px) {
  .listings-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; }
  .topbar-right { display: none; }
  .nav { display: none; flex-direction: column; background: #fff; position: absolute; top: 72px; left: 0; right: 0; padding: 1rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .map-layout { flex-direction: column; height: auto; }
  .map-sidebar { width: 100%; max-height: 260px; }
  #mapContainer { height: 400px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .why-grid { gap: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .search-row { flex-direction: column; }
  .search-select, .search-input, .search-btn { width: 100%; min-width: unset; }
  .hero { min-height: 520px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
}
