/* ==========================================================================
   RE/MAX Elmas — Kurumsal site stilleri
   Marka renkleri: Kırmızı #DC1C2E · Mavi #003DA5 (RE/MAX marka kılavuzu)
   ========================================================================== */

:root {
  --red: #dc1c2e;
  --red-dark: #c61828;
  --blue: #003da5;
  --blue-dark: #002f7e;
  --navy: #001e52;

  --ink: #101623;
  --ink-2: #2b3444;
  --muted: #5f6b7d;
  --line: #e3e7ee;
  --bg: #ffffff;
  --soft: #f4f6fa;
  --soft-2: #eef1f7;

  --wa: #25d366;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(16, 22, 35, .06), 0 2px 8px rgba(16, 22, 35, .05);
  --shadow: 0 4px 12px rgba(16, 22, 35, .08), 0 12px 32px rgba(16, 22, 35, .07);
  --shadow-lg: 0 18px 50px rgba(0, 30, 82, .16);

  --container: 1220px;
  --font: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --display: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.015em;
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--red); color: #fff; padding: 12px 20px;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* --------------------------------------------------------------- Butonlar */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border: 2px solid transparent; border-radius: 999px;
  font-family: var(--display); font-weight: 700; font-size: 14px;
  letter-spacing: .02em; cursor: pointer; text-align: center;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(220, 28, 46, .28); }
.btn--red:hover { background: var(--red-dark); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(0, 61, 165, .25); }
.btn--blue:hover { background: var(--blue-dark); }
.btn--wa { background: var(--wa); color: #08361a; }
.btn--outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--outline-light { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }
.btn--lg { padding: 16px 32px; font-size: 15px; }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--block { width: 100%; }

/* ------------------------------------------------------------------ Üst bar */
.topbar { background: var(--navy); color: rgba(255, 255, 255, .82); font-size: 13px; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 40px; }
.topbar__contact { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__contact a { display: inline-flex; align-items: center; gap: 7px; transition: color .15s; }
.topbar__contact a:hover { color: #fff; }
.topbar__contact svg { width: 14px; height: 14px; fill: var(--red); }
.topbar__hours { opacity: .65; }
.topbar__social { display: flex; gap: 6px; }
.topbar__social a {
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255, 255, 255, .08); transition: background .15s;
}
.topbar__social a:hover { background: var(--red); }
.topbar__social svg { width: 14px; height: 14px; fill: #fff; }

/* -------------------------------------------------------------------- Header */
.header { position: sticky; top: 0; z-index: 60; background: #fff; box-shadow: var(--shadow-sm); }
.header__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }
.header__stripe { height: 3px; background: linear-gradient(90deg, var(--red) 0 33.33%, #fff 33.33% 66.66%, var(--blue) 66.66% 100%); }
.logo img { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
.nav > a {
  position: relative; padding: 10px 14px; border-radius: 8px;
  font-family: var(--display); font-weight: 600; font-size: 14.5px; color: var(--ink-2);
  transition: color .15s, background .15s;
}
.nav > a:hover { color: var(--blue); background: var(--soft); }
.nav > a.is-active { color: var(--red); }
.nav > a.is-active::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 3px;
  height: 2px; background: var(--red); border-radius: 2px;
}
.nav__mobile-cta { display: none; }

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

.burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 10px; }
.burger span { display: block; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 4.5px 0; transition: .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop { position: fixed; inset: 0; background: rgba(0, 15, 40, .45); z-index: 55; }

/* ---------------------------------------------------------------------- Hero */
.hero {
  position: relative; color: #fff;
  background: var(--navy) var(--hero-img) center / cover no-repeat;
  padding: 88px 0 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 20, 55, .93) 0%, rgba(0, 30, 82, .82) 45%, rgba(0, 45, 120, .5) 100%);
}
.hero__in { position: relative; max-width: 760px; padding-bottom: 40px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 20px;
  padding: 7px 16px 7px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .2);
  font-size: 13px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(220, 28, 46, .28); }
.hero__title {
  font-size: clamp(2.2rem, 5.2vw, 4rem); color: #fff; font-weight: 900;
  text-transform: uppercase; letter-spacing: -.02em; margin-bottom: 18px;
}
.hero__sub { font-size: clamp(1rem, 1.6vw, 1.15rem); color: rgba(255, 255, 255, .82); max-width: 620px; margin: 0 0 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__search { position: relative; transform: translateY(50%); margin-top: -20px; }

/* ----------------------------------------------------------------- Arama kutusu */
.searchbar { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.searchbar__tabs { display: flex; gap: 0; background: var(--soft); border-bottom: 1px solid var(--line); }
.searchbar__tab { position: relative; }
.searchbar__tab input { position: absolute; opacity: 0; pointer-events: none; }
.searchbar__tab span {
  display: block; padding: 14px 30px; cursor: pointer;
  font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--muted);
  border-bottom: 3px solid transparent; transition: .15s;
}
.searchbar__tab input:checked + span { color: var(--red); background: #fff; border-bottom-color: var(--red); }
.searchbar__fields { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 14px; padding: 20px; align-items: end; }
.searchbar .field { display: flex; flex-direction: column; gap: 6px; }
.searchbar label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.searchbar select, .searchbar input {
  height: 46px; padding: 0 12px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: 14.5px; color: var(--ink); background: #fff; width: 100%;
}
.searchbar select:focus, .searchbar input:focus { border-color: var(--blue); outline: none; }
.searchbar__submit { height: 46px; }

/* ----------------------------------------------------------------- İstatistik */
.stats { background: var(--blue); color: #fff; padding: 96px 0 34px; margin-top: 0; }
.page-home .stats { padding-top: 110px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats__item { padding: 16px 10px; border-right: 1px solid rgba(255, 255, 255, .16); }
.stats__item:last-child { border-right: 0; }
.stats__value { display: block; font-family: var(--display); font-weight: 900; font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1; }
.stats__label { display: block; margin-top: 8px; font-size: 13.5px; color: rgba(255, 255, 255, .78); }
.stats__grid--plain { background: transparent; }
.stats__item--dark { border-color: var(--line); }
.stats__item--dark .stats__value { color: var(--blue); }
.stats__item--dark .stats__label { color: var(--muted); }

/* ------------------------------------------------------------------- Bölümler */
.section { padding: 84px 0; }
.section--soft { background: var(--soft); }
.section--tight { padding: 48px 0; }

.eyebrow {
  display: inline-block; margin: 0 0 10px; font-family: var(--display); font-weight: 800;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--red);
}
.eyebrow--light { color: #ff8b96; }
.section__title { font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 800; text-transform: uppercase; margin: 0 0 12px; }
.section__sub { color: var(--muted); max-width: 620px; margin: 0; }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.section__head--center { justify-content: center; text-align: center; }
.section__head--center .section__sub { margin-inline: auto; }

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

.empty { color: var(--muted); text-align: center; padding: 40px 0; }
.empty--box { background: var(--soft); border-radius: var(--radius); padding: 56px 24px; }
.empty--box h3 { margin-bottom: 8px; }
.empty__actions { display: flex; gap: 12px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }

/* --------------------------------------------------------------- İlan kartı */
.pcard {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.pcard__media { position: relative; display: block; aspect-ratio: 16 / 11; overflow: hidden; background: var(--soft-2); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__tag {
  position: absolute; top: 12px; left: 12px; padding: 5px 12px; border-radius: 6px;
  font-family: var(--display); font-weight: 700; font-size: 11.5px; letter-spacing: .06em;
  text-transform: uppercase; color: #fff;
}
.pcard__tag--satilik { background: var(--red); }
.pcard__tag--kiralik { background: var(--blue); }
.pcard__tag--vitrin { left: auto; right: 12px; background: #10161f; }
.pcard__sold {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(16, 22, 35, .62); color: #fff;
  font-family: var(--display); font-weight: 900; font-size: 22px; text-transform: uppercase; letter-spacing: .08em;
}
.pcard__count {
  position: absolute; bottom: 12px; right: 12px; padding: 4px 10px; border-radius: 6px;
  background: rgba(8, 14, 26, .72); color: #fff; font-size: 11.5px; font-weight: 600;
}
.pcard__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.pcard__loc { display: flex; align-items: center; gap: 6px; margin: 0 0 8px; font-size: 13px; color: var(--muted); }
.pcard__loc svg { width: 14px; height: 14px; fill: var(--red); flex: none; }
.pcard__title { font-size: 17px; font-weight: 700; margin: 0 0 14px; line-height: 1.35; }
.pcard__title a { transition: color .15s; }
.pcard__title a:hover { color: var(--red); }
.pcard__specs { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 16px; padding: 0; }
.pcard__specs li { background: var(--soft); border-radius: 6px; padding: 5px 10px; font-size: 12.5px; color: var(--muted); }
.pcard__specs strong { color: var(--ink); }
.pcard__foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pcard__price { margin: 0; font-family: var(--display); font-weight: 800; font-size: 19px; color: var(--blue); }
.pcard__agent img { border-radius: 50%; width: 34px; height: 34px; object-fit: cover; border: 2px solid #fff; box-shadow: var(--shadow-sm); }
.pcard__ref { position: absolute; top: 12px; right: 12px; display: none; }

/* --------------------------------------------------------------- Hizmet kartı */
.scard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: .22s; }
.scard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.scard__icon {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, var(--red), #ff5364); margin-bottom: 18px;
}
.scard__icon .icon { width: 26px; height: 26px; fill: #fff; }
.scard h3 { font-size: 17px; margin-bottom: 8px; }
.scard p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ------------------------------------------------------------------- Neden biz */
.why__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.why__media { position: relative; }
.why__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.why__badge {
  position: absolute; right: -18px; bottom: 30px; background: var(--red); color: #fff;
  border-radius: var(--radius); padding: 18px 24px; box-shadow: var(--shadow-lg); text-align: center;
}
.why__badge strong { display: block; font-family: var(--display); font-weight: 900; font-size: 28px; line-height: 1; }
.why__badge span { font-size: 12.5px; opacity: .9; }
.why__list { list-style: none; margin: 26px 0 30px; padding: 0; display: grid; gap: 18px; }
.why__list li { display: flex; gap: 14px; }
.why__check { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(0, 61, 165, .1); display: grid; place-items: center; margin-top: 3px; }
.why__check svg { width: 15px; height: 15px; fill: var(--blue); }
.why__list strong { display: block; font-family: var(--display); font-size: 15.5px; color: var(--ink); }
.why__list p { margin: 3px 0 0; font-size: 14.5px; color: var(--muted); }

/* -------------------------------------------------------------- Danışman kartı */
.acard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .22s; }
.acard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.acard__photo { display: block; aspect-ratio: 5/6; overflow: hidden; background: var(--soft-2); }
.acard__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.acard:hover .acard__photo img { transform: scale(1.05); }
.acard__body { padding: 18px 20px 20px; }
.acard__body h3 { font-size: 16.5px; margin-bottom: 3px; }
.acard__title { margin: 0 0 8px; font-size: 13px; color: var(--red); font-weight: 600; }
.acard__areas { margin: 0 0 12px; font-size: 13px; color: var(--muted); }
.acard__links { display: flex; gap: 8px; flex-wrap: wrap; }
.acard__links a {
  padding: 6px 13px; border: 1.5px solid var(--line); border-radius: 999px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-2); transition: .15s;
}
.acard__links a:hover { border-color: var(--blue); color: var(--blue); }

.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 10px; padding: 0; }
.chips li { background: rgba(0, 61, 165, .07); color: var(--blue); border-radius: 6px; padding: 4px 10px; font-size: 12px; font-weight: 600; }
.chips--lg li { padding: 7px 14px; font-size: 13px; }

/* ------------------------------------------------------------------ CTA şerit */
.ctaband {
  position: relative; color: #fff; padding: 74px 0;
  background: var(--navy) var(--cta-img) center / cover no-repeat;
}
.ctaband::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0, 20, 55, .94), rgba(0, 45, 120, .74)); }
.ctaband__in { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.ctaband h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); text-transform: uppercase; font-weight: 900; margin-bottom: 12px; }
.ctaband__text { margin: 0; color: rgba(255, 255, 255, .8); max-width: 480px; }
.ctaband__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* -------------------------------------------------------------- Referans kartı */
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin: 0; }
.tcard__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.tcard__stars svg { width: 17px; height: 17px; fill: #f6b21b; }
.tcard p { margin: 0 0 18px; color: var(--ink-2); font-size: 15px; }
.tcard footer { display: flex; flex-direction: column; border-top: 1px solid var(--line); padding-top: 14px; }
.tcard footer strong { font-family: var(--display); color: var(--ink); }
.tcard footer span { font-size: 13px; color: var(--muted); }

/* ------------------------------------------------------------------ Blog kartı */
.bcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .22s; }
.bcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.bcard__media { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--soft-2); }
.bcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.bcard:hover .bcard__media img { transform: scale(1.05); }
.bcard__cat { position: absolute; top: 12px; left: 12px; background: var(--blue); color: #fff; padding: 5px 12px; border-radius: 6px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.bcard__body { padding: 20px; }
.bcard__body time { font-size: 12.5px; color: var(--muted); }
.bcard__body h3 { font-size: 17px; margin: 8px 0 8px; line-height: 1.35; }
.bcard__body h3 a:hover { color: var(--red); }
.bcard__body p { margin: 0; font-size: 14.5px; color: var(--muted); }
.bcard__more { display: inline-block; margin-top: 12px; font-weight: 700; font-size: 13.5px; color: var(--red); }

/* ------------------------------------------------------------------------ SSS */
.faq__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: start; }
.faq { margin-top: 24px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 10px; background: #fff; }
.faq__item summary {
  cursor: pointer; padding: 16px 20px; font-family: var(--display); font-weight: 700;
  font-size: 15.5px; color: var(--ink); list-style: none; position: relative; padding-right: 48px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--red); font-weight: 400;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p { margin: 0; padding: 0 20px 18px; color: var(--muted); font-size: 14.5px; }

/* --------------------------------------------------------------------- Formlar */
.form { display: grid; gap: 14px; }
.form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.form input[type="text"], .form input[type="tel"], .form input[type="email"], .form select, .form textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: 14.5px; color: var(--ink); background: #fff; font-weight: 400;
}
.form textarea { resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(0, 61, 165, .1); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .check { display: flex; align-items: flex-start; gap: 9px; font-weight: 400; font-size: 12.5px; color: var(--muted); }
.form .check input { margin-top: 3px; accent-color: var(--red); }
.form .check a { color: var(--blue); text-decoration: underline; }
.form__note { margin: 0; font-size: 12px; color: var(--muted); text-align: center; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.alert { border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 16px; font-size: 14px; }
.alert--ok { background: #e8f7ee; border: 1px solid #b6e3c7; color: #16603a; }
.alert--err { background: #fdecee; border: 1px solid #f6c3c9; color: #97121f; }

.quickform, .sideform {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.quickform h3, .sideform h3 { font-size: 18px; margin-bottom: 4px; }
.quickform__sub { margin: 0 0 18px; font-size: 14px; color: var(--muted); }

.formpage { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.formpage__box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.formpage__points { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.formpage__points li { position: relative; padding-left: 30px; color: var(--ink-2); font-size: 15px; }
.formpage__points li::before {
  content: ''; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.valuation__note { margin-top: 28px; padding: 20px 22px; background: var(--soft); border-left: 4px solid var(--blue); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.valuation__note strong { display: block; font-family: var(--display); margin-bottom: 6px; color: var(--ink); }
.valuation__note p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ------------------------------------------------------------------ Sayfa hero */
.phero {
  position: relative; padding: 62px 0 56px; color: #fff;
  background: var(--navy) var(--phero-img, none) center / cover no-repeat;
}
.phero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0, 20, 55, .93), rgba(0, 45, 120, .78)); }
.phero .container { position: relative; }
.phero__title { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 900; text-transform: uppercase; margin: 0 0 10px; }
.phero__lead { margin: 0; color: rgba(255, 255, 255, .8); max-width: 640px; }

.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 14px; color: rgba(255, 255, 255, .65); }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .5; }
.crumbs--dark { color: var(--muted); margin-bottom: 20px; }
.crumbs--dark a:hover { color: var(--red); }

/* -------------------------------------------------------------- Liste sayfası */
.listing__searchwrap { margin-bottom: 28px; }
.listing__searchwrap .searchbar { border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.listing__bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.listing__count { margin: 0; color: var(--muted); font-size: 14.5px; }
.listing__count strong { color: var(--ink); font-size: 17px; }
.listing__sort { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--muted); }
.listing__sort select { padding: 9px 12px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font: inherit; font-size: 14px; background: #fff; }

.pager { display: flex; justify-content: center; gap: 6px; margin-top: 44px; flex-wrap: wrap; }
.pager a {
  min-width: 42px; height: 42px; padding: 0 14px; display: grid; place-items: center;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-weight: 600; font-size: 14px;
  background: #fff; transition: .15s;
}
.pager a:hover { border-color: var(--blue); color: var(--blue); }
.pager a.is-active { background: var(--red); border-color: var(--red); color: #fff; }

/* ------------------------------------------------------------------ İlan detay */
.detail { padding: 40px 0 0; }
.detail__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; margin-bottom: 22px; flex-wrap: wrap; }
.detail__tags { display: flex; gap: 8px; margin-bottom: 12px; }
.tag { padding: 5px 13px; border-radius: 6px; font-family: var(--display); font-weight: 700; font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: #fff; }
.tag--satilik { background: var(--red); }
.tag--kiralik { background: var(--blue); }
.tag--plain { background: var(--soft-2); color: var(--ink-2); }
.tag--gold { background: #10161f; }
.detail__title { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 10px; }
.detail__loc { display: flex; align-items: center; gap: 8px; margin: 0; color: var(--muted); font-size: 14.5px; flex-wrap: wrap; }
.detail__loc svg { width: 16px; height: 16px; fill: var(--red); }
.detail__ref { margin-left: 8px; padding: 3px 10px; background: var(--soft); border-radius: 5px; font-size: 12.5px; }
.detail__pricebox { text-align: right; }
.detail__price { display: block; font-family: var(--display); font-weight: 900; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--red); line-height: 1.1; }
.detail__ppm { font-size: 13.5px; color: var(--muted); }

.gallery { margin-bottom: 40px; }
.gallery__main { border-radius: var(--radius); overflow: hidden; background: var(--soft-2); aspect-ratio: 16/9; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.gallery__thumb { flex: none; width: 118px; padding: 0; border: 2px solid transparent; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; background: none; }
.gallery__thumb img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.gallery__thumb.is-active { border-color: var(--red); }

.detail__grid { display: grid; grid-template-columns: 1fr 370px; gap: 40px; align-items: start; padding-bottom: 20px; }
.detail__side { position: sticky; top: 100px; display: grid; gap: 18px; }

.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-bottom: 22px; }
.panel__title { font-size: 18px; margin: 0 0 18px; padding-bottom: 12px; border-bottom: 2px solid var(--soft-2); position: relative; }
.panel__title::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 54px; height: 2px; background: var(--red); }
.panel__note { margin: -6px 0 16px; font-size: 13.5px; color: var(--muted); }

.specgrid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 30px; }
.specgrid li { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.specgrid span { color: var(--muted); }
.specgrid strong { color: var(--ink); font-weight: 600; text-align: right; }

.featurelist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 20px; }
.featurelist li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; }
.featurelist svg { width: 15px; height: 15px; fill: var(--blue); flex: none; }

.mapbox, .contact__map { border-radius: var(--radius-sm); overflow: hidden; background: var(--soft-2); }
.mapbox iframe { width: 100%; height: 330px; border: 0; display: block; }
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.agentbox {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; box-shadow: var(--shadow-sm);
}
.agentbox__photo { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; }
.agentbox__name { margin: 0; font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--ink); }
.agentbox__name a:hover { color: var(--red); }
.agentbox__title { margin: 2px 0 0; font-size: 13px; color: var(--muted); }
.agentbox__actions { grid-column: 1 / -1; display: grid; gap: 8px; }

.sharebox { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); }
.sharebox a, .sharebox button {
  padding: 7px 14px; border: 1.5px solid var(--line); border-radius: 999px; background: #fff;
  font-size: 13px; font-weight: 600; color: var(--ink-2); cursor: pointer; transition: .15s;
}
.sharebox a:hover, .sharebox button:hover { border-color: var(--blue); color: var(--blue); }

/* --------------------------------------------------------------- Danışman sayfa */
.agenthero { background: linear-gradient(115deg, var(--navy), var(--blue)); color: #fff; padding: 48px 0; }
.agenthero__in { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; }
.agenthero__photo { width: 200px; height: 240px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); flex: none; }
.agenthero__body h1 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 4px; }
.agenthero__title { margin: 0 0 16px; color: #ff9aa4; font-weight: 700; font-family: var(--display); }
.agenthero__meta { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 24px; margin: 0 0 22px; padding: 0; font-size: 14px; color: rgba(255, 255, 255, .82); }
.agenthero__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.crumbs--light { color: rgba(255, 255, 255, .6); }
.agentpage__grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.agentpage__grid .sideform { position: sticky; top: 100px; }

/* ------------------------------------------------------------- Hakkımızda vb. */
.about__grid, .career__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.career__grid { grid-template-columns: 1.1fr 1fr; }
.about__media, .career__media { position: relative; }
.about__media img, .career__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 5/4; object-fit: cover; width: 100%; }
.about__stamp {
  position: absolute; left: -16px; bottom: 26px; background: #fff; border-radius: var(--radius);
  padding: 16px 22px; box-shadow: var(--shadow-lg); border-left: 4px solid var(--red);
}
.about__stamp strong { display: block; font-family: var(--display); color: var(--ink); }
.about__stamp span { font-size: 13px; color: var(--muted); }
.about__values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.about__values strong { display: block; font-family: var(--display); color: var(--blue); margin-bottom: 4px; }
.about__values p { margin: 0; font-size: 13.5px; color: var(--muted); }

.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.timeline::before { content: ''; position: absolute; left: 0; right: 0; top: 19px; height: 2px; background: var(--line); }
.timeline li { position: relative; padding-top: 54px; }
.timeline__year {
  position: absolute; top: 0; left: 0; background: var(--red); color: #fff; padding: 6px 14px;
  border-radius: 999px; font-family: var(--display); font-weight: 800; font-size: 13px;
}
.timeline p { margin: 0; font-size: 14.5px; color: var(--muted); }

.benefits { list-style: none; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.benefits li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; }
.benefits svg { width: 16px; height: 16px; fill: var(--red); flex: none; margin-top: 4px; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.steps--5 { grid-template-columns: repeat(5, 1fr); }
.steps li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.steps__num {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); color: #fff; font-family: var(--display); font-weight: 800; margin-bottom: 14px;
}
.steps strong { display: block; font-family: var(--display); font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.steps p { margin: 0; font-size: 14px; color: var(--muted); }

.joinband { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }

/* -------------------------------------------------------------------- İletişim */
.contact__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 44px; }
.ccard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.ccard__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(0, 61, 165, .08); margin-bottom: 16px; }
.ccard__icon .icon { width: 22px; height: 22px; fill: var(--blue); }
.ccard h3 { font-size: 16.5px; margin-bottom: 8px; }
.ccard p { margin: 0 0 4px; font-size: 14.5px; color: var(--muted); }
.ccard a { color: var(--blue); font-weight: 600; }
.ccard__muted { font-size: 13px !important; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: stretch; }

.contactagents { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.contactagents__row { display: grid; grid-template-columns: auto 1.3fr 1fr auto; gap: 18px; align-items: center; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.contactagents__row:last-child { border-bottom: 0; }
.contactagents__row img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.contactagents__who strong { display: block; font-family: var(--display); font-size: 15px; color: var(--ink); }
.contactagents__who span { font-size: 13px; color: var(--muted); }
.contactagents__area { font-size: 13.5px; color: var(--muted); }

/* ------------------------------------------------------------------ Blog detay */
.post { padding-top: 46px; }
.post__head { max-width: 820px; text-align: center; }
.post__cat { display: inline-block; background: var(--blue); color: #fff; padding: 5px 13px; border-radius: 6px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px; }
.post__head h1 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.post__meta { color: var(--muted); font-size: 14px; }
.post__cover { max-width: 1000px; margin-block: 30px; }
.post__cover img { border-radius: var(--radius); aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.post__body { max-width: 760px; padding-bottom: 60px; }
.post__excerpt { font-size: 19px; color: var(--ink); font-weight: 500; border-left: 4px solid var(--red); padding-left: 20px; }
.post__share { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted); }
.post__share a, .post__share button {
  padding: 7px 14px; border: 1.5px solid var(--line); border-radius: 999px; background: #fff;
  font-size: 13px; font-weight: 600; color: var(--ink-2); cursor: pointer;
}

.richtext { color: var(--ink-2); font-size: 15.5px; }
.richtext p { margin: 0 0 1.1em; }
.richtext h2 { font-size: 1.5rem; margin: 1.6em 0 .5em; }
.richtext h3 { font-size: 1.2rem; margin: 1.4em 0 .4em; }
.richtext ul, .richtext ol { margin: 0 0 1.1em; padding-left: 1.3em; }
.richtext li { margin-bottom: .4em; }
.richtext a { color: var(--blue); text-decoration: underline; }
.richtext--lg { font-size: 17px; line-height: 1.75; }

.legal { max-width: 820px; }
.legal__notice { background: #fff8e6; border: 1px solid #f5dfa4; border-radius: var(--radius-sm); padding: 14px 18px; font-size: 14px; }

/* ------------------------------------------------------------------ Hata sayfa */
.errorpage { padding: 110px 0; text-align: center; }
.errorpage__code { display: block; font-family: var(--display); font-weight: 900; font-size: clamp(5rem, 14vw, 9rem); line-height: 1; color: var(--soft-2); }
.errorpage h1 { margin-top: -14px; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.errorpage p { color: var(--muted); max-width: 480px; margin-inline: auto; }
.errorpage__actions { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ---------------------------------------------------------------------- Footer */
.footer { background: var(--navy); color: rgba(255, 255, 255, .72); margin-top: 0; }
.footer__stripe { height: 4px; background: linear-gradient(90deg, var(--red) 0 33.33%, #fff 33.33% 66.66%, var(--blue) 66.66% 100%); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding: 60px 0 46px; }
.footer__logo { height: 50px; width: auto; margin-bottom: 18px; }
.footer__about { font-size: 14px; margin: 0 0 18px; line-height: 1.7; }
.footer__social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__social a { padding: 6px 14px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; font-size: 12.5px; transition: .15s; }
.footer__social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer__col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer__col > a { display: block; padding: 5px 0; font-size: 14px; transition: .15s; }
.footer__col > a:hover { color: #fff; padding-left: 5px; }
.footer__addr, .footer__hours { font-size: 14px; margin: 0 0 10px; }
.footer__hours { opacity: .7; margin-bottom: 16px; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0; }
.footer__bottom-in { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 12.5px; }
.footer__bottom p { margin: 0; }
.footer__disclaimer { opacity: .55; max-width: 620px; }

/* ------------------------------------------------------------- WhatsApp butonu */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ------------------------------------------------------------------- Responsive */
@media (max-width: 1080px) {
  .why__grid, .about__grid, .career__grid, .faq__grid, .formpage,
  .detail__grid, .agentpage__grid, .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .detail__side, .agentpage__grid .sideform { position: static; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .steps, .steps--5 { grid-template-columns: repeat(2, 1fr); }
  .searchbar__fields { grid-template-columns: repeat(2, 1fr); }
  .searchbar__submit { grid-column: 1 / -1; }
  .why__badge { right: 12px; }
  .about__stamp { left: 12px; }
}

@media (max-width: 900px) {
  .topbar__hours, .topbar__contact a:nth-child(2) { display: none; }
  .burger { display: block; }
  .header__actions .btn { display: none; }
  .nav {
    position: fixed; top: 0; right: -100%; bottom: 0; width: min(320px, 86vw);
    background: #fff; flex-direction: column; align-items: stretch; gap: 2px;
    padding: 24px 20px; z-index: 60; overflow-y: auto; transition: right .28s ease;
    box-shadow: -12px 0 40px rgba(0, 20, 55, .2);
  }
  .nav.is-open { right: 0; }
  .nav > a { padding: 14px 12px; font-size: 16px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav > a.is-active::after { display: none; }
  .nav__mobile-cta { display: grid; gap: 10px; margin-top: 20px; }
  .nav__mobile-cta .btn--ghost { background: var(--soft); color: var(--ink); border-color: var(--line); }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2n) { border-right: 0; }
  .contact__cards { grid-template-columns: 1fr; }
  .specgrid, .featurelist, .about__values, .benefits { grid-template-columns: 1fr; }
  .contactagents__row { grid-template-columns: auto 1fr; }
  .contactagents__area { display: none; }
  .form__row { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .hero { padding-top: 56px; }
  .hero__search { transform: none; margin-top: 24px; padding-bottom: 34px; }
  .stats, .page-home .stats { padding: 34px 0; }
  .detail__pricebox { text-align: left; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .panel { padding: 22px 18px; }
  .formpage__box { padding: 22px 18px; }
  .agenthero__photo { width: 140px; height: 170px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
