/* ============================================================
   YAZICIOĞLU INVEST — Luxury Black & Gold Theme
   ============================================================ */

:root {
  --black:        #070707;
  --black-2:      #0d0d0d;
  --panel:        #121212;
  --panel-2:      #161310;
  --gold:         #d4af37;
  --gold-light:   #f6e27a;
  --gold-deep:    #b8902b;
  --gold-grad:    linear-gradient(180deg, #f6e6a8 0%, #d4af37 45%, #a87b1f 100%);
  --text:         #e9e6df;
  --text-dim:     #b9b4a8;
  --border-gold:  rgba(212,175,55,.45);
  --glow:         0 0 18px rgba(212,175,55,.35);
  --serif:        'Cinzel', serif;
  --sans:         'Montserrat', sans-serif;
  --header-pad:   28px; /* .container'ın yatay padding'i ile birebir aynı olmalı */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Gold gradient text helper */
.gold-text,
.section-title,
.hero-title,
.logo-name {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(7,7,7,.96), rgba(7,7,7,.82));
  border-bottom: 1px solid rgba(212,175,55,.18);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  position: relative;
}

.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  background: radial-gradient(circle at 50% 30%, rgba(212,175,55,.18), transparent 70%);
  text-shadow: var(--glow);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name { font-family: var(--serif); font-size: 22px; font-weight: 700; letter-spacing: 2px; }
.logo-sub  { font-family: var(--serif); font-size: 11px; letter-spacing: 4px; color: var(--gold-deep); }
.logo-tag  {
  font-size: 9.5px; letter-spacing: 2px; color: var(--text-dim);
  margin-top: 4px; padding-top: 4px;
  border-top: 1px solid rgba(212,175,55,.25);
}

.main-nav ul { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-drawer-head,
.nav-drawer-foot,
.nav-overlay { display: none; }
.main-nav a {
  font-size: 14px; font-weight: 500; letter-spacing: 1.5px;
  color: var(--text); position: relative;
  transition: color .25s;
}
.main-nav > ul > li > a:hover,
.main-nav a:hover { color: var(--gold-light); }
.main-nav i.fa-chevron-down { font-size: 9px; margin-left: 3px; color: var(--gold); }

/* ============================================================
   MEGA MENÜ — tam genişlik panel, auto-fit grid.
   Panel artık .site-header'a göre fixed konumlanır ve genişliği
   her zaman container ile birebir aynıdır (max-width:1320px,
   padding:0 28px) — viewport ne olursa olsun container'ı
   asla aşamaz, bu yüzden taşma matematiksel olarak imkansızdır.
   grid-template-columns: auto-fit ile öğe sayısı artsa/azalsa
   bile sütun sayısı otomatik ayarlanır, manuel müdahale gerekmez.
   ============================================================ */
.has-dropdown { position: static; }
.mega-panel {
  position: absolute;
  top: 100%;
  left: calc(-1 * var(--header-pad, 28px));
  right: calc(-1 * var(--header-pad, 28px));
  z-index: 50;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  pointer-events: none;
}
.has-dropdown.dd-open .mega-panel,
.has-dropdown:focus-within .mega-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
  pointer-events: auto;
}
.mega-panel-inner {
  width: 100%;
  padding: 0 var(--header-pad, 28px);
}
.dropdown {
  list-style: none;
  background: var(--panel);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 22px 26px;
  margin-top: 14px;
  margin-left: auto;
  width: fit-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 4px 28px;
  box-shadow: 0 24px 50px rgba(0,0,0,.65);
}
/* Küçük üst ok (caret) — panelin sağ kenarına yakın durur */
.dropdown::before {
  content: "";
  position: absolute;
  top: -7px; right: 36px;
  transform: rotate(45deg);
  width: 14px; height: 14px;
  background: var(--panel);
  border-left: 1px solid var(--border-gold);
  border-top: 1px solid var(--border-gold);
  border-radius: 3px 0 0 0;
}
.dropdown li { list-style: none; }
.dropdown li a {
  display: block;
  padding: 11px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  letter-spacing: .3px;
  line-height: 1.35;
  color: var(--text-dim);
  white-space: normal;
  transition: color .2s ease, background .2s ease, padding-left .2s ease;
}
.dropdown li a:hover { color: var(--gold-light); background: rgba(212,175,55,.08); padding-left: 18px; }

/* Not: Hem GAYRİMENKUL hem OTOMOTİV dropdown'u artık .header-inner'ın
   sağ kenarına sabitlenir (yukarıdaki .dropdown kuralı, right:0).
   Nav zaten header'ın sağ tarafında durduğundan bu, dropdown'ın görsel
   olarak nav grubunun altında kalmasını ve viewport'tan asla taşmamasını
   aynı anda garanti eder. */

.nav-toggle {
  display: none; background: none; border: none;
  color: var(--gold); font-size: 24px; cursor: pointer;
  z-index: 210;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 640px;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-side {
  position: absolute; top: 0; bottom: 0; width: 42%;
  overflow: hidden;
}
.hero-left  { left: 0;  clip-path: polygon(0 0, 100% 0, 64% 100%, 0 100%); }
.hero-right { right: 0; clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%); }
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.78) contrast(1.08) sepia(.35) saturate(1.45) hue-rotate(-8deg);
}
.hero-left .hero-img  { mask-image: linear-gradient(90deg, #000 55%, transparent 100%); }
.hero-right .hero-img { mask-image: linear-gradient(270deg, #000 55%, transparent 100%); }

.hero-side::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,7,.25), rgba(7,7,7,.85));
}
.hero-side-label {
  position: absolute; bottom: 34px; z-index: 3;
  font-family: var(--serif); font-size: 22px; letter-spacing: 4px;
  color: var(--text); text-shadow: 0 2px 12px #000;
}
.hero-label-left  { left: 40px; }
.hero-label-right { right: 40px; }

.hero-center {
  position: relative; z-index: 5;
  width: 100%; text-align: center;
  padding: 60px 20px;
}
.hero-content { max-width: 720px; margin: 0 auto; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 2px;
  text-shadow: 0 4px 30px rgba(0,0,0,.7);
}
.hero-actions {
  margin-top: 38px;
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-size: 13px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all .3s ease;
}
.btn-gold {
  color: #1a1407;
  background: var(--gold-grad);
  border: 1px solid var(--gold-light);
  box-shadow: var(--glow);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(212,175,55,.6); }
.btn-outline {
  color: var(--gold-light);
  background: rgba(212,175,55,.05);
  border: 1px solid var(--border-gold);
}
.btn-outline:hover { background: rgba(212,175,55,.14); transform: translateY(-2px); }

/* ====== Sparkle / glow layers ====== */
.gold-particles {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(2px 2px at 12% 70%, rgba(246,226,122,.9), transparent),
    radial-gradient(1.5px 1.5px at 18% 85%, rgba(212,175,55,.8), transparent),
    radial-gradient(2px 2px at 8% 55%, rgba(246,226,122,.7), transparent),
    radial-gradient(1.5px 1.5px at 24% 40%, rgba(246,226,122,.6), transparent),
    radial-gradient(2px 2px at 30% 78%, rgba(212,175,55,.7), transparent),
    radial-gradient(1.5px 1.5px at 88% 80%, rgba(212,175,55,.8), transparent),
    radial-gradient(2px 2px at 80% 65%, rgba(246,226,122,.7), transparent),
    radial-gradient(1.5px 1.5px at 72% 38%, rgba(246,226,122,.6), transparent),
    radial-gradient(2px 2px at 92% 50%, rgba(212,175,55,.6), transparent),
    radial-gradient(1.5px 1.5px at 60% 88%, rgba(246,226,122,.55), transparent);
  animation: twinkle 3.5s ease-in-out infinite;
}
.gold-particles::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1.5px 1.5px at 40% 60%, rgba(246,226,122,.8), transparent),
    radial-gradient(2px 2px at 50% 30%, rgba(212,175,55,.6), transparent),
    radial-gradient(1.5px 1.5px at 15% 30%, rgba(246,226,122,.7), transparent),
    radial-gradient(2px 2px at 85% 25%, rgba(246,226,122,.6), transparent),
    radial-gradient(1.5px 1.5px at 65% 70%, rgba(212,175,55,.7), transparent);
  animation: twinkle 2.6s ease-in-out infinite reverse;
}
@keyframes twinkle {
  0%, 100% { opacity: .35; }
  50%      { opacity: 1; }
}

/* Glowing gold light streaks behind house & car */
.hero-glow {
  position: absolute; z-index: 1; pointer-events: none;
  width: 60%; height: 200px; filter: blur(6px);
  background: radial-gradient(ellipse at center, rgba(246,226,122,.45), rgba(212,175,55,.12) 45%, transparent 70%);
  animation: pulse-glow 5s ease-in-out infinite;
}
.hero-glow.left  { left: -8%;  top: 30%; transform: rotate(-12deg); }
.hero-glow.right { right: -8%; top: 38%; transform: rotate(12deg); animation-delay: 1.5s; }
@keyframes pulse-glow {
  0%, 100% { opacity: .45; }
  50%      { opacity: .9; }
}

/* Flowing gold wave lines along the bottom */
.gold-waves {
  position: absolute; left: 0; right: 0; bottom: -2px; height: 220px;
  z-index: 1; pointer-events: none; opacity: .9;
  background:
    radial-gradient(120% 80px at 10% 100%, transparent 48%, rgba(212,175,55,.35) 50%, transparent 52%),
    radial-gradient(120% 120px at 18% 110%, transparent 47%, rgba(246,226,122,.30) 49%, transparent 51%),
    radial-gradient(120% 160px at 88% 115%, transparent 47%, rgba(212,175,55,.30) 49%, transparent 51%),
    radial-gradient(120% 90px at 92% 105%, transparent 48%, rgba(246,226,122,.28) 50%, transparent 52%);
}

/* ===================== SECTION TITLE ===================== */
.section-title {
  font-family: var(--serif);
  text-align: center;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 48px;
  filter: drop-shadow(0 0 14px rgba(212,175,55,.35));
}
.hero-title { filter: drop-shadow(0 0 22px rgba(212,175,55,.30)); }
.logo-mark { animation: mark-glow 4s ease-in-out infinite; }
@keyframes mark-glow {
  0%, 100% { box-shadow: 0 0 6px rgba(212,175,55,.2); }
  50%      { box-shadow: 0 0 22px rgba(246,226,122,.55); }
}

/* ===================== SERVICES / CARDS ===================== */
.services {
  position: relative; padding: 90px 0 60px;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(212,175,55,.10), transparent 70%),
    var(--black);
}
.automotive {
  background:
    radial-gradient(60% 50% at 50% 100%, rgba(212,175,55,.10), transparent 70%),
    var(--black);
}

.card-grid { display: grid; gap: 20px; justify-content: center; }
.services-grid   { grid-template-columns: repeat(3, minmax(0, 230px)); }
.properties-grid { grid-template-columns: repeat(2, minmax(0, 230px)); }

/* tighten spacing between the two stacked sections */
.properties-section { padding-bottom: 30px; }
.services + .services { padding-top: 30px; }

.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--panel-2), #0b0b0b);
  border: 1px solid rgba(212,175,55,.40);
  border-radius: 8px;
  padding: 26px 16px;
  min-height: 190px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  gap: 12px;
  box-shadow: inset 0 0 24px rgba(212,175,55,.06), 0 0 12px rgba(212,175,55,.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
/* sweeping shimmer */
.card::before {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(246,226,122,.18), transparent);
  transform: skewX(-18deg);
  transition: left .7s ease;
}
.card:hover::before { left: 140%; }
.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 0 34px rgba(212,175,55,.4), inset 0 0 40px rgba(212,175,55,.10);
}
.card:hover .icon-wrap {
  transform: scale(1.06);
  border-color: var(--gold);
  box-shadow: inset 0 0 22px rgba(212,175,55,.2), 0 0 26px rgba(246,226,122,.35);
}
.card:hover .card-icon { filter: drop-shadow(0 0 18px rgba(246,226,122,.9)); }
.card-icon { transition: filter .3s ease; }
/* Premium icon badge: thin gold ring + glow */
.icon-wrap {
  position: relative;
  width: 86px; height: 86px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.35);
  background:
    radial-gradient(circle at 50% 40%, rgba(212,175,55,.14), transparent 70%),
    linear-gradient(160deg, rgba(212,175,55,.06), rgba(0,0,0,0));
  box-shadow: inset 0 0 18px rgba(212,175,55,.10);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.icon-wrap::before {
  content: ""; position: absolute; inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.18);
}
.card-icon {
  font-size: 46px;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(212,175,55,.5));
}
.auto-card .card-icon { font-size: 50px; }
.card h3 {
  font-family: var(--serif);
  font-size: 14px; font-weight: 600; letter-spacing: 1.5px;
  color: var(--gold-light);
  line-height: 1.35;
}
.card p { font-size: 12.5px; color: var(--text-dim); line-height: 1.5; }
.card-feature { justify-content: flex-start; }
.card-feature h3 { margin-bottom: 6px; }

/* ===================== AUTOMOTIVE ===================== */
.automotive { padding: 50px 0 100px; background: var(--black); }
.auto-grid {
  grid-template-columns: repeat(4, minmax(0, 230px));
  justify-content: center;
}
.auto-card { min-height: 200px; }
.auto-card .card-icon { font-size: 46px; }

/* ===================== COVERAGE MAP ===================== */
.coverage {
  position: relative;
  padding: 90px 0 100px;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(212,175,55,.10), transparent 70%),
    var(--black);
}
.coverage-sub {
  text-align: center;
  margin: -30px 0 42px;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  font-size: 14px;
}

/* Globe framing + Turkey position (tuned via headless screenshots) */
:root {
  --globe-bg-x: 57%;   /* texture longitude framing  */
  --globe-bg-y: 32%;   /* texture latitude framing   */
  --trk-x: 61%;        /* Bartın X within globe disc */
  --trk-y: 27%;        /* Bartın Y within globe disc */
  --zoom: 8;
}

/* Space frame with starfield */
.map-viewport {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  background:
    radial-gradient(1.2px 1.2px at 14% 20%, rgba(255,255,255,.9), transparent),
    radial-gradient(1px 1px at 26% 64%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.4px 1.4px at 8% 80%, rgba(255,255,255,.8), transparent),
    radial-gradient(1px 1px at 84% 30%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.2px 1.2px at 92% 72%, rgba(255,255,255,.85), transparent),
    radial-gradient(1px 1px at 70% 86%, rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 40% 12%, rgba(255,255,255,.6), transparent),
    radial-gradient(130% 120% at 50% 50%, #0a1326 0%, #050813 55%, #01030a 100%);
  box-shadow: inset 0 0 90px rgba(0,0,0,.85), 0 0 34px rgba(60,110,200,.16);
}
.map-viewport::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(1px 1px at 18% 40%, rgba(255,255,255,.8), transparent),
    radial-gradient(1px 1px at 60% 18%, rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 78% 58%, rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 34% 88%, rgba(255,255,255,.6), transparent);
  animation: twinkle 4s ease-in-out infinite;
}

/* The globe */
.globe-stage {
  position: absolute; top: 50%; left: 50%;
  height: 88%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 2;
  box-shadow:
    0 0 50px 6px rgba(120,165,255,.40),
    0 0 130px 36px rgba(70,120,220,.20);
}
.globe {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: url('/earth.jpg') no-repeat;
  background-size: 200% 100%;
  background-position: var(--globe-bg-x) var(--globe-bg-y);
  transform-origin: var(--trk-x) var(--trk-y);
  transform: scale(1);
  filter: saturate(1.08) brightness(1.03) contrast(1.03);
}
.map-viewport.play .globe {
  animation: zoomEarth 4.6s cubic-bezier(.5,.02,.2,1) forwards;
}
@keyframes zoomEarth {
  0%, 16% { transform: scale(1); }
  100%    { transform: scale(var(--zoom)); }
}

/* Spherical shading: sun highlight, edge darkening, atmosphere rim */
.globe-shade {
  position: absolute; inset: 0; border-radius: 50%;
  pointer-events: none; z-index: 3;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.30), rgba(255,255,255,0) 40%),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 56%, rgba(4,14,40,.55) 80%, rgba(0,2,8,.92) 100%);
  box-shadow: inset 0 0 38px 6px rgba(120,170,255,.38);
}
.map-viewport.play .globe-shade { animation: shadeOut 2.2s ease forwards; }
@keyframes shadeOut { to { opacity: 0; } }

/* Pin anchored to Turkey inside the globe disc */
.map-pin {
  position: absolute;
  left: var(--trk-x); top: var(--trk-y);
  width: 0; height: 0;
  opacity: 0; z-index: 6;
}
.map-viewport.play .map-pin {
  animation: pinIn .7s ease forwards;
  animation-delay: 3.6s;
}
@keyframes pinIn { to { opacity: 1; } }

.pin-dot {
  position: absolute; left: 0; top: 0;
  width: 13px; height: 13px; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #fff6cf 0%, var(--gold-light) 45%, var(--gold) 100%);
  box-shadow: 0 0 16px 5px rgba(246,226,122,.85);
  z-index: 3;
}
.pin-rings::before,
.pin-rings::after {
  content: ""; position: absolute; left: 0; top: 0;
  width: 13px; height: 13px; border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(246,226,122,.7);
  animation: ripple 2.6s ease-out infinite;
}
.pin-rings::after { animation-delay: 1.3s; }
@keyframes ripple {
  0%   { width: 13px; height: 13px; opacity: .9; }
  100% { width: 130px; height: 130px; opacity: 0; }
}
.pin-label {
  position: absolute; left: 16px; top: -28px;
  font-family: var(--serif); font-size: 15px; letter-spacing: 3px;
  color: var(--gold-light); white-space: nowrap;
  text-shadow: 0 0 12px rgba(0,0,0,.9), 0 0 18px rgba(212,175,55,.5);
}
.map-hint {
  position: absolute; right: 16px; bottom: 14px; z-index: 4;
  font-size: 12px; letter-spacing: 2px; color: var(--text-dim);
  padding: 6px 12px; border: 1px solid rgba(212,175,55,.25);
  border-radius: 20px; background: rgba(0,0,0,.4);
  opacity: 0; animation: hintFade .8s ease forwards; animation-delay: .3s;
}
.map-viewport.play .map-hint { opacity: 0; animation: hintOut .6s ease forwards; }
@keyframes hintFade { to { opacity: .9; } }
@keyframes hintOut  { to { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .map-viewport.play .globe { animation: none; transform: scale(3); }
  .map-viewport.play .globe-shade { opacity: 0; }
  .map-pin { opacity: 1; animation: none; }
}

/* ===================== ABOUT ===================== */
.about { padding: 80px 0; background: linear-gradient(180deg, #070707, #0c0b08); }
.about-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.about p { color: var(--text-dim); font-size: 16px; line-height: 1.8; }
.about strong { color: var(--gold-light); font-weight: 600; }

/* ===================== SEO CONTENT (intros & FAQ) ===================== */
.hero-sub {
  margin: 22px auto 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dim);
  text-shadow: 0 2px 16px rgba(0,0,0,.7);
}
.section-intro {
  max-width: 760px;
  margin: -30px auto 44px;
  text-align: center;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-dim);
}

.faq {
  position: relative;
  padding: 90px 0 100px;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(212,175,55,.08), transparent 70%),
    var(--black);
}
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(18,18,18,.6), rgba(10,10,10,.6));
  padding: 22px 26px;
  margin-bottom: 16px;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item:hover {
  border-color: var(--border-gold);
  box-shadow: 0 0 24px rgba(212,175,55,.10);
}
.faq-q {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.faq-a {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dim);
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(212,175,55,.2);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-note { color: var(--text-dim); font-size: 13px; margin-bottom: 18px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--border-gold); border-radius: 50%;
  color: var(--gold); transition: all .3s;
}
.socials a:hover { background: var(--gold); color: #111; box-shadow: var(--glow); }

.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 13px; letter-spacing: 2px; color: var(--text-dim); }
.footer-nav a:hover { color: var(--gold-light); }

.footer-contact p {
  font-size: 14px; color: var(--text-dim);
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.footer-contact i { color: var(--gold); width: 18px; }

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(212,175,55,.12);
  padding: 22px 0;
  text-align: center;
}
.footer-bottom span { font-size: 12px; letter-spacing: 2px; color: var(--gold-deep); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, minmax(0, 220px)); }
}
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .hero-side { width: 50%; }
  .hero-left  { clip-path: polygon(0 0,100% 0,80% 100%,0 100%); }
  .hero-right { clip-path: polygon(20% 0,100% 0,100% 100%,0 100%); }
}
@media (max-width: 760px) {
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .auto-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-side-label { font-size: 16px; }
  .logo-tag { display: none; }
}
@media (max-width: 460px) {
  .services-grid   { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: 1fr; }
  .auto-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   İL KARTLARI (Coverage / Popüler Bölgeler)
   ============================================================ */
.il-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 50px;
}
.il-card {
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(160deg, var(--panel-2), #0b0b0b);
  border: 1px solid rgba(212,175,55,.30);
  border-radius: 8px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.il-card::before {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(246,226,122,.16), transparent);
  transform: skewX(-18deg);
  transition: left .6s ease;
}
.il-card:hover::before { left: 140%; }
.il-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 0 22px rgba(212,175,55,.30);
  background: linear-gradient(160deg, #1a1610, #0b0b0b);
}
.il-card i {
  font-size: 15px; color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(212,175,55,.5));
  flex-shrink: 0;
}
.il-card span {
  font-family: var(--serif); font-size: 13.5px; font-weight: 600;
  letter-spacing: .5px; color: var(--text);
}
.coverage-more {
  text-align: center; margin-top: 36px;
}
.coverage-more a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  color: var(--gold-light); padding: 10px 4px;
  border-bottom: 1px solid rgba(212,175,55,.35);
  transition: color .25s ease, border-color .25s ease, gap .25s ease;
}
.coverage-more a:hover { color: var(--gold); border-color: var(--gold); gap: 12px; }

/* ============================================================
   HİZMET DETAY SAYFASI (Service / Location Page)
   ============================================================ */
.hizmet-hero { padding-bottom: 10px; }
.svc-breadcrumb {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--text-dim);
  margin-bottom: 18px;
  text-transform: uppercase;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center;
  gap: 6px;
  row-gap: 4px;
}
.svc-breadcrumb a { color: var(--text-dim); transition: color .2s ease; }
.svc-breadcrumb a:hover { color: var(--gold-light); }
.svc-breadcrumb .sep { opacity: .45; }
.svc-breadcrumb .current { color: var(--gold); }

.svc-section { padding: 70px 0 90px; }
.svc-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}
.svc-main { min-width: 0; }
.svc-aside { min-width: 0; position: sticky; top: 104px; display: flex; flex-direction: column; gap: 22px; }

/* Benefit pills */
.svc-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 44px;
}
.svc-benefit {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(160deg, var(--panel-2), #0b0b0b);
  border: 1px solid rgba(212,175,55,.30);
  border-radius: 8px;
  transition: border-color .25s ease, transform .25s ease;
}
.svc-benefit:hover { border-color: var(--gold); transform: translateY(-2px); }
.svc-benefit .check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.4);
  background: radial-gradient(circle at 50% 40%, rgba(212,175,55,.18), transparent 70%);
  color: var(--gold);
  font-size: 12px;
}
.svc-benefit span:last-child {
  font-size: 12.5px; font-weight: 600; letter-spacing: .3px;
  color: var(--text); line-height: 1.4;
}

/* Article */
.svc-article {
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.85;
  font-size: 15.5px;
  background: linear-gradient(180deg, rgba(18,18,18,.4), rgba(10,10,10,.4));
  border: 1px solid rgba(212,175,55,.16);
  border-radius: 14px;
  padding: 38px 36px;
}
.svc-article h2 { font-family: var(--serif); color: var(--gold-light); font-size: 24px; margin: 36px 0 14px; letter-spacing: .5px; }
.svc-article h2:first-child { margin-top: 0; }
.svc-article h3 { font-family: var(--serif); color: var(--text); font-size: 19px; margin: 26px 0 10px; }
.svc-article h4 { color: var(--gold); font-size: 15px; margin: 20px 0 8px; letter-spacing: .3px; }
.svc-article h5 { color: var(--gold-light); font-size: 13.5px; font-weight: 700; letter-spacing: .4px; margin: 16px 0 6px; text-transform: uppercase; }
.svc-article h6 { color: var(--text-dim); font-size: 12.5px; font-weight: 700; letter-spacing: .3px; margin: 14px 0 5px; font-style: italic; }
.svc-article ul, .svc-article ol { margin: 0 0 16px 22px; color: var(--text-dim); }
.svc-article li { margin-bottom: 6px; line-height: 1.7; }
.svc-article strong { color: var(--text); font-weight: 600; }
.svc-article blockquote {
  margin: 22px 0; padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(212,175,55,.05);
  border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--text);
}
.svc-article p { margin-bottom: 14px; color: var(--text-dim); }
.svc-article a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.svc-article a:hover { color: var(--gold-light); }

.svc-internal-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 36px;
}
.svc-internal-links a {
  display: block;
  padding: 14px 16px;
  font-size: 13px; font-weight: 600;
  color: var(--text-dim);
  background: rgba(212,175,55,.05);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 8px;
  transition: all .25s ease;
}
.svc-internal-links a:hover {
  color: var(--gold-light); border-color: var(--gold);
  background: rgba(212,175,55,.10); transform: translateX(4px);
}

/* FAQ / Reviews block headers within service page */
.svc-block { margin-top: 56px; }
.svc-block-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 10px rgba(212,175,55,.25));
}

.svc-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.svc-review {
  text-align: left; padding: 22px;
  background: linear-gradient(160deg, var(--panel-2), #0b0b0b);
  border: 1px solid rgba(212,175,55,.30);
  border-radius: 10px;
  transition: border-color .25s ease, transform .25s ease;
}
.svc-review:hover { border-color: var(--gold); transform: translateY(-3px); }
.svc-review .stars { color: var(--gold); margin-bottom: 10px; font-size: 13px; letter-spacing: 2px; }
.svc-review p { font-size: 13px; color: var(--text-dim); line-height: 1.65; margin-bottom: 12px; }
.svc-review .meta { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text); opacity: .85; }

/* Sidebar cards */
.svc-card {
  padding: 26px;
  background: linear-gradient(160deg, var(--panel-2), #0b0b0b);
  border: 1px solid rgba(212,175,55,.30);
  border-radius: 12px;
}
.svc-card-title {
  font-family: var(--serif);
  font-size: 15px; font-weight: 600; letter-spacing: 1px;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.svc-card-title i { font-size: 13px; color: var(--gold); }

.svc-other-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.svc-other-list a {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-family: var(--sans);
  padding: 10px 12px; border-radius: 6px;
  color: var(--text-dim);
  transition: all .2s ease;
}
.svc-other-list a:hover { color: var(--gold-light); background: rgba(212,175,55,.07); }
.svc-other-list a.active { color: var(--gold); background: rgba(212,175,55,.10); font-weight: 600; }
.svc-other-list a i { font-size: 9px; opacity: 0; transition: opacity .2s ease; color: var(--gold); }
.svc-other-list a.active i,
.svc-other-list a:hover i { opacity: 1; }

/* Location search + chips */
.svc-loc-search {
  position: relative; margin-bottom: 14px;
}
.svc-loc-search input {
  width: 100%;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(212,175,55,.30);
  border-radius: 8px;
  padding: 10px 14px 10px 36px;
  font-family: var(--sans); font-size: 12.5px;
  color: var(--text);
  outline: none;
  transition: border-color .2s ease;
}
.svc-loc-search input:focus { border-color: var(--gold); }
.svc-loc-search input::placeholder { color: var(--text-dim); }
.svc-loc-search i {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  font-size: 12px; color: var(--gold-deep);
}

.svc-loc-back {
  font-size: 11px; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 14px; font-weight: 600; letter-spacing: .5px;
  transition: gap .2s ease;
}
.svc-loc-back:hover { gap: 9px; color: var(--gold-light); }

.svc-loc-current {
  padding: 12px 14px; margin-bottom: 14px;
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  background: rgba(212,175,55,.08);
}
.svc-loc-current .label {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dim); font-weight: 700; display: block; margin-bottom: 3px;
}
.svc-loc-current .value {
  font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--gold-light);
}

.svc-loc-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 4px;
  max-height: 380px; overflow-y: auto;
  padding-right: 4px;
}
.svc-loc-list::-webkit-scrollbar { width: 5px; }
.svc-loc-list::-webkit-scrollbar-track { background: rgba(255,255,255,.03); border-radius: 4px; }
.svc-loc-list::-webkit-scrollbar-thumb { background: rgba(212,175,55,.35); border-radius: 4px; }
.svc-loc-list::-webkit-scrollbar-thumb:hover { background: rgba(212,175,55,.55); }
.svc-loc-list a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; padding: 9px 12px; border-radius: 6px;
  color: var(--text-dim);
  transition: all .2s ease;
}
.svc-loc-list a:hover { color: var(--gold-light); background: rgba(212,175,55,.07); padding-left: 16px; }
.svc-loc-list a.active { color: #1a1407; background: var(--gold-grad); font-weight: 700; }
.svc-loc-list a i { font-size: 9px; opacity: .5; }
.svc-loc-empty { font-size: 12px; color: var(--text-dim); padding: 10px 4px; font-style: italic; }

.svc-cta-card {
  padding: 28px; text-align: center;
  background:
    radial-gradient(80% 80% at 50% 0%, rgba(212,175,55,.14), transparent 70%),
    linear-gradient(160deg, var(--panel-2), #0b0b0b);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
}
.svc-cta-card p {
  font-family: var(--serif); font-size: 15px; color: var(--text);
  margin-bottom: 16px; line-height: 1.5;
}
.svc-cta-card .btn { width: 100%; text-align: center; margin-bottom: 10px; }
.svc-cta-card .btn:last-child { margin-bottom: 0; }

/* ===================== HİZMET SAYFASI RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .svc-layout { grid-template-columns: 1fr; }
  .svc-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .svc-aside > .svc-card { flex: 1 1 280px; }
}
@media (max-width: 760px) {
  .svc-section { padding: 44px 0 60px; }
  .svc-article { padding: 26px 20px; }
  .svc-benefits { grid-template-columns: repeat(2, 1fr); }
  .svc-aside { flex-direction: column; }
  .il-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
  .hero-actions .btn { flex: 1 1 auto; text-align: center; }
}
@media (max-width: 560px) {
  .svc-benefits { grid-template-columns: 1fr 1fr; }
  .svc-card { padding: 20px; }
  .svc-article { padding: 22px 16px; font-size: 14.5px; }
  .svc-breadcrumb { font-size: 10px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
@media (max-width: 420px) {
  .svc-benefits { grid-template-columns: 1fr; }
}

/* ===================== MOBİL MENÜ — OFF-CANVAS DRAWER ===================== */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 190;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

@media (max-width: 980px) {
  .nav-overlay { display: block; }
  .nav-drawer-head,
  .nav-drawer-foot { display: flex; }

  .main-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(86vw, 360px);
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(165deg, var(--panel), #0a0a0a 70%);
    border-left: 1px solid var(--border-gold);
    box-shadow: -24px 0 60px rgba(0,0,0,.7);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 100px 0 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.16,1,.3,1);
  }
  .main-nav.open { transform: translateX(0); }

  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .main-nav > ul > li {
    border-bottom: 1px solid rgba(212,175,55,.12);
  }
  .main-nav > ul > li > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 28px;
    font-size: 14.5px; letter-spacing: 1.5px;
  }

  /* Mega panel mobilde devre dışı: akış içine giren basit bir
     akordeon kutusuna döner (position/opacity/visibility sıfırlanır). */
  .has-dropdown { position: static; }
  .mega-panel {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    pointer-events: auto;
    display: none;
  }
  .has-dropdown.dd-open .mega-panel { display: block; }
  .mega-panel-inner { padding: 0; }
  .dropdown {
    width: auto;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    box-shadow: none; border: none;
    border-radius: 0;
    background: rgba(0,0,0,.25);
    padding: 6px 12px 14px 28px;
  }
  .dropdown::before { display: none; }
  .dropdown li a {
    padding: 13px 16px;
    font-size: 13px;
    border-left: 2px solid rgba(212,175,55,.25);
    border-radius: 0 6px 6px 0;
  }
  .dropdown li a:hover { padding-left: 20px; border-left-color: var(--gold); }

  .dropdown-toggle-icon {
    margin-left: auto;
    transition: transform .3s ease;
    font-size: 12px;
  }
  .has-dropdown.dd-open .dropdown-toggle-icon { transform: rotate(180deg); color: var(--gold); }

  /* Drawer içi marka başlığı */
  .nav-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 28px 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(212,175,55,.18);
  }
  .nav-drawer-head span {
    font-family: var(--serif); font-size: 11px; letter-spacing: 3px;
    color: var(--gold-deep); text-transform: uppercase;
  }
  .nav-close {
    background: none; border: 1px solid rgba(212,175,55,.3);
    color: var(--gold); width: 34px; height: 34px; border-radius: 50%;
    display: grid; place-items: center; cursor: pointer; font-size: 14px;
    transition: all .2s ease;
  }
  .nav-close:hover { background: rgba(212,175,55,.12); border-color: var(--gold); }

  /* Drawer alt kısmı: hızlı iletişim CTA'ları */
  .nav-drawer-foot {
    margin-top: auto;
    padding: 20px 28px 0;
    display: flex; flex-direction: column; gap: 10px;
  }
  .nav-drawer-foot .btn { width: 100%; text-align: center; }

  body.nav-locked { overflow: hidden; }
}


/* Card CTA badge (görünür hover'da) */
.card-cta {
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 6px;
  opacity: 0; transform: translateY(4px);
  transition: opacity .3s ease, transform .3s ease, color .3s ease;
}
.card-cta i { font-size: 9px; transition: transform .3s ease; }
.card:hover .card-cta { opacity: 1; transform: translateY(0); color: var(--gold-light); }
.card:hover .card-cta i { transform: translateX(3px); }
/* ============================================================
   SCROLL REVEAL — başlıklar, kartlar, FAQ, kademeli animasyon
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--d, 0s);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Kartlarda hafif ölçek hissi de katalım */
.card.reveal { transform: translateY(22px) scale(.97); }
.card.reveal.in-view { transform: translateY(0) scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
/* ============================================================
   YENİ ANASAYFA BÖLÜMLERİ
   ============================================================ */

/* ---------- 1) SÜREÇ: Nasıl Çalışırız (yatay zaman çizelgesi) ---------- */
.process {
  position: relative;
  padding: 90px 0 100px;
  background:
    radial-gradient(50% 60% at 50% 100%, rgba(212,175,55,.08), transparent 70%),
    var(--black);
}
.process-track {
  position: relative;
  max-width: 1100px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 34px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold) 12%, var(--border-gold) 88%, transparent);
}
.process-step {
  position: relative;
  text-align: center;
  padding: 0 16px;
}
.process-num {
  position: relative;
  z-index: 2;
  width: 68px; height: 68px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--serif); font-size: 24px; font-weight: 700;
  color: var(--gold);
  background: radial-gradient(circle at 50% 35%, rgba(212,175,55,.16), var(--black) 72%);
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 0 6px var(--black), inset 0 0 18px rgba(212,175,55,.10);
  transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}
.process-step:hover .process-num {
  border-color: var(--gold);
  box-shadow: 0 0 0 6px var(--black), 0 0 26px rgba(212,175,55,.45), inset 0 0 22px rgba(212,175,55,.2);
  transform: translateY(-3px);
}
.process-step h3 {
  font-family: var(--serif); font-size: 16px; font-weight: 600;
  letter-spacing: .5px; color: var(--gold-light); margin-bottom: 10px;
}
.process-step p { font-size: 12.5px; color: var(--text-dim); line-height: 1.6; }

/* ---------- 2) RAKAMLAR: istatistik bandı ---------- */
.stats-band {
  position: relative;
  padding: 64px 0;
  background: linear-gradient(180deg, #0c0b08, #070707);
  border-top: 1px solid rgba(212,175,55,.14);
  border-bottom: 1px solid rgba(212,175,55,.14);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(212,175,55,.14);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 700;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
  filter: drop-shadow(0 0 16px rgba(212,175,55,.30));
}
.stat-number .suffix { font-size: .55em; }
.stat-label {
  margin-top: 10px;
  font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- 3) NEDEN BİZ: değer önerisi kartları (asimetrik) ---------- */
.why-us {
  position: relative;
  padding: 100px 0;
  background: var(--black);
}
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.why-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 30px 70px rgba(0,0,0,.6);
}
.why-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.75) saturate(1.2) sepia(.18);
}
.why-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,7,7,.85) 100%);
}
.why-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 2;
  font-family: var(--serif); font-size: 18px; color: var(--gold-light);
  letter-spacing: .5px; text-shadow: 0 2px 10px #000;
}
.why-list { display: flex; flex-direction: column; gap: 26px; }
.why-list h2 { text-align: left; margin-bottom: 6px; }
.why-list > p.why-intro { color: var(--text-dim); font-size: 15px; line-height: 1.75; margin-bottom: 10px; }
.why-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 4px 0;
}
.why-item .num {
  flex-shrink: 0;
  font-family: var(--serif); font-size: 28px; font-weight: 700;
  color: var(--gold-deep); opacity: .55; line-height: 1;
  width: 44px;
}
.why-item h4 {
  font-family: var(--serif); font-size: 16px; font-weight: 600;
  color: var(--text); margin-bottom: 5px;
}
.why-item p { font-size: 13px; color: var(--text-dim); line-height: 1.65; }

/* ---------- 4) TESTIMONIAL: müşteri görüşleri (kart slider, CSS-only scroll) ---------- */
.testimonials {
  position: relative;
  padding: 90px 0 100px;
  background:
    radial-gradient(55% 50% at 50% 0%, rgba(212,175,55,.08), transparent 70%),
    var(--black-2);
}
.testi-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
  margin-top: 50px;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,55,.4) transparent;
}
.testi-track::-webkit-scrollbar { height: 6px; }
.testi-track::-webkit-scrollbar-track { background: rgba(255,255,255,.03); border-radius: 4px; }
.testi-track::-webkit-scrollbar-thumb { background: rgba(212,175,55,.35); border-radius: 4px; }
.testi-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(260px, 32vw, 340px);
  background: linear-gradient(160deg, var(--panel-2), #0b0b0b);
  border: 1px solid rgba(212,175,55,.30);
  border-radius: 14px;
  padding: 30px 26px;
  position: relative;
  transition: border-color .3s ease, transform .3s ease;
}
.testi-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.testi-quote-icon {
  font-size: 30px; color: var(--gold-deep); opacity: .5;
  margin-bottom: 12px; display: block;
}
.testi-card p {
  font-size: 13.5px; color: var(--text-dim); line-height: 1.75;
  margin-bottom: 20px; min-height: 95px;
}
.testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 10px; letter-spacing: 2px; }
.testi-name {
  font-family: var(--serif); font-size: 14.5px; font-weight: 600;
  color: var(--gold-light);
}
.testi-role { font-size: 11px; color: var(--text-dim); letter-spacing: .5px; }
.testi-hint {
  text-align: center; margin-top: 6px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-dim);
}
.testi-hint i { color: var(--gold); margin: 0 4px; }

/* ---------- Responsive: yeni section'lar ---------- */
@media (max-width: 900px) {
  .process-track { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-track::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(212,175,55,.14); padding-bottom: 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-visual { aspect-ratio: 16/9; }
  .why-list h2 { text-align: center; }
  .why-list > p.why-intro { text-align: center; }
}
@media (max-width: 560px) {
  .process-track { grid-template-columns: 1fr; row-gap: 32px; }
  .stats-grid { grid-template-columns: 1fr; row-gap: 24px; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(212,175,55,.14); padding-bottom: 20px; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .testi-card { flex-basis: 82vw; }
}
/* ============================================================
   ARSA / ARAÇ İLAN MODÜLÜ — Listeleme ve Detay
   ============================================================ */
.listing-section { padding: 60px 0 100px; }
.listing-empty { text-align: center; color: var(--text-dim); font-size: 15px; padding: 60px 0; }

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.listing-card {
  display: flex; flex-direction: column;
  background: var(--panel);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.listing-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--glow); }
.listing-thumb {
  position: relative; height: 200px;
  background-size: cover; background-position: center;
}
.listing-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px;
  padding: 5px 10px; border-radius: 4px; color: #0a0a0a;
  background: var(--gold-grad);
}
.listing-badge.badge-rezerve { background: linear-gradient(180deg,#f0c674,#c98f1f); }
.listing-badge.badge-satildi { background: #555; color: #ddd; }
.listing-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.listing-body h3 {
  font-family: var(--serif); font-size: 16.5px; color: var(--gold-light);
  line-height: 1.35; margin-bottom: 8px;
}
.listing-loc { font-size: 12.5px; color: var(--text-dim); margin-bottom: 10px; }
.listing-loc i { color: var(--gold); margin-right: 4px; }
.listing-specs {
  display: flex; flex-wrap: wrap; gap: 10px 16px;
  font-size: 12px; color: var(--text-dim); margin-bottom: 14px;
}
.listing-specs i { color: var(--gold); margin-right: 4px; }
.listing-price {
  margin-top: auto; font-family: var(--serif); font-size: 18px;
  font-weight: 700; color: var(--gold-light); letter-spacing: .5px;
}

/* ---- Detay sayfası: Galeri ---- */
.listing-gallery { margin-bottom: 28px; }
.gallery-main {
  width: 100%; aspect-ratio: 16/10; border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(212,175,55,.25); background: var(--panel);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumb {
  width: 86px; height: 64px; object-fit: cover; border-radius: 6px;
  cursor: pointer; opacity: .55; border: 2px solid transparent; transition: all .25s;
}
.gallery-thumb:hover { opacity: .85; }
.gallery-thumb.active { opacity: 1; border-color: var(--gold); }

.listing-price-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--panel-2); border: 1px solid var(--border-gold);
  border-radius: 10px; padding: 16px 22px; margin-bottom: 24px;
}
.listing-price-bar .price { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--gold-light); }

.spec-table {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(212,175,55,.14); border: 1px solid rgba(212,175,55,.14);
  border-radius: 10px; overflow: hidden; margin-bottom: 26px;
}
.spec-table > div {
  background: var(--panel); padding: 13px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.spec-table span { font-size: 11px; letter-spacing: .8px; color: var(--text-dim); text-transform: uppercase; }
.spec-table strong { font-size: 14px; color: var(--text); font-weight: 600; }

/* ---- Lightbox ---- */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(5,5,5,.94); z-index: 999;
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img { max-width: 92vw; max-height: 86vh; border-radius: 8px; border: 1px solid var(--border-gold); }
.lightbox-close {
  position: absolute; top: 22px; right: 28px; color: var(--gold-light);
  font-size: 30px; cursor: pointer; background: none; border: none;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--gold-light); font-size: 26px; background: rgba(0,0,0,.4);
  border: 1px solid var(--border-gold); border-radius: 50%;
  width: 46px; height: 46px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lightbox-nav.prev { left: 22px; }
.lightbox-nav.next { right: 22px; }

@media (max-width: 720px) {
  .listing-grid { grid-template-columns: 1fr; }
  .spec-table { grid-template-columns: 1fr; }
  .listing-price-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .gallery-main { aspect-ratio: 4/3; }
}