/* ============================================================
   FORZA REAL ESTATE — High-End Realty stili (koyu + altın)
   ============================================================ */

:root {
  --bg: #0a0a0a;          /* saf koyu zemin */
  --bg-2: #101010;        /* ikincil koyu */
  --bg-3: #181818;        /* kart / yüzey */
  --line: rgba(255, 255, 255, .16);
  --line-soft: rgba(255, 255, 255, .07);

  --gold: #d6d6d6;        /* gümüş-beyaz aksan */
  --gold-2: #ffffff;      /* beyaz */
  --gold-soft: rgba(255, 255, 255, .10);

  --text: #f4f4f4;        /* ana metin (beyaz) */
  --muted: #b0b0b0;       /* ikincil metin (gri) */
  --muted-2: #7d7d7d;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Inter", system-ui, sans-serif;

  --radius: 6px;
  --container: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: #1a1410; }

.container { width: min(92%, var(--container)); margin-inline: auto; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 999; background: var(--gold); color: #1a1410; padding: 10px 16px; }
.skip-link:focus { left: 0; }

/* Ortak başlık tipografisi */
.eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 5px; text-transform: uppercase; color: var(--gold);
}
.serif { font-family: var(--serif); }

/* Altın elmas amblem (bölüm ayracı) */
.diamond { display: inline-flex; }
.diamond svg { width: 46px; height: 46px; }
.divider {
  display: flex; align-items: center; justify-content: center; gap: 22px; margin: 0 auto;
}
.divider::before, .divider::after { content: ""; height: 1px; width: min(140px, 22vw); background: linear-gradient(90deg, transparent, var(--line)); }
.divider::after { background: linear-gradient(90deg, var(--line), transparent); }

/* Butonlar */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 26px; border-radius: 50px;
  background: #fff; color: #15110c;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.btn .ic { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: #15110c; }
.btn:hover { transform: translateY(-3px); background: var(--gold); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--gold); color: #15110c; border-color: var(--gold); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: linear-gradient(180deg, rgba(8,8,8,.7) 0%, rgba(8,8,8,.25) 55%, transparent 100%);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 9, 8, .9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.header-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  width: min(94%, 1360px); margin-inline: auto;
  height: auto; padding-block: 14px; transition: padding .4s var(--ease);
}
.site-header.scrolled .header-inner { padding-block: 8px; }

.logo { display: flex; align-items: center; }
.logo-img { height: clamp(68px, 7.5vw, 128px); width: auto; display: block; transition: height .4s var(--ease); }
.site-header.scrolled .logo-img { height: clamp(50px, 4.6vw, 74px); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 13.5px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text); position: relative; transition: color .25s var(--ease);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .55); white-space: nowrap;
}
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0; background: var(--gold); transition: width .3s var(--ease); }
.main-nav a:not(.nav-cta):hover::after { width: 100%; }
.main-nav a:hover { color: var(--gold); }
.nav-cta {
  padding: 12px 22px; border: 1px solid var(--gold); border-radius: 50px;
  color: var(--gold) !important; letter-spacing: 1.5px; white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: #15110c !important; }

.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 8px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(12,11,10,.45) 0%, transparent 22%, rgba(12,11,10,.6) 62%, rgba(12,11,10,.96) 100%),
    linear-gradient(90deg, rgba(12,11,10,.7) 0%, rgba(12,11,10,.2) 50%, transparent 80%),
    url("https://images.unsplash.com/photo-1613490493576-7fde63acd811?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
  transform: scale(1.05); animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-inner { position: relative; z-index: 2; width: min(94%, 1360px); margin-inline: auto; padding-bottom: 90px; padding-top: 140px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.hero-eyebrow::before { content: ""; width: 46px; height: 1px; background: var(--gold); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: end; }
.hero-title { font-family: var(--serif); font-weight: 500; font-size: clamp(3.2rem, 8vw, 7rem); line-height: .98; letter-spacing: -1px; }
.hero-right { padding-bottom: 12px; }
.hero-desc { font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.5; color: var(--text); margin-bottom: 30px; }

/* Hero arama kutusu */
.hero-search {
  margin-top: 46px; display: grid; grid-template-columns: 1fr 1fr 1fr 1.4fr auto; gap: 1px;
  background: var(--line-soft); border: 1px solid var(--line);
  border-radius: 8px; overflow: hidden; backdrop-filter: blur(6px);
}
.hero-search .f { background: rgba(16,14,12,.7); padding: 14px 18px; display: flex; flex-direction: column; }
.hero-search label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.hero-search select, .hero-search input { background: transparent; border: none; outline: none; color: var(--text); font-family: var(--sans); font-size: 14px; }
.hero-search select option { background: #16130f; }
.hero-search .search-btn { background: var(--gold); color: #15110c; padding: 0 30px; display: flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transition: background .3s; }
.hero-search .search-btn:hover { background: var(--gold-2); }

.scroll-cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); width: 26px; height: 42px; border: 1px solid var(--line); border-radius: 16px; z-index: 2; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: var(--gold); border-radius: 4px; transform: translateX(-50%); animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 24px; } 100% { opacity: 0; } }

/* ============================================================
   ÖZELLİK ŞERİDİ (arch icons)
   ============================================================ */
.features { background: var(--bg); padding: 70px 0; border-bottom: 1px solid var(--line-soft); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature { display: flex; align-items: center; gap: 16px; justify-content: center; }
.feature .arch {
  width: 64px; height: 34px; border: 1px solid var(--gold); border-bottom: none;
  border-radius: 34px 34px 0 0; display: grid; place-items: end center; padding-bottom: 4px; color: var(--gold);
}
.feature .arch svg { width: 26px; height: 26px; }
.feature .lbl { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); line-height: 1.5; }
.feature .lbl b { display: block; color: var(--text); font-weight: 500; }

/* ============================================================
   GENEL BÖLÜM
   ============================================================ */
.section { padding: clamp(80px, 10vw, 140px) 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -.5px; }
.section-desc { font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--muted); margin-top: 22px; line-height: 1.55; }
.section-head .divider { margin: 26px auto; }

/* ============================================================
   SÜREÇ ZAMAN ÇİZELGESİ (01/02/03)
   ============================================================ */
.process { background: var(--bg); position: relative; }
.timeline { position: relative; max-width: 1100px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--line); transform: translateX(-50%); }
.step { display: grid; grid-template-columns: 1fr 90px 1fr; align-items: center; gap: 20px; margin-bottom: 70px; }
.step:last-child { margin-bottom: 0; }
.step-num { width: 64px; height: 72px; margin: 0 auto; display: grid; place-items: center; color: var(--gold); font-family: var(--serif); font-size: 1.5rem;
  background: var(--bg); border: 1px solid var(--line);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.step-text { }
.step-text h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 6px; }
.step-text .with-rule { display: flex; gap: 18px; }
.step-text .with-rule .rule { width: 1px; background: var(--gold); flex: none; }
.step-text p { color: var(--muted); font-size: .98rem; }
.step-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; }
.step-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.step-media:hover img { transform: scale(1.05); }
/* sıralama: tek adımlarda metin solda görsel sağda; çift adımlarda ters */
.step.right .step-text { order: 3; text-align: left; }
.step.right .step-media { order: 1; }
.step.right .step-num { order: 2; }
.step.left .step-media { order: 3; }
.step.left .step-text { order: 1; text-align: right; }
.step.left .step-text .with-rule { flex-direction: row-reverse; }
.step.left .step-num { order: 2; }

/* ============================================================
   İLANLAR (overlay kartlar)
   ============================================================ */
.listings { background: var(--bg-2); }
.filter-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 46px; }
.tab { padding: 9px 22px; border-radius: 50px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line-soft); transition: all .25s var(--ease); }
.tab:hover { color: var(--text); border-color: var(--line); }
.tab.active { background: var(--gold); color: #15110c; border-color: var(--gold); }

.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; display: block;
  border: 1px solid var(--line-soft);
}
.card img.ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform .8s var(--ease); }
.card:hover img.ph { transform: scale(1.06); }
.card .ph-fallback { position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg, #1a1715, #0c0b0a); }
.card::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(12,11,10,.05) 35%, rgba(12,11,10,.55) 70%, rgba(12,11,10,.95) 100%); }
.card-badge {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  background: rgba(12,11,10,.8); border: 1px solid var(--line); color: var(--gold);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 7px 13px; border-radius: 3px;
}
.card-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 24px 22px; }
.card-meta { display: flex; gap: 16px; color: var(--gold); font-size: 12px; letter-spacing: .5px; margin-bottom: 10px; flex-wrap: wrap; }
.card-meta span { display: flex; align-items: center; gap: 6px; }
.card-title { font-family: var(--serif); font-weight: 500; font-size: 1.6rem; line-height: 1.1; }
.card-price { font-size: .95rem; color: var(--text); margin-top: 6px; letter-spacing: .5px; }
.card-price b { color: var(--gold); font-weight: 600; }
.no-result { text-align: center; color: var(--muted); padding: 50px 0; }
.listings-more { text-align: center; margin-top: 54px; }

/* ============================================================
   İSTATİSTİK BANDI
   ============================================================ */
.stats { background: var(--bg); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--gold); line-height: 1; }
.stat .lbl { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ============================================================
   DANIŞMANLAR
   ============================================================ */
.consultants { background: var(--bg-2); }
.consultant-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.consultant { text-align: center; }
.consultant-photo { aspect-ratio: 3/4; border-radius: var(--radius); margin-bottom: 16px; background: linear-gradient(150deg, #211c17, #0c0b0a); display: grid; place-items: center; position: relative; overflow: hidden; border: 1px solid var(--line-soft); transition: transform .4s var(--ease); }
.consultant-photo::after { content: attr(data-initial); color: var(--gold); font-family: var(--serif); font-size: 2.6rem; }
.consultant:hover .consultant-photo { transform: translateY(-6px); border-color: var(--line); }
.consultant h3 { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; }
.consultant p { color: var(--muted); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
.consultant-tel { display: inline-block; margin-top: 10px; color: var(--gold); font-size: 14px; letter-spacing: .5px; transition: color .25s var(--ease); }
.consultant-tel:hover { color: var(--gold-2); }

/* ============================================================
   CTA
   ============================================================ */
.cta-band { background: linear-gradient(120deg, #15110c, #0c0b0a); text-align: center; border-top: 1px solid var(--line-soft); }
.cta-inner { max-width: 760px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1; margin-bottom: 18px; }
.cta-inner p { color: var(--muted); font-family: var(--serif); font-size: 1.3rem; margin-bottom: 34px; }
.cta-inner .btn { justify-content: center; }

/* ============================================================
   İLETİŞİM
   ============================================================ */
.contact { background: var(--bg-2); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-list { margin-top: 26px; display: grid; gap: 14px; }
.contact-list li { color: var(--muted); }
.contact-list strong { color: var(--text); font-weight: 500; }
.contact-list a { color: var(--gold); }
.contact-form { display: grid; gap: 14px; background: var(--bg-3); padding: 36px; border-radius: var(--radius); border: 1px solid var(--line-soft); }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px 18px; border: 1px solid var(--line-soft); border-radius: 4px; background: rgba(0,0,0,.25); color: var(--text); font-family: var(--sans); font-size: 15px; transition: border-color .25s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted-2); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; }
.form-status { font-size: 14px; text-align: center; min-height: 20px; }
.form-status.ok { color: var(--gold-2); }
.form-status.err { color: #e08a8a; }

.contact-map { position: relative; margin-top: 56px; height: 380px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); }
.contact-map iframe { display: block; width: 100%; height: 100%; filter: grayscale(1) invert(.92) contrast(.9); }
.map-btn { position: absolute; right: 16px; bottom: 16px; z-index: 2; background: var(--gold); color: #15110c; font-size: 13px; font-weight: 500; letter-spacing: 1px; padding: 12px 20px; border-radius: 50px; transition: transform .25s; }
.map-btn:hover { transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg); padding-top: 70px; border-top: 1px solid var(--line-soft); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-logo .logo-img { height: 110px; }
.footer-col p { margin-top: 16px; color: var(--muted); font-size: .92rem; }
.footer-col h4 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; margin-bottom: 18px; color: var(--text); }
.footer-col a { display: block; margin-bottom: 10px; color: var(--muted); font-size: .92rem; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); color: var(--muted); display: grid; place-items: center; margin: 0; transition: all .25s; }
.footer-social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); padding-left: 0; }
.footer-bottom { border-top: 1px solid var(--line-soft); padding: 22px 0; }
.footer-bottom p { font-size: .82rem; color: var(--muted-2); text-align: center; }

/* ============================================================
   SABİT BUTONLAR (WhatsApp + Instagram)
   ============================================================ */
.ig-float, .wa-float {
  position: fixed; right: 22px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold); color: #15110c;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0,0,0,.4);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.wa-float { bottom: 22px; }
.ig-float { bottom: 86px; }
.ig-float:hover, .wa-float:hover { transform: translateY(-3px) scale(1.06); background: var(--gold-2); }

/* ============================================================
   HAKKIMIZDA (alternating)
   ============================================================ */
.about { background: var(--bg); }
.about-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 100px; }
.about-row:last-child { margin-bottom: 0; }
.about-row.rev .about-media { order: 2; }
.about-row.rev .about-text { order: 1; }
.about-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; border: 1px solid var(--line-soft); }
.about-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.about-media:hover img { transform: scale(1.05); }
.about-text .eyebrow { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.about-text .eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--gold); }
.about-text h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 3.5vw, 2.9rem); line-height: 1.1; margin-bottom: 18px; }
.about-text p { color: var(--muted); margin-bottom: 30px; font-size: 1.02rem; }
.creds { display: grid; gap: 8px; margin: -8px 0 30px; padding: 16px 20px; border-left: 2px solid var(--gold); background: var(--gold-soft); border-radius: 0 6px 6px 0; }
.creds span { font-size: .85rem; color: var(--muted); letter-spacing: .3px; }
.creds b { color: var(--text); }

/* ============================================================
   BÖLGELER (Our Areas)
   ============================================================ */
.areas { background: var(--bg-2); }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.area { position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); display: block; }
.area img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.area:hover img { transform: scale(1.06); }
.area::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,11,10,.15) 30%, rgba(12,11,10,.9) 100%); }
.area-idx { position: absolute; top: 20px; left: 22px; z-index: 2; font-size: 12px; letter-spacing: 3px; color: var(--gold); }
.area-body { position: absolute; inset: 0; z-index: 2; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; }
.area h3 { font-family: var(--serif); font-weight: 500; font-size: 1.9rem; letter-spacing: 1px; }
.area .cnt { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.area .view { margin-top: 14px; font-size: 11px; letter-spacing: 2px; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; }
.area .view::before { content: ""; width: 22px; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.area:hover .view::before { width: 40px; }

/* ============================================================
   BLOG
   ============================================================ */
.blog { background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post { background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), border-color .4s; }
.post:hover { transform: translateY(-6px); border-color: var(--line); }
.post-media { aspect-ratio: 16/11; overflow: hidden; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post:hover .post-media img { transform: scale(1.05); }
.post-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post-tag { align-self: flex-start; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); border: 1px solid var(--line); padding: 5px 11px; border-radius: 3px; margin-bottom: 16px; }
.post h3 { font-family: var(--serif); font-weight: 500; font-size: 1.45rem; line-height: 1.2; margin-bottom: 10px; }
.post p { color: var(--muted); font-size: .92rem; margin-bottom: 16px; }
.post .by { color: var(--muted-2); font-size: .85rem; margin-top: auto; }

/* ============================================================
   MEMNUNİYET (final CTA)
   ============================================================ */
.satisfaction { position: relative; overflow: hidden; border-top: 1px solid var(--line-soft); }
.satisfaction .bg { position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, var(--bg) 30%, rgba(12,11,10,.55) 60%, rgba(12,11,10,.2) 100%),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1600&q=80") right center/cover no-repeat; }
.satisfaction .inner { position: relative; z-index: 1; max-width: 580px; }
.satisfaction .diamond { display: inline-flex; margin-bottom: 26px; }
.satisfaction h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1.1; margin-bottom: 18px; }
.satisfaction p { color: var(--muted); margin-bottom: 32px; font-size: 1.05rem; }

@media (max-width: 1024px) {
  .area-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .about-row { grid-template-columns: 1fr; gap: 30px; margin-bottom: 64px; }
  .about-row.rev .about-media { order: 1; } .about-row.rev .about-text { order: 2; }
}
@media (max-width: 560px) {
  .area-grid, .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.listing-grid .card { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.listing-grid .card.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } .reveal, .card { opacity: 1 !important; transform: none !important; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .listing-grid, .features-grid, .consultant-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-right { padding-bottom: 0; }
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .logo-img, .site-header.scrolled .logo-img { height: 58px; }
  .site-header, .site-header.scrolled { backdrop-filter: none; background: rgba(10,9,8,.96); }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(82%, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 24px; padding: 40px;
    background: var(--bg-2); box-shadow: -20px 0 60px rgba(0,0,0,.6);
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 15px; }
  .main-nav a.nav-cta { width: 100%; text-align: center; }
  .hero-search { grid-template-columns: 1fr 1fr; }
  .hero-search .search-btn { grid-column: 1 / -1; padding: 14px; justify-content: center; }
  /* zaman çizelgesi tek sütun */
  .timeline::before { left: 30px; }
  .step { grid-template-columns: 60px 1fr; gap: 16px; }
  .step .step-num { order: 1 !important; margin: 0; }
  .step .step-text, .step.left .step-text, .step.right .step-text { order: 2 !important; text-align: left !important; }
  .step.left .step-text .with-rule { flex-direction: row !important; }
  .step .step-media { order: 3 !important; grid-column: 2; }
}
@media (max-width: 560px) {
  .listing-grid, .features-grid, .consultant-grid, .stats-grid, .contact-inner, .footer-grid { grid-template-columns: 1fr; }
  .hero-search { grid-template-columns: 1fr; }
  .ig-float, .wa-float { width: 48px; height: 48px; right: 14px; }
  .wa-float { bottom: 14px; } .ig-float { bottom: 72px; }
}

/* ============================================================
   İLAN DETAY SAYFASI
   ============================================================ */
.detail-page .header-inner { height: 82px !important; }
.detail-page .logo-img { height: 60px !important; }
.detail-page .site-header { background: rgba(10, 9, 8, .96); backdrop-filter: blur(12px); }

.detail-main { padding-top: 122px; padding-bottom: 80px; }
.back-link { display: inline-block; color: var(--muted); font-size: 13px; letter-spacing: 1px; margin-bottom: 24px; transition: color .25s var(--ease); }
.back-link:hover { color: var(--gold); }

.detail-top { display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; align-items: start; margin-bottom: 56px; }
.detail-top > * { min-width: 0; }
.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line-soft); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-badge { position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(10,10,10,.8); border: 1px solid var(--line); color: var(--gold); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; padding: 7px 14px; border-radius: 3px; }
.gallery-count { position: absolute; top: 16px; right: 16px; z-index: 2; background: rgba(10,10,10,.75); color: #fff; font-size: 12px; letter-spacing: 1px; padding: 6px 12px; border-radius: 30px; }
.gallery-all { position: absolute; bottom: 16px; right: 16px; z-index: 3; background: rgba(10,10,10,.82); border: 1px solid var(--line); color: #fff; font-size: 12px; letter-spacing: 1px; padding: 9px 16px; border-radius: 30px; cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease); }
.gallery-all:hover { background: var(--gold); color: #141414; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; scrollbar-color: var(--line) transparent; }
.gallery-thumbs::-webkit-scrollbar { height: 6px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.thumb { flex: 0 0 92px; aspect-ratio: 1; border-radius: 6px; overflow: hidden; border: 1px solid var(--line-soft); opacity: .55; transition: opacity .25s, border-color .25s; padding: 0; cursor: pointer; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active, .thumb:hover { opacity: 1; border-color: var(--gold); }
.gallery-note { color: var(--muted-2); font-size: 12px; margin-top: 12px; }

.detail-summary { background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px; position: sticky; top: 100px; }
.d-loc { color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.d-title { font-family: var(--serif); font-weight: 500; font-size: 1.9rem; line-height: 1.15; margin-bottom: 16px; }
.d-price { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); margin-bottom: 22px; }
.d-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: 8px; overflow: hidden; margin-bottom: 24px; }
.d-quick div { background: var(--bg-2); padding: 14px 16px; display: flex; flex-direction: column; }
.d-quick span { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-2); }
.d-quick b { font-size: 1.05rem; margin-top: 3px; }
.d-actions { display: grid; gap: 10px; margin-bottom: 18px; }
.d-actions .btn { justify-content: center; }
.d-ref { color: var(--muted-2); font-size: 12px; }

.d-section { margin-bottom: 48px; }
.d-h2 { font-family: var(--serif); font-weight: 500; font-size: 1.7rem; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: 8px; overflow: hidden; }
.spec { background: var(--bg-2); padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.spec span { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-2); }
.spec b { font-weight: 500; color: var(--text); }
.d-desc { color: var(--muted); font-size: 1.05rem; line-height: 1.8; max-width: 900px; }
.d-desc b { color: var(--text); font-weight: 500; }
.d-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 24px; margin-top: 24px; }
.d-features li { position: relative; padding-left: 24px; color: var(--muted); }
.d-features li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }

.agent-card { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 24px 28px; }
.agent-photo { width: 84px; height: 84px; border-radius: 50%; background: linear-gradient(150deg, #222, #0a0a0a); display: grid; place-items: center; border: 1px solid var(--line); }
.agent-photo::after { content: attr(data-initial); font-family: var(--serif); font-size: 1.8rem; color: var(--gold); }
.agent-info h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; }
.agent-info p { color: var(--muted); font-size: .9rem; }
.agent-cred { color: var(--muted-2); font-size: .8rem; margin-top: 4px; }
.agent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.agent-actions .btn { padding: 11px 18px; font-size: 12px; }

@media (max-width: 900px) {
  .detail-top { grid-template-columns: 1fr; }
  .detail-summary { position: static; }
  .spec-grid, .d-features { grid-template-columns: repeat(2, 1fr); }
  .agent-card { grid-template-columns: 1fr; text-align: center; }
  .agent-photo { margin: 0 auto; }
  .agent-actions { justify-content: center; }
}
@media (max-width: 560px) {
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .spec-grid, .d-features, .d-quick { grid-template-columns: 1fr 1fr; }
}
