/* ===================== 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: 'Manrope', sans-serif;
  --font-serif: 'Fraunces', 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;
  object-fit: contain;
  border-radius: var(--radius);
}

.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); }

.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('bg.jpg') 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;
}

.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;
  }
}

/* ===================== MODERN REFRESH 2026 ===================== */
:root {
  --primary:#0b1f33;
  --primary-dark:#061320;
  --primary-light:#173a56;
  --navy:#0b1f33;
  --accent:#0ea5a4;
  --accent-dark:#0b7473;
  --accent-soft:#d8f5f1;
  --gold:#f4b860;
  --gold-dark:#c77d25;
  --gold-light:#ffe0a3;
  --copper:#d46a3d;
  --success:#14805e;
  --text:#162230;
  --text-light:#5d6d7e;
  --muted:#6f7f8f;
  --bg:#fffdf8;
  --bg-alt:#f7f2e8;
  --bg-warm:#fbefe1;
  --bg-dark:#eef6f3;
  --light:#f6efe4;
  --border:rgba(17,39,61,.12);
  --border-light:rgba(17,39,61,.08);
  --line:rgba(17,39,61,.14);
  --shadow-xs:0 1px 2px rgba(6,19,32,.05);
  --shadow-sm:0 8px 24px rgba(6,19,32,.08);
  --shadow-md:0 18px 44px rgba(6,19,32,.11);
  --shadow-lg:0 28px 70px rgba(6,19,32,.16);
  --shadow-xl:0 36px 96px rgba(6,19,32,.22);
  --radius-sm:12px;
  --radius:16px;
  --radius-lg:24px;
  --radius-xl:34px;
  --transition:.24s cubic-bezier(.2,.8,.2,1);
  --font-sans:'Manrope',sans-serif;
  --font-serif:'Fraunces',serif;
}

body {
  min-height:100vh;
  background:
    radial-gradient(circle at 8% 5%, rgba(244,184,96,.22), transparent 28rem),
    radial-gradient(circle at 92% 20%, rgba(14,165,164,.16), transparent 24rem),
    linear-gradient(180deg,#fffaf1 0%,#fffdf8 42%,#f8f1e6 100%);
  color:var(--text);
  font-family:var(--font-sans);
  overflow-x:hidden;
}

body::before {
  content:'';
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background-image:linear-gradient(rgba(11,31,51,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(11,31,51,.035) 1px,transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.5),transparent 78%);
}

::selection { background:rgba(244,184,96,.45); color:var(--primary-dark); }
:focus-visible { outline:3px solid rgba(14,165,164,.34); outline-offset:3px; }

h1,h2,h3,h4,h5,h6 {
  font-family:var(--font-serif);
  font-weight:750;
  line-height:1.04;
  letter-spacing:-.045em;
}
h1 { font-size:clamp(42px,6vw,82px); }
h2 { font-size:clamp(32px,4.2vw,58px); }
h3 { font-size:clamp(22px,2.2vw,30px); }

.eyebrow,.hero-eyebrow,.cta-eyebrow {
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--accent-dark);
  font-size:11px;
  font-weight:800;
  letter-spacing:2.4px;
}
.eyebrow::before,.hero-eyebrow::before,.cta-eyebrow::before {
  content:'';
  width:28px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--gold),var(--accent));
}

.btn {
  min-height:46px;
  padding:13px 22px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:-.01em;
  transition:color var(--transition),background var(--transition),border-color var(--transition),transform var(--transition),box-shadow var(--transition);
}
.btn-primary {
  background:linear-gradient(135deg,var(--gold) 0%,#ffd58b 100%);
  color:var(--primary-dark);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 14px 34px rgba(199,125,37,.28);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 20px 42px rgba(199,125,37,.34); }
.btn-outline { background:rgba(255,255,255,.62); border:1px solid rgba(11,31,51,.16); backdrop-filter:blur(12px); }
.btn-outline:hover,.btn-dark:hover { transform:translateY(-2px); }

.topbar {
  background:linear-gradient(90deg,var(--primary-dark),#0e2b3e 58%,#0d4f52);
  border-bottom:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.82);
  font-size:12px;
  padding:9px 0;
}
.topbar-left { display:flex; align-items:center; flex-wrap:wrap; gap:18px; }
.topbar-left span,.topbar-left a { margin-right:0; }
.topbar-left i { color:var(--gold-light); }
.topbar-right a,.lang {
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
}
.topbar-right a:hover { transform:translateY(-2px); background:var(--gold); }
.lang { min-height:31px; padding:0 12px; display:inline-flex; align-items:center; color:var(--gold-light); }

.header {
  border-bottom:1px solid rgba(11,31,51,.08);
  backdrop-filter:blur(22px);
  box-shadow:0 12px 38px rgba(6,19,32,.08);
}
.header-inner { padding:14px 24px; }
.logo-mark {
  width:52px;
  height:52px;
  color:var(--gold-light);
}
.logo-text {
  font-size:23px;
  font-weight:800;
  letter-spacing:-.035em;
}
.logo-text small { color:var(--accent-dark); font-weight:800; margin-top:5px; }
.logo-light .logo-text small { color:var(--gold-light); }
.logo-light .logo-mark { box-shadow:none; }
.nav {
  align-items:center;
  gap:4px;
  padding:5px;
}
.nav a {
  color:var(--text-light);
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
}
.nav a::after { display:none; }
.nav a:hover,.nav a.active { color:var(--primary); background:#fff; box-shadow:var(--shadow-xs); }
.header-cta { padding:11px 20px; }

.hero {
  min-height:675px;
  padding:128px 0 172px;
  isolation:isolate;
}
.hero::before {
  background:linear-gradient(105deg,rgba(6,19,32,.95) 0%,rgba(6,19,32,.86) 42%,rgba(9,73,78,.52) 68%,rgba(244,184,96,.20) 100%),url('bg.jpg') center/cover no-repeat;
  z-index:-3;
}
.hero::after {
  top:112px;
  right:max(24px,calc((100vw - 1280px) / 2 + 24px));
  left:auto;
  bottom:auto;
  width:clamp(260px,30vw,430px);
  height:clamp(340px,42vw,530px);
  border:1px solid rgba(255,255,255,.22);
  border-radius:42px;
  background:linear-gradient(150deg,rgba(255,255,255,.22),rgba(255,255,255,.04)),radial-gradient(circle at 68% 18%,rgba(244,184,96,.32),transparent 150px),rgba(255,255,255,.08);
  box-shadow:0 36px 120px rgba(0,0,0,.34);
  backdrop-filter:blur(9px);
  z-index:-1;
  transform:rotate(4deg);
}
.hero-overlay {
  display:block;
  position:absolute;
  inset:auto 0 0;
  height:180px;
  background:linear-gradient(to top,var(--bg),transparent);
  pointer-events:none;
  z-index:1;
}
.hero-content { max-width:760px; }
.hero-eyebrow { color:var(--gold-light); }
.hero h1 { color:#fff; margin-bottom:26px; text-wrap:balance; text-shadow:0 20px 60px rgba(0,0,0,.34); }
.hero h1 span { color:var(--gold-light); font-style:italic; }
.hero-sub { max-width:610px; color:rgba(255,255,255,.78); font-size:clamp(17px,1.65vw,21px); font-weight:500; }
.hero-stats { display:grid; grid-template-columns:repeat(2,minmax(180px,1fr)); gap:14px; max-width:520px; }
.hero-stats>div,.hero-stats>a {
  padding:18px 20px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:24px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(14px);
  box-shadow:0 18px 40px rgba(0,0,0,.14);
}
.hero-stats>a:hover { transform:translateY(-4px); background:rgba(255,255,255,.13); }
.hero-stats strong { color:var(--gold); font-size:clamp(34px,4vw,52px); font-weight:800; }
.hero-stats span { color:rgba(255,255,255,.68); font-weight:800; }

.categories { gap:16px; margin-top:-82px; margin-bottom:88px; }
.cat-card {
  padding:28px 18px;
  border-radius:26px;
  background:linear-gradient(180deg,rgba(255,255,255,.94),rgba(255,255,255,.74)),radial-gradient(circle at 50% 0%,rgba(14,165,164,.14),transparent 82px);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
  backdrop-filter:blur(14px);
}
.cat-card::before {
  inset:auto 18px 14px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,transparent,var(--gold),var(--accent),transparent);
  transform:scaleX(0);
  width:auto;
}
.cat-card:hover::before { transform:scaleX(1); }
.cat-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:rgba(244,184,96,.42); }
.cat-card i {
  width:54px;
  height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:var(--accent-soft);
  color:var(--accent-dark);
  font-size:24px;
}
.cat-card:hover i { color:var(--primary-dark); background:var(--gold-light); transform:rotate(-4deg) scale(1.06); }
.cat-card h3 { font-size:14px; font-weight:900; letter-spacing:-.02em; }
.cat-card span { font-weight:700; }

.listings { padding-bottom:108px; }
.section-head { margin-bottom:38px; }
.section-head h2 { text-wrap:balance; }
.filter-chips { gap:10px; max-width:760px; }
.chip {
  padding:10px 16px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(11,31,51,.12);
  border-radius:999px;
  color:var(--text-light);
  font-weight:800;
  box-shadow:var(--shadow-xs);
}
.chip:hover { transform:translateY(-2px); border-color:rgba(14,165,164,.36); color:var(--accent-dark); background:#fff; }
.chip.active { background:var(--primary); border-color:var(--primary); color:#fff; box-shadow:0 14px 34px rgba(6,19,32,.22); }
.grid { grid-template-columns:repeat(3,minmax(0,1fr)); gap:26px; }
.card {
  border-radius:28px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.78);
  box-shadow:var(--shadow-sm);
  backdrop-filter:blur(10px);
}
.card:hover { transform:translateY(-8px); border-color:rgba(244,184,96,.38); box-shadow:var(--shadow-lg); }
.card-img { height:238px; background:var(--primary-dark); }
.card-img::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(6,19,32,.58),transparent 54%); pointer-events:none; }
.card:hover .card-img img { transform:scale(1.07); filter:saturate(1.08) contrast(1.03); }
.card-badges { top:14px; left:14px; gap:7px; z-index:3; }
.badge { padding:7px 11px; border-radius:999px; font-weight:900; box-shadow:0 8px 22px rgba(0,0,0,.16); }
.badge.satilik { background:linear-gradient(135deg,#15915f,#37b878); }
.badge.kiralik { background:linear-gradient(135deg,#0e7fb4,#3ea8d9); }
.badge.firsat { background:linear-gradient(135deg,#c0472d,#f0713d); }
.card-ref { border-radius:999px; font-weight:900; box-shadow:0 12px 28px rgba(6,19,32,.18); }
.card-photos { bottom:14px; right:14px; border-radius:999px; background:rgba(6,19,32,.74); font-weight:800; backdrop-filter:blur(10px); z-index:3; }
.card-body { padding:22px; }
.card-price { font-size:clamp(25px,2.3vw,34px); font-weight:800; letter-spacing:-.05em; }
.card-title { font-size:16px; font-weight:850; min-height:46px; letter-spacing:-.02em; }
.card-loc { color:var(--text-light); font-weight:700; }
.card-loc i { color:var(--accent-dark); }
.card-features { gap:8px; border-top:1px solid var(--border-light); font-size:12px; font-weight:800; }
.card-features i { color:var(--gold-dark); }
.pagination a,.pagination span { border-radius:999px; background:rgba(255,255,255,.74); font-weight:900; }
.pagination a:hover { transform:translateY(-2px); border-color:var(--accent); color:var(--accent-dark); }
.empty-state { background:rgba(255,255,255,.7); border:1px solid rgba(255,255,255,.78); border-radius:30px; }

.why { background:linear-gradient(180deg,rgba(247,242,232,.92),rgba(255,253,248,.8)); }
.why-card,.video-card,.site-overview>div,.area-card,.seo-block,.detail-section {
  background:rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.78);
  border-radius:28px;
  box-shadow:var(--shadow-sm);
}
.why-card:hover,.video-card:hover,.site-overview>div:hover,.area-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); }
.icon-circle { border-radius:22px; background:linear-gradient(135deg,var(--primary),var(--accent-dark)); color:var(--gold-light); }

.home-videos { padding-top:102px; padding-bottom:102px; }
.section-intro { max-width:540px; font-weight:600; }
.video-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:26px; }
.video-card { overflow:hidden; }
.video-frame-detail { border-radius:22px; }
.youtube-placeholder::after { background:linear-gradient(to top,rgba(6,19,32,.58),rgba(6,19,32,.08)); }
.youtube-play { width:68px; height:68px; background:linear-gradient(135deg,var(--gold),var(--gold-light)); box-shadow:0 18px 42px rgba(0,0,0,.28); }
.video-body { padding:22px; }
.video-body span { color:var(--accent-dark); font-weight:900; }
.video-body h3 { font-size:22px; }
.video-body a { font-weight:900; }

.areas {
  padding-top:92px;
  padding-bottom:92px;
  background:radial-gradient(circle at 12% 0%,rgba(244,184,96,.22),transparent 280px),linear-gradient(135deg,rgba(15,72,79,.08),rgba(247,242,232,.82));
  border-radius:42px;
  margin-bottom:22px;
}
.areas-title-line { color:var(--accent-dark); font-style:italic; }
.site-overview>div { border-radius:24px; padding:22px; }
.site-overview i { width:44px; height:44px; display:inline-flex; align-items:center; justify-content:center; border-radius:15px; color:var(--primary-dark); background:var(--gold-light); }
.site-overview strong,.area-tags span { font-weight:900; }
.areas-grid { grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
.area-card { padding:24px; min-height:270px; }
.area-card h3 { font-size:25px; }
.area-card-top span { border-radius:999px; background:var(--accent-soft); color:var(--accent-dark); font-weight:900; }
.area-card p { font-weight:600; }
.area-tags span { border-radius:999px; background:rgba(244,184,96,.16); }

.seo-content { background:transparent; }
.seo-block { max-width:850px; padding:42px; border-radius:34px; }
.seo-block h2 { font-size:clamp(30px,3vw,44px); }
.seo-block p { font-weight:600; }

.detail-back { border-radius:999px; background:rgba(255,255,255,.75); border:1px solid rgba(11,31,51,.1); font-weight:900; box-shadow:var(--shadow-xs); }
.detail-back:hover { transform:translateX(-3px); }
.detail-header {
  padding:32px;
  border-radius:34px;
  background:radial-gradient(circle at 90% 10%,rgba(14,165,164,.12),transparent 220px),rgba(255,255,255,.76);
  border:1px solid rgba(255,255,255,.78);
  box-shadow:var(--shadow-sm);
}
.detail-header h1 { font-size:clamp(34px,4vw,58px); text-wrap:balance; }
.detail-loc { font-weight:800; }
.detail-loc i { color:var(--accent-dark); }
.detail-price { font-size:clamp(36px,4vw,58px); font-weight:850; letter-spacing:-.055em; color:var(--gold-dark); }
.detail-price small { font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.gallery { border-radius:34px; box-shadow:var(--shadow-md); background:var(--primary-dark); }
.gallery img { height:540px; }
.gallery-nav { width:52px; height:52px; border-radius:50%; background:rgba(255,255,255,.88); box-shadow:var(--shadow-sm); backdrop-filter:blur(12px); }
.gallery-nav:hover { transform:translateY(-50%) scale(1.06); }
.thumb-strip a { width:88px; height:66px; border-radius:16px; box-shadow:var(--shadow-xs); }
.thumb-strip a:hover,.thumb-strip a.active { border-color:var(--accent); transform:translateY(-2px); }
.detail-body { grid-template-columns:minmax(0,1fr) 390px; align-items:start; }
.detail-section { padding:30px; }
.detail-section h3 { font-size:24px; border-bottom:3px solid var(--gold); }
.detail-section p { font-weight:600; }
.specs { gap:12px; }
.specs>div { padding:13px 14px; border:1px solid var(--border-light); border-radius:16px; background:rgba(247,242,232,.58); }
.specs>div span:first-child { font-weight:700; }
.specs>div span:last-child { font-weight:900; text-align:right; }
.features-list>div { border-radius:16px; background:var(--accent-soft); color:var(--primary); font-weight:900; }
.contact-card {
  border-radius:30px;
  background:radial-gradient(circle at 82% 0%,rgba(244,184,96,.24),transparent 160px),linear-gradient(145deg,var(--primary),var(--primary-dark));
  border:1px solid rgba(255,255,255,.12);
}
.agent-avatar { border-radius:20px; background:linear-gradient(135deg,var(--gold),var(--gold-light)); font-weight:850; }
.agent-info span { font-weight:900; }
.contact-form input,.contact-form textarea { border-radius:16px; }
.contact-form input:focus,.contact-form textarea:focus { box-shadow:0 0 0 4px rgba(244,184,96,.13); }
.contact-form button { width:100%; }
.contact-direct a { border-radius:16px; font-weight:900; border:1px solid rgba(255,255,255,.1); }
.contact-direct a:hover { transform:translateY(-2px); }

.footer {
  background:radial-gradient(circle at 10% 12%,rgba(14,165,164,.22),transparent 320px),radial-gradient(circle at 90% 10%,rgba(244,184,96,.18),transparent 320px),linear-gradient(180deg,var(--primary),var(--primary-dark));
  margin-top:28px;
}
.footer h3 { font-weight:900; }
.footer h3::after { height:3px; border-radius:999px; background:linear-gradient(90deg,var(--gold),var(--accent)); }
.social a { border-radius:14px; border:1px solid rgba(255,255,255,.1); }
.social a:hover { transform:translateY(-3px); }
.footer-bottom { background:rgba(0,0,0,.12); }
.whatsapp-fab { width:58px; height:58px; border-radius:20px; background:linear-gradient(135deg,#25d366,#12a85a); box-shadow:0 18px 42px rgba(37,211,102,.34); }
.whatsapp-fab:hover { transform:translateY(-4px) scale(1.04); }

@media (max-width:1160px) {
  .grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .areas-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .video-grid { grid-template-columns:1fr; }
  .detail-body { grid-template-columns:1fr; }
  .contact-card { position:static; }
  .hero::after { opacity:.36; right:-120px; }
}

@media (max-width:860px) {
  .topbar-left,.nav { display:none; }
  .topbar-inner { justify-content:center; }
  .header-inner { padding:12px 18px; }
  .logo-mark { width:48px; height:48px; border-radius:16px; }
  .logo-text { font-size:20px; }
  .hero { min-height:auto; padding:78px 0 112px; }
  .hero::after { display:none; }
  .hero h1 { font-size:clamp(38px,11vw,60px); }
  .hero-sub { font-size:16px; }
  .hero-stats { grid-template-columns:1fr; max-width:390px; }
  .grid,.areas-grid,.site-overview,.why-grid,.footer-grid { grid-template-columns:1fr; }
  .categories { grid-template-columns:repeat(2,1fr); margin-top:-58px; margin-bottom:68px; }
  .listings,.home-videos,.areas,.seo-content,.detail-wrap { padding-left:18px; padding-right:18px; }
  .filter-chips { overflow-x:auto; flex-wrap:nowrap; padding-bottom:8px; width:100%; }
  .chip { flex:0 0 auto; }
  .areas { border-radius:30px; }
  .detail-header { padding:24px; border-radius:28px; }
  .detail-meta-row { align-items:flex-start; flex-direction:column; }
  .detail-price { font-size:34px; }
  .gallery { border-radius:26px; }
  .gallery img { height:310px; }
  .specs,.features-list { grid-template-columns:1fr; }
  .section-intro { max-width:100%; }
  .contact-direct { flex-direction:column; }
  .seo-block { padding:30px 22px; border-radius:28px; }
}

@media (max-width:520px) {
  .container { padding-left:18px; padding-right:18px; }
  .header-cta { padding:10px 14px; min-height:42px; }
  .header-cta i { display:none; }
  .logo-text small { letter-spacing:2px; }
  .categories { grid-template-columns:1fr; }
  .cat-card { padding:22px 18px; }
  .card-img { height:220px; }
  .card-features { flex-wrap:wrap; justify-content:flex-start; }
  .area-card { min-height:auto; }
  .footer-bottom .container { flex-direction:column; }
  .whatsapp-fab { width:54px; height:54px; right:18px; bottom:18px; border-radius:18px; }
}

@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { transition-duration:.001ms !important; animation-duration:.001ms !important; animation-iteration-count:1 !important; }
}

/* Hero background should stay clear: no frosted panels over bg.jpg. */
.hero::after,
.hero-overlay {
  display:none !important;
}

.hero-stats>div,
.hero-stats>a,
.hero-stats>a:hover {
  background:transparent;
  border:0;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.hero-stats>div,
.hero-stats>a {
  padding:0 18px 0 0;
}

.hero-stats strong,
.hero-stats span {
  text-shadow:0 2px 12px rgba(0,0,0,.38);
}

/* Keep the main menu clean instead of using a pill container. */
.nav {
  gap:30px;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
}

.nav a {
  padding:8px 0;
  border-radius:0;
  background:transparent !important;
  box-shadow:none !important;
  color:var(--text-light);
}

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

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

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

/* Match the compact category cards used on apolloniumsatilik.com. */
.categories {
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  max-width:658px;
  margin:-70px auto 74px;
  padding:0;
}

.cat-card {
  min-height:148px;
  padding:28px 18px 26px;
  background:#fff;
  border:1px solid #dde4ee;
  border-radius:9px;
  box-shadow:0 10px 28px rgba(10,37,64,.08);
  backdrop-filter:none;
}

.cat-card::before {
  display:none;
}

.cat-card:hover {
  transform:translateY(-4px);
  border-color:#cfd8e4;
  box-shadow:0 15px 34px rgba(10,37,64,.12);
}

.cat-card i,
.cat-card:hover i {
  width:auto;
  height:auto;
  margin-bottom:12px;
  background:transparent;
  color:#bd8f3b;
  font-size:33px;
  transform:none;
}

.cat-card h3 {
  font-family:var(--font-sans);
  font-size:15px;
  font-weight:800;
  letter-spacing:-.02em;
  color:var(--primary);
  margin-bottom:5px;
}

.cat-card span {
  color:#657388;
  font-size:12px;
  font-weight:500;
}

@media (max-width:760px) {
  .categories {
    grid-template-columns:repeat(2, minmax(0, 1fr));
    max-width:460px;
    margin-top:-50px;
    padding:0 18px;
  }
}

@media (max-width:520px) {
  .categories {
    grid-template-columns:1fr;
    max-width:260px;
  }
}

/* Simpler brand mark: flat color, less shine, tighter shape. */
.logo-mark {
  width:44px;
  height:44px;
  flex:0 0 44px;
  color:var(--gold-light);
  border:0;
  box-shadow:none;
  font-size:24px;
}

.logo-light .logo-mark {
  color:var(--gold-light);
  border:0;
}

@media (max-width:520px) {
  .logo-mark {
    width:42px;
    height:42px;
    flex-basis:42px;
    border-radius:11px;
    font-size:23px;
  }
}

/* SEO text block should match the clean live-site presentation. */
.seo-content {
  padding:84px 24px 92px;
}

.seo-block {
  max-width:820px;
  padding:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}

.seo-block h2 {
  margin-bottom:24px;
  color:#172435;
  font-size:30px;
  line-height:1.2;
  letter-spacing:0;
}

.seo-block p {
  color:#506075;
  font-size:15px;
  line-height:1.72;
  font-weight:500;
  margin:0 auto 14px;
}

@media (max-width:760px) {
  .seo-content {
    padding:64px 20px 72px;
  }

  .seo-block h2 {
    font-size:26px;
  }
}
