/* ==========================================================================
   Ev-Ren Emlak — ana stil dosyası
   Marka paleti: sade, krem/kağıt tonlu zemin (ETA Ormancılık'ın kurumsal
   sadeliğinden ilham alınmıştır) — koyu lacivert "çerçeve" bloklarının yerini
   açık, sıcak krem tonları aldı. Lacivert/kırmızı sadece logo ve marka
   vurgularında (tabelamızdaki asıl renkler) kullanılıyor.
   Playfair Display + Manrope.
   ========================================================================== */

:root {
  /* Açık gövde paleti — sitenin tamamının zemini */
  --cream: #faf6ec;
  --cream-alt: #f2ead4;
  --cream-deep: #ebe0c4;
  --card: #ffffff;
  --border: #e6dcc0;
  --border-soft: #ede5cf;

  /* Vurgu (altın) — açık zeminde okunaklı ton / daha parlak vurgu, rozetteki altın "EMLAK" yazısıyla uyumlu */
  --accent: #a8791e;
  --accent-hover: #8a6318;
  --accent-bright: #d4b24a;

  /* Marka kırmızısı — tabeladaki "EMLAK" yazısının rengi; "Emlak" kelimesi geçen
     vurgularda (logo tipografisiyle uyumlu) kullanılır */
  --brand-red: #d01a20;
  --brand-red-bright: #f51e26;

  /* Tabeladan bire bir örneklenen "Ev-Ren" mavisi — yalnızca logo/marka
     vurgusu olarak kullanılır (artık sayfa zemini/çerçevesi değil) */
  --brand-blue: #124eae;

  /* Metin — açık zemin üzerinde (artık sitenin her yerinde bu palet geçerli) */
  --ink: #1a2436;
  --ink-soft: #3c4a63;
  --muted: #5c6a82;
  --muted-soft: #78889f;
  --muted-faint: #a3aec0;

  --max-width: 1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .2s ease, border-color .2s ease, opacity .2s ease; }
a:hover { color: var(--accent-hover); }

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; margin: 0; color: var(--ink); }

img { max-width: 100%; display: block; }

/* Gövde metinleri: satır sonları sağda da hizalı bitsin diye iki yana yaslı
   (justify) — Türkçe uzun kelimelerde boşluk aralarının açılmaması için
   hyphens: auto ile birlikte kullanılıyor. Son satır her zaman normal
   (sola yaslı) kalır; bu CSS'in standart davranışıdır. */
p, .dak-disclaimer, .data-source-note, .calc-note {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
}

.section { padding: 88px 0; border-bottom: 1px solid var(--border-soft); }
.section-alt { background: var(--cream-alt); }
.eyebrow {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease, box-shadow .2s ease;
  font-family: 'Manrope', sans-serif;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 65%);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px -14px rgba(168, 121, 30, 0.65);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-color: var(--accent-hover);
  box-shadow: 0 14px 28px -14px rgba(138, 99, 24, 0.7);
}
.btn-outline { border: 1px solid var(--brand-blue); color: var(--brand-blue); background: transparent; }
.btn-outline:hover { color: var(--accent-hover); border-color: var(--accent-hover); background: rgba(168, 121, 30, 0.06); }

.field {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 14px 16px;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  width: 100%;
}
.field:focus { outline: none; border-color: var(--accent); }
.field::placeholder { color: var(--muted-soft); }
textarea.field { min-height: 90px; resize: vertical; }
label.field-label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; display: block; margin-bottom: 6px; }

/* ---------- NAV (sade, krem/kağıt tonlu çerçeve) ---------- */
.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 40px;
  background: var(--cream-alt);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
}
.site-header nav { display: flex; justify-content: center; min-width: 0; }
.header-actions { display: flex; align-items: center; gap: 16px; justify-self: end; }
/* ---------- MARKA LOGOSU + YAZI TİPİ (logo-mark.png + "Ev-Ren Emlak" yazısı) ---------- */
.brand-lockup {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none;
}
.brand-logo-img { height: 44px; width: auto; display: block; }
.brand-wordmark { display: inline-flex; align-items: baseline; gap: 6px; white-space: nowrap; }
.brand-wordmark .evren {
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 19px;
  color: var(--brand-blue); letter-spacing: 0.01em;
}
.brand-wordmark .emlak {
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 16px;
  color: var(--brand-red); letter-spacing: 0.02em; text-transform: uppercase;
}
.brand-lockup-sm .brand-logo-img { height: 32px; }
.brand-lockup-sm .brand-wordmark .evren { font-size: 15px; }
.brand-lockup-sm .brand-wordmark .emlak { font-size: 12px; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink-soft); font-size: 15px; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap; }
.nav-links a:hover { color: var(--accent-hover); }
.nav-links a.active { color: var(--accent-hover); }
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  cursor: pointer; background: none; border: none; padding: 0;
}
.hamburger svg { stroke: var(--ink); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  padding: 22px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 28px; padding-top: 36px; }
.mobile-menu-links a { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--ink-soft); }
.mobile-menu-links a.active { color: var(--accent-hover); }
.mobile-menu .btn { margin-top: auto; width: 100%; }

/* ---------- FOOTER (sade, krem/kağıt tonlu çerçeve) ---------- */
.site-footer {
  padding: 56px 0 40px;
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
.footer-brand { display: flex; gap: 14px; align-items: flex-start; max-width: 340px; flex-direction: column; }
.footer-addr { font-size: 13px; line-height: 1.7; color: var(--muted); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links-title { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted-soft); margin-bottom: 2px; }
.footer-links a { font-size: 13px; color: var(--ink-soft); text-decoration: none; }
.footer-links a:hover { color: var(--accent-hover); }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contacts div { font-size: 13px; color: var(--ink-soft); }
.footer-contacts a { color: var(--ink-soft); }
.footer-contacts a:hover { color: var(--accent-hover); }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--muted-faint);
}
.footer-bottom a { color: var(--accent-hover); font-weight: 600; }

/* ---------- HERO ---------- */
.hero {
  display: flex; align-items: center; gap: 64px;
  padding-top: 96px; padding-bottom: 96px;
  position: relative;
}
.hero-copy { flex: 1 1 0; display: flex; flex-direction: column; gap: 24px; max-width: 620px; position: relative; z-index: 1; }
.hero-copy h1 { font-size: 54px; line-height: 1.12; }
.hero-copy p { margin: 0; font-size: 17px; line-height: 1.7; color: var(--muted); max-width: 520px; }
.hero-actions { display: flex; gap: 16px; padding-top: 8px; flex-wrap: wrap; }
.hero-visual { flex: 1 1 0; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }

/* ---------- ARKA PLAN GÖKDELEN ÇİZGİLERİ (ETA'daki eş yükselti eğrisi dokusundan ilham) ---------- */
.skyline-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.skyline-bg-svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; }

/* ---------- DÖNEN AMBLEM (ETA Ormancılık'taki "stamp" rozetinden ilham) ---------- */
.stamp-wrap {
  position: relative;
  width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-blue);
}
.stamp { width: 340px; height: 340px; animation: evren-spin 46s linear infinite; }
@keyframes evren-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.stamp-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.stamp-logo { width: 92px; height: auto; display: block; }
.stamp-wordmark { display: flex; align-items: baseline; gap: 6px; }
.stamp-wordmark .evren {
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 23px;
  color: var(--brand-blue); letter-spacing: 0.01em;
}
.stamp-wordmark .emlak {
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 17px;
  color: var(--brand-red); letter-spacing: 0.02em; text-transform: uppercase;
}

.hero-simple { padding-top: 96px; padding-bottom: 96px; max-width: 760px; display: flex; flex-direction: column; gap: 18px; }
.hero-simple h1 { font-size: 48px; line-height: 1.15; }
.hero-simple p { margin: 0; font-size: 16px; line-height: 1.75; color: var(--muted); }

/* ---------- TRUST STRIP ---------- */
.trust-strip { display: flex; padding: 44px 0; border-bottom: 1px solid var(--border-soft); }
.trust-item { flex: 1; display: flex; flex-direction: column; gap: 4px; padding: 0 24px; border-right: 1px solid var(--border-soft); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }
.trust-num { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 30px; color: var(--accent); }
.trust-label { font-size: 13px; color: var(--muted-soft); }

/* ---------- CANLI VERİ ROZETLERİ (TCMB EVDS) ---------- */
.data-strip { display: flex; gap: 16px; flex-wrap: wrap; padding-top: 28px; }
.data-chip {
  flex: 1 1 220px; display: flex; flex-direction: column; gap: 4px;
  background: var(--card); border: 1px solid var(--border);
  padding: 18px 20px;
}
.data-chip-label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-soft); }
.data-chip-value { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 24px; color: var(--ink); }
.data-chip-value span { font-size: 14px; font-weight: 600; color: var(--muted); font-family: 'Manrope', sans-serif; }
.data-chip-date { font-size: 11px; color: var(--muted-faint); }
.data-source-note { font-size: 12px; color: var(--muted-faint); padding-top: 6px; }

/* ---------- İLANLARIMIZ (sahibinden mağaza yönlendirme) ---------- */
.listings-showcase { background: var(--cream-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.listings-showcase-wrap { display: flex; align-items: center; gap: 56px; flex-wrap: wrap; }
.listings-showcase-copy { flex: 1 1 380px; display: flex; flex-direction: column; gap: 14px; max-width: 460px; }
.listings-showcase-copy h2 { font-size: 28px; line-height: 1.28; }
.listings-showcase-copy p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--muted); }
.listings-showcase-visual {
  flex: 1 1 340px; max-width: 420px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.listings-tile {
  aspect-ratio: 1/1;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.2s ease;
}
.listings-tile:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 14px 26px -18px rgba(26, 36, 54, 0.25); }
.listings-tile span { font-size: 11px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.03em; }

/* ---------- SECTION HEAD ---------- */
.section-head { display: flex; flex-direction: column; gap: 12px; max-width: 560px; margin-bottom: 36px; }
.section-head h2 { font-size: 32px; }

/* ---------- HİZMETLER TABS (homepage) ---------- */
.tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.tab-btn {
  background: var(--card); color: var(--ink-soft);
  border: 1px solid var(--border);
  padding: 14px 24px; font-weight: 700; font-size: 14px;
  cursor: pointer; font-family: 'Manrope', sans-serif;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.tab-btn:hover { border-color: var(--accent); color: var(--accent-hover); }
.tab-btn.active { background: linear-gradient(135deg, var(--accent-bright), var(--accent)); color: #fff; border-color: var(--accent); }
.tab-panel { max-width: 680px; font-size: 16px; line-height: 1.75; color: var(--ink-soft); padding: 32px; background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--accent); }

/* ---------- KİRA HESAPLAMA ---------- */
.calc-wrap { display: flex; gap: 64px; flex-wrap: wrap; }
.calc-copy { flex: 1 1 320px; display: flex; flex-direction: column; gap: 16px; max-width: 420px; }
.calc-copy p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--muted); }
.calc-note { font-size: 13px; line-height: 1.7; color: var(--muted-soft); padding-top: 8px; }
.calc-form { flex: 1 1 320px; max-width: 480px; display: flex; flex-direction: column; gap: 14px; }
.calc-result { padding: 28px; background: var(--card); border: 1px solid var(--accent); display: none; flex-direction: column; gap: 6px; }
.calc-result.show { display: flex; }
.calc-result-label { font-size: 13px; color: var(--muted-soft); }
.calc-result-value { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 28px; color: var(--ink); }

/* ---------- DEĞER ARTIŞ KAZANCI HESAPLAMA ---------- */
.dak-disclaimer {
  background: var(--cream-alt); border: 1px solid var(--border); border-left: 3px solid var(--accent);
  padding: 20px 24px; font-size: 13px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 40px;
}
.dak-disclaimer strong { color: var(--ink); }
.dak-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 640px; }
.dak-form .full { grid-column: 1 / -1; }
.dak-result { margin-top: 32px; padding: 32px; background: var(--card); border: 1px solid var(--border); display: none; flex-direction: column; gap: 14px; max-width: 640px; }
.dak-result.show { display: flex; }
.dak-result-row { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; color: var(--muted); padding-bottom: 12px; border-bottom: 1px solid var(--border-soft); }
.dak-result-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.dak-result-row span:last-child { color: var(--ink-soft); font-weight: 600; text-align: right; }
.dak-result-final { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; padding-top: 16px; border-top: 2px solid var(--accent); }
.dak-result-final-label { font-size: 13px; color: var(--muted-soft); }
.dak-result-final-value { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 30px; color: var(--ink); }
.dak-result-note { font-size: 12px; line-height: 1.6; color: var(--muted-faint); }
.dak-exempt { padding: 28px; background: var(--card); border: 1px solid var(--accent); display: none; flex-direction: column; gap: 8px; max-width: 640px; margin-top: 32px; }
.dak-exempt.show { display: flex; }
.dak-exempt h3 { font-size: 19px; }
.dak-exempt p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ---------- E-DEVLET YETKİ VERME REHBERİ ---------- */
.eids-intro { display: flex; flex-direction: column; gap: 16px; max-width: 760px; }
.eids-intro p { margin: 0; font-size: 15px; line-height: 1.75; color: var(--muted); }
.eids-callout {
  background: var(--cream-alt); border: 1px solid var(--border); border-left: 3px solid var(--accent);
  padding: 20px 24px; font-size: 13px; line-height: 1.7; color: var(--ink-soft); margin-top: 4px;
}
.eids-callout strong { color: var(--ink); }

.eids-official {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--cream-deep); border: 1px solid var(--border); padding: 26px 30px; margin-top: 28px;
}
.eids-official-badge { display: flex; align-items: center; gap: 16px; }
.eids-official-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-bright); display: flex; align-items: center; justify-content: center;
}
.eids-official-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 16px; color: var(--ink); }
.eids-official-text span { font-size: 12px; color: var(--muted); }
.eids-official .btn { flex-shrink: 0; white-space: nowrap; }

.eids-yetkino {
  background: var(--card); border: 2px solid var(--accent);
  padding: 36px 32px; display: flex; flex-direction: column; gap: 10px;
  max-width: 480px; text-align: center; margin: 0 auto;
}
.eids-yetkino-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-soft); }
.eids-yetkino-value { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 42px; color: var(--ink); letter-spacing: 0.03em; }
.eids-yetkino-sub { font-size: 13px; line-height: 1.6; color: var(--muted); }

.eids-steps { display: flex; flex-direction: column; }
.eids-step { display: flex; gap: 28px; align-items: flex-start; padding: 32px 0; border-bottom: 1px solid var(--border-soft); }
.eids-step:last-child { border-bottom: none; }
.eids-step-icon {
  flex-shrink: 0; width: 60px; height: 60px; border-radius: 50%;
  background: var(--cream-alt); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.eids-step-copy { display: flex; flex-direction: column; gap: 6px; }
.eids-step-kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.eids-step-copy h3 { font-size: 18px; }
.eids-step-copy p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--muted); }

/* ---------- EKİP GRID ---------- */
.team-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
.team-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border); }
.team-photo { aspect-ratio: 3/4; background: var(--cream-alt); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 14px; display: flex; flex-direction: column; gap: 4px; }
.team-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 14px; color: var(--ink); }
.team-role { font-size: 11px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.team-tenure { font-size: 11px; color: var(--muted-soft); }
.team-bio { margin: 2px 0 0; font-size: 12px; line-height: 1.6; color: var(--muted-soft); }

/* ---------- BÖLGE / REFERANS GRID ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.area-card { padding: 28px; background: var(--card); border: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.area-card h3 { font-size: 17px; }
.area-card p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--muted-soft); }
.testimonial-card {
  padding: 28px; background: var(--card); border: 1px dashed var(--border);
  display: flex; flex-direction: column; gap: 14px; min-height: 150px;
  justify-content: center; align-items: center;
}
.testimonial-placeholder { font-size: 11px; letter-spacing: 0.1em; color: var(--muted-faint); text-transform: uppercase; text-align: center; }

/* ---------- ETA CALLOUT ---------- */
.eta-callout { display: flex; align-items: center; gap: 28px; padding: 40px 0; border-bottom: 1px solid var(--border-soft); }
.eta-icon { flex-shrink: 0; }
.eta-copy { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.eta-copy h3 { font-size: 17px; }
.eta-copy p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--muted); }
.eta-link { border: 1px solid var(--accent); color: var(--accent); font-weight: 700; font-size: 13px; padding: 12px 22px; white-space: nowrap; flex-shrink: 0; }

/* ---------- KİRA GÜVENCE ZAMAN ÇİZELGESİ (örnek ödeme planı görseli) ---------- */
.kira-timeline-wrap { margin-top: 48px; padding: 32px; background: var(--card); border: 1px solid var(--border); }
.kira-timeline-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-soft); margin-bottom: 18px; }
.kira-timeline { display: flex; flex-wrap: wrap; gap: 8px; }
.kira-month {
  flex: 1 1 70px; min-width: 64px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 14px 6px; text-align: center; border: 1px solid var(--border); background: var(--cream);
}
.kira-month-num { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 20px; color: var(--ink); }
.kira-month-tag { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-soft); }
.kira-month.cash { background: var(--accent); border-color: var(--accent); }
.kira-month.cash .kira-month-num, .kira-month.cash .kira-month-tag { color: #fff; }
.kira-note-block {
  flex: 4 1 240px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 14px 16px; text-align: center; border: 1px dashed var(--accent); background: var(--cream-alt);
}
.kira-note-block-range { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 19px; color: var(--ink); }
.kira-note-block-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); }
.kira-note-block-sub { font-size: 10px; color: var(--muted-soft); }
.kira-note-months { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.kira-note-months-label { font-size: 12px; color: var(--muted-soft); }
.kira-note-ticks { display: flex; flex-wrap: wrap; gap: 6px; }
.kira-note-tick {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--muted); background: var(--card);
}
.kira-timeline-legend { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 18px; font-size: 12px; color: var(--muted); }
.kira-timeline-legend span { display: inline-flex; align-items: center; gap: 8px; }
.kira-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; flex-shrink: 0; background: var(--cream); border: 1px solid var(--border); }
.kira-dot.cash { background: var(--accent); border-color: var(--accent); }
.kira-dot.note { background: var(--cream-alt); border-color: var(--accent); border-style: dashed; }
.kira-timeline-note { margin: 18px 0 0; font-size: 12px; line-height: 1.6; color: var(--muted-faint); }

/* ---------- LEAD FORM ---------- */
.lead-wrap { display: flex; gap: 64px; flex-wrap: wrap; }
.lead-copy { flex: 1 1 320px; display: flex; flex-direction: column; gap: 16px; max-width: 420px; }
.lead-copy p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--muted); }
.lead-form-box { flex: 1 1 320px; max-width: 480px; }
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-thanks { padding: 40px; background: var(--card); border: 1px solid var(--accent); display: none; flex-direction: column; gap: 10px; }
.lead-thanks.show { display: flex; }
.lead-thanks h3 { font-size: 20px; }
.lead-thanks p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--muted); }
.form-msg { font-size: 13px; padding: 12px 14px; display: none; }
.form-msg.show { display: block; }
.form-msg.error { background: rgba(164,36,59,0.08); border: 1px solid #a4243b; color: #7a1f30; }

/* ---------- "GAYRİMENKULÜNÜ EKLE" MODALI ---------- */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(26, 36, 54, 0.55);
  z-index: 300;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 20px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-box {
  position: relative;
  width: 100%; max-width: 560px;
  background: var(--cream);
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px -30px rgba(15, 20, 30, 0.45);
  padding: 40px 36px 36px;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--muted); transition: color .2s ease;
}
.modal-close:hover { color: var(--ink); }
.modal-head { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; max-width: 460px; }
.modal-head h3 { font-size: 22px; }
.modal-head p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- KOMİSYON HESAPLAMA (Gayrimenkulünü Ekle formu) ---------- */
.komisyon-box { background: var(--cream-alt); border: 1px solid var(--border); padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.komisyon-box-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-soft); margin-bottom: 2px; }
.komisyon-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--muted); }
.komisyon-row strong { color: var(--ink-soft); font-weight: 700; }
.komisyon-row-total { padding-top: 8px; margin-top: 2px; border-top: 1px solid var(--border); }
.komisyon-row-total span, .komisyon-row-total strong { color: var(--ink); font-size: 14px; }
.komisyon-note { font-size: 12px; line-height: 1.6; color: var(--accent-hover); font-weight: 600; margin-top: 4px; }
.komisyon-disclaimer { font-size: 11px; line-height: 1.6; color: var(--muted-faint); margin-top: 2px; }

/* ---------- SERVICE ROWS (hizmetler.php) ---------- */
.service-row { display: flex; gap: 56px; align-items: center; padding-top: 72px; padding-bottom: 72px; border-bottom: 1px solid var(--border-soft); }
.service-row.reverse { flex-direction: row-reverse; }
.service-visual { flex: 1 1 0; display: flex; align-items: center; justify-content: center; }
.service-num-box {
  width: 100%; max-width: 260px; aspect-ratio: 1/1;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.service-num-box.highlight { border-color: var(--accent); }
.service-num { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 88px; color: var(--border); }
.service-num.highlight { color: var(--accent); opacity: 0.45; }
.service-copy { flex: 1 1 0; display: flex; flex-direction: column; gap: 14px; max-width: 560px; }
.service-tag { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 15px; color: var(--accent); }
.service-copy h2 { font-size: 30px; }
.service-copy p { margin: 0; font-size: 15px; line-height: 1.75; color: var(--muted); }
.service-highlights { font-size: 12px; color: var(--accent); font-weight: 700; letter-spacing: 0.03em; padding-top: 6px; }

.cta-banner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-top: 64px; padding-bottom: 64px; flex-wrap: wrap; }
.cta-banner-copy { display: flex; flex-direction: column; gap: 8px; max-width: 480px; }
.cta-banner-copy h2 { font-size: 26px; }
.cta-banner-copy p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--muted); }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- FARKIMIZ (hakkimizda.php) ---------- */
.diff-block { display: flex; flex-direction: column; gap: 14px; max-width: 760px; }
.diff-block p { margin: 0; font-size: 15px; line-height: 1.75; color: var(--muted); }

/* ---------- OFİSİMİZ ---------- */
.office-photo { border: 1px solid var(--border); overflow: hidden; margin-top: 8px; box-shadow: 0 16px 40px -24px rgba(18, 78, 174, 0.35); }
.office-photo img { width: 100%; height: auto; display: block; }
.office-info { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.office-info p { margin: 0; font-size: 14px; color: var(--muted); max-width: 480px; }

.founder-card { display: flex; gap: 24px; padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--border-soft); }
.founder-photo { width: 180px; aspect-ratio: 3/4; background: var(--cream-alt); border: 1px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-info { display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.founder-info .team-name { font-size: 20px; }
.founder-info p { margin: 4px 0 0; font-size: 14px; line-height: 1.75; color: var(--muted); max-width: 560px; }

.bio-row { display: flex; gap: 16px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--border-soft); }
.bio-row:last-child { border-bottom: none; margin-bottom: 0; }
.bio-photo { width: 88px; aspect-ratio: 3/4; background: var(--cream-alt); border: 1px solid var(--border); flex-shrink: 0; overflow: hidden; }
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-info { display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.bio-info .team-name { font-size: 15px; }
.bio-info p { margin: 2px 0 0; font-size: 12px; line-height: 1.6; color: var(--muted-soft); }

/* ---------- WhatsApp rozeti (ekip kartları) ---------- */
.wa-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: #25D366; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37,211,102,0.35);
  transition: transform 0.15s ease;
}
.wa-badge:hover { transform: scale(1.08); }
.wa-badge svg { width: 18px; height: 18px; fill: #fff; }
.founder-info .wa-badge { width: 40px; height: 40px; margin-top: 4px; }
.founder-info .wa-badge svg { width: 21px; height: 21px; }
.bio-info .wa-badge { width: 30px; height: 30px; margin-top: 2px; }
.bio-info .wa-badge svg { width: 16px; height: 16px; }
.team-card .wa-badge { position: absolute; right: 10px; bottom: 10px; }
.team-photo { position: relative; }

/* ---------- WhatsApp — sayfa geneli yüzen buton (her sayfadan erişilebilir) ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
  z-index: 150;
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ==========================================================================
   RESPONSIVE — orta genişlikte masaüstü (nav öğesi sayısı arttığı için)
   ========================================================================== */
@media (max-width: 1320px) {
  .site-header { padding-left: 24px; padding-right: 24px; gap: 16px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 14px; }
  .header-actions { gap: 10px; }
}
/* 6 menü öğesi dar/orta genişlikte (tablet, küçük laptop) sıkışıp logoyla ya
   da butonla çakışabiliyor — bu yüzden mobil menüye geçişi 980px yerine
   980px'ten daha erken, 1150px'te tetikliyoruz. */
@media (max-width: 1150px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ==========================================================================
   RESPONSIVE — tablet & mobil
   ========================================================================== */
@media (max-width: 980px) {
  .container { padding: 0 22px; }
  .site-header { padding: 20px 22px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 27px; height: 27px; }
  .modal-box { padding: 32px 22px 26px; }
  .form-row { grid-template-columns: 1fr; }

  .section { padding: 44px 0; }
  .hero, .lead-wrap, .calc-wrap, .cta-banner, .founder-card { flex-direction: column; gap: 28px; }
  /* Geniş/yatay gökdelen silüeti, dar+uzun mobil hero oranında çirkin
     kırpılıyor — mobilde bu dekoratif katmanı gizliyoruz. */
  .skyline-bg { display: none; }
  .listings-showcase-wrap { gap: 32px; }
  .listings-showcase-copy { max-width: 100%; }
  .listings-showcase-visual { max-width: 100%; }
  .hero-copy, .hero-simple { max-width: 100%; }
  .hero-copy h1 { font-size: 30px; }
  .hero-simple { padding-top: 40px; padding-bottom: 40px; }
  .hero-simple h1 { font-size: 28px; }
  .hero-visual { order: -1; }
  .stamp-wrap { width: 240px; height: 240px; }
  .stamp { width: 240px; height: 240px; }
  .stamp-logo { width: 64px; }
  .stamp-wordmark .evren { font-size: 17px; }
  .stamp-wordmark .emlak { font-size: 13px; }

  .trust-strip { flex-direction: column; gap: 16px; }
  .trust-item { border-right: none; padding: 0; border-bottom: 1px solid var(--border-soft); padding-bottom: 16px; }
  .trust-item:last-child { border-bottom: none; padding-bottom: 0; }
  .data-strip { flex-direction: column; }

  .section-head h2 { font-size: 24px; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }

  .service-row, .service-row.reverse { flex-direction: column; padding-top: 44px; padding-bottom: 44px; }
  .service-visual { order: -1; }
  .service-num-box { max-width: 160px; }
  .service-num { font-size: 56px; }
  .service-copy h2 { font-size: 22px; }

  .eta-callout { flex-direction: column; align-items: flex-start; gap: 14px; }
  .eta-link { width: 100%; text-align: center; }

  .cta-banner-actions { width: 100%; }
  .cta-banner-actions .btn { flex: 1; }

  .footer-top { flex-direction: column; }

  .founder-card { align-items: flex-start; }
  .founder-photo { width: 120px; }

  .dak-form { grid-template-columns: 1fr; }

  .eids-step { gap: 18px; padding: 24px 0; }
  .eids-step-icon { width: 48px; height: 48px; }
  .eids-yetkino { padding: 28px 22px; }
  .eids-yetkino-value { font-size: 32px; }
  .eids-official { flex-direction: column; align-items: stretch; text-align: center; padding: 24px 20px; }
  .eids-official-badge { flex-direction: column; text-align: center; }
  .eids-official .btn { width: 100%; }

  .kira-timeline-wrap { padding: 24px 18px; }
  .kira-month { flex: 1 1 52px; min-width: 46px; padding: 10px 4px; }
  .kira-month-num { font-size: 16px; }
  .kira-month-tag { font-size: 8px; }
  .kira-note-block { flex-basis: 100%; padding: 14px 10px; }
  .kira-note-tick { width: 22px; height: 22px; font-size: 10px; }
}

@media (max-width: 560px) {
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .hero-actions .btn, .cta-banner-actions .btn { width: 100%; }
}
