/* ===================== DİDİM SATILIK - KURUMSAL TASARIM ===================== */
:root {
  --primary: #0d1b2a;
  --primary-dark: #050a10;
  --primary-light: #1b3a4b;
  --accent: #415a77;
  --gold: #d4a853;
  --gold-dark: #c4922d;
  --gold-light: #e8c97a;
  --copper: #b87333;
  --text: #1a1a2e;
  --text-light: #4a5568;
  --bg: #ffffff;
  --bg-alt: #fafbfc;
  --bg-warm: #fdfcfa;
  --border: #e2e8f0;
  --border-light: #edf2f7;
  --success: #2d6a4f;
  --shadow-xs: 0 1px 2px rgba(13,27,42,0.04);
  --shadow-sm: 0 2px 6px rgba(13,27,42,0.06);
  --shadow-md: 0 4px 16px rgba(13,27,42,0.08);
  --shadow-lg: 0 8px 32px rgba(13,27,42,0.10);
  --shadow-xl: 0 16px 48px rgba(13,27,42,0.14);
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --transition: 0.2s ease;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; margin-bottom: 16px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.center { text-align: center; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--primary-dark);
  border: none;
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212,168,83,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-dark {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}
.btn-dark:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 10px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-left span,
.topbar-left a {
  margin-right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-left i { color: var(--gold); font-size: 12px; }
.topbar-left a:hover { color: var(--gold); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-right a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  transition: all var(--transition);
  font-size: 13px;
}

.topbar-right a:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

.lang {
  font-weight: 600;
  color: var(--gold);
  margin-left: 8px;
  font-size: 12px;
}

/* ===================== HEADER ===================== */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

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

.logo-mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 26px;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.logo-light .logo-text { color: #fff; }
.logo-light .logo-text small { color: var(--gold-light); }
.logo-light .logo-mark { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); }

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav a:hover::after,
.nav a.active::after { width: 100%; }

.nav a:hover,
.nav a.active { color: var(--primary); }

.header-cta {
  padding: 10px 20px;
  font-size: 13px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: var(--primary-dark);
  color: #fff;
  padding: 120px 0 160px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,10,16,0.97) 0%, rgba(13,27,42,0.85) 40%, rgba(27,58,75,0.7) 100%),
    url('background.webp') center/cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 1;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: left;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stats > div,
.hero-stats > a {
  display: flex;
  flex-direction: column;
}

.hero-stats > a:hover strong {
  color: var(--gold-light);
}

.hero-stats strong {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stats span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===================== CATEGORIES ===================== */
.categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: -70px;
  position: relative;
  z-index: 5;
  margin-bottom: 80px;
}

.cat-card {
  background: var(--bg);
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width var(--transition);
}

.cat-card:hover::before {
  width: 40px;
}

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

.cat-card i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 14px;
  opacity: 0.8;
  transition: all var(--transition);
}

.cat-card:hover i {
  color: var(--gold);
  opacity: 1;
}

.cat-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
}

.cat-card span {
  font-size: 13px;
  color: var(--text-light);
}

/* ===================== LISTINGS ===================== */
.listings {
  padding: 0 24px 100px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  padding: 10px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

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

.chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

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

/* CARD */
.card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

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

.badge {
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
}

.badge.satilik { background: #27ae60; }
.badge.kiralik { background: #3498db; }
.badge.firsat { background: #c0392b; }

.card-ref {
  position: absolute;
  top: 12px;
  right: 12px;
  min-width: 44px;
  height: 32px;
  padding: 0 10px;
  background: rgba(255,255,255,0.95);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  z-index: 2;
}

.card-photos {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-body {
  padding: 20px;
}

.card-price {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.card-price span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
}

.card:hover .card-price {
  color: var(--gold-dark);
}

.card-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}

.card-loc {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-loc i { color: var(--gold); font-size: 12px; }

.card-features {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
}

.card-features div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-features i {
  color: var(--gold);
  font-size: 12px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
}

.pagination a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.pagination .active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Empty State */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  color: var(--text-light);
}

.empty-state i {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}

.empty-state h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

/* ===================== WHY SECTION ===================== */
.why {
  background: var(--bg-alt);
  padding: 100px 0;
}

.why h2 { margin-bottom: 16px; }

.seo-copy {
  max-width: 700px;
  margin: 0 auto 16px;
  color: var(--text-light);
  line-height: 1.7;
  text-align: center;
}

.seo-copy.sales-proof {
  color: var(--text);
  font-weight: 500;
  margin-bottom: 48px;
}

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

.why-card {
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-md);
}

.why-card h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===================== VIDEOS ===================== */
.home-videos {
  padding: 100px 24px;
}

.section-intro {
  max-width: 500px;
  color: var(--text-light);
  line-height: 1.7;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.video-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--primary-dark);
}

.video-frame-detail {
  border-radius: var(--radius);
  overflow: hidden;
}

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

.youtube-placeholder {
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
  cursor: pointer;
}

.youtube-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background var(--transition);
}

.youtube-placeholder:hover::after {
  background: rgba(0,0,0,0.2);
}

.youtube-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.youtube-placeholder:hover img {
  transform: scale(1.03);
}

.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all var(--transition);
}

.youtube-placeholder:hover .youtube-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.youtube-play i { margin-left: 3px; }

.video-body {
  padding: 20px;
}

.video-body span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.video-body h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.video-body a {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.video-body a:hover { color: var(--gold-dark); }

/* ===================== AREAS ===================== */
.areas {
  padding: 100px 24px;
  background: var(--bg-alt);
}

.areas .section-head { align-items: flex-start; }
.areas-title-line { color: var(--gold); }

.site-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.site-overview > div {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}

.site-overview > div:hover {
  border-color: var(--gold);
}

.site-overview i {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 12px;
}

.site-overview strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.site-overview span {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

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

.area-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.area-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.area-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.area-card h3 {
  font-size: 22px;
}

.area-card-top span {
  flex-shrink: 0;
  background: var(--bg-dark);
  color: var(--gold-dark);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.area-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-dark);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
}

.area-tags i {
  color: var(--gold);
  font-size: 10px;
}

/* ===================== SEO CONTENT ===================== */
.seo-content {
  padding: 80px 24px;
  background: var(--bg);
}

.seo-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.seo-block h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.seo-block p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ===================== DETAIL VIEW ===================== */
.detail-wrap {
  padding: 40px 24px 100px;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin-bottom: 24px;
  transition: all var(--transition);
}

.detail-back:hover {
  background: var(--primary);
  color: #fff;
}

.detail-header { margin-bottom: 28px; }

.detail-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.detail-badges {
  display: flex;
  gap: 8px;
}

.detail-listing-no {
  font-size: 13px;
  color: var(--text-light);
}

.detail-listing-no strong {
  color: var(--primary);
  font-weight: 600;
}

.detail-title-block { max-width: 900px; }

.detail-header h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.detail-loc {
  font-size: 15px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-loc i { color: var(--gold); }

.detail-price-wrap { margin-top: 16px; }

.detail-price {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: -0.02em;
}

.detail-price small {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 2px;
}

/* Gallery */
.gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

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

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary);
  transition: all var(--transition);
  z-index: 3;
}

.gallery-nav:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

.gallery-nav-prev { left: 16px; }
.gallery-nav-next { right: 16px; }

.thumb-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.thumb-strip a {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.thumb-strip a:hover,
.thumb-strip a.active {
  border-color: var(--gold);
}

.thumb-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Detail Body */
.detail-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
}

.detail-section {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.detail-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.detail-section p {
  line-height: 1.8;
  color: var(--text);
}

.property-description {
  white-space: normal;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.specs > div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}

.specs > div span:first-child { color: var(--text-light); }
.specs > div span:last-child { font-weight: 500; color: var(--text); }

.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.features-list > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.features-list i {
  color: var(--success);
  font-size: 14px;
}

/* Contact Card */
.contact-card {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-xl);
}

.contact-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 4px;
}

.agent {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.agent-avatar {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--primary-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
}

.agent-info strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

.agent-info span {
  font-size: 11px;
  opacity: 0.7;
  letter-spacing: 1px;
}

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

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: all var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-form button {
  margin-top: 4px;
}

.contact-direct {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.contact-direct a {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}

.contact-direct a:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

.contact-direct i { margin-right: 6px; }

.form-note {
  font-size: 11px;
  opacity: 0.6;
  margin-top: 10px;
}

/* ===================== FOOTER ===================== */
.footer {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer h3 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.footer ul { list-style: none; }

.footer ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

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

.footer-about {
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.7;
}

.social {
  display: flex;
  gap: 8px;
}

.social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
}

.social a:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-list i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  font-size: 13px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===================== WHATSAPP FAB ===================== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all var(--transition);
}

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

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .categories { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .site-overview { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-body { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
}

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .nav { display: none; }
  h2 { font-size: 28px; }
  .hero { padding: 60px 0 100px; }
  .hero h1 { font-size: 32px; }
  .hero-stats { gap: 12px; }
  .hero-stats > div,
  .hero-stats > a { padding: 16px; }
  .hero-stats strong { font-size: 32px; }
  .grid { grid-template-columns: 1fr; }
  .categories { grid-template-columns: repeat(2, 1fr); margin-top: -50px; }
  .areas-grid { grid-template-columns: 1fr; }
  .site-overview { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .detail-header h1 { font-size: 26px; }
  .detail-price { font-size: 28px; }
  .gallery img { height: 280px; }
  .specs { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .section-intro { max-width: 100%; }
}

@media (max-width: 480px) {
  .categories { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .area-card { min-height: auto; }
}

/* Performance */
@supports (content-visibility: auto) {
  .listings, .why, .home-videos, .areas, .footer, .detail-wrap, .seo-content {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
  }
}
