/*
Theme Name: Eda Korkmaz Gayrimenkul
Theme URI: https://edakorkmazgayrimenkul.com
Description: Balıkesir emlak danışmanlığı için kurumsal WordPress teması.
Author: EHY Soft
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: eda-gayrimenkul
*/

/* ═══════════════════════════════════════════
   TOKENS
   ═══════════════════════════════════════════ */
:root {
  --white: #fff;
  --black: #111;
  --blue: #1E4399;
  --blue-hover: #162f6a;
  --blue-light: #EEF2FB;   /* çok hafif mavi arka plan */
  --blue-soft: #D6DFEF;    /* mavi border/divider */
  --text: #374151;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --border: #E5E7EB;
  --bg-alt: #F4F6FA;       /* beyaz yerine hafif mavimsi gri */
  --green: #25D366;
  --radius: 6px;
  --font: 'Poppins', system-ui, -apple-system, sans-serif;
}

/* ═══════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-weight: 300; font-size: 16px; line-height: 1.7; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .15s; }
a:hover { color: var(--blue-hover); }
h1, h2, h3, h4 { font-weight: 900; color: var(--black); line-height: 1.15; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }
.section-head { margin-bottom: 48px; }
.section-head h2 { font-size: 28px; margin-bottom: 6px; display: inline-block; }
.section-head h2::after { content: ''; display: block; width: 48px; height: 3px; background: var(--blue); margin-top: 10px; }
.section-head.text-center h2::after, .section-head h2:only-child::after { margin-left: auto; margin-right: auto; }
.section-head p { color: var(--text-light); font-size: 15px; }

/* ═══════════════════════════════════════════
   FINANCE TICKER
   ═══════════════════════════════════════════ */
.fin-ticker {
  background: var(--blue); overflow: hidden; position: relative;
}
.fin-ticker__inner {
  display: flex; align-items: center; gap: 0;
  animation: ticker-scroll 20s linear infinite;
  width: max-content;
}
.fin-ticker__item {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 20px; white-space: nowrap; border-right: 1px solid rgba(255,255,255,.15);
}
.fin-ticker__label { font-size: 11px; color: rgba(255,255,255,.6); font-weight: 500; letter-spacing: .02em; }
.fin-ticker__value { font-size: 12px; color: var(--white); font-weight: 700; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Mobilde ticker küçült */
@media(max-width:768px) {
  .fin-ticker__item { padding: 5px 14px; }
  .fin-ticker__label { font-size: 10px; }
  .fin-ticker__value { font-size: 11px; }
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 2px solid var(--blue);
  height: 72px; transition: box-shadow .2s;
}
/* Ticker varsa header sticky top'u ayarla */
.fin-ticker + .site-header { top: 0; }
.site-header.scrolled { box-shadow: 0 2px 12px rgba(30,67,153,.08); }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.site-header__logo { flex-shrink: 0; }
.site-header__logo img { width: 180px; height: auto; }
.site-header__nav { display: none; }
.site-header__nav ul { display: flex; gap: 36px; }
.site-header__nav a { color: var(--text); font-size: 14px; font-weight: 500; letter-spacing: .01em; }
.site-header__nav a:hover { color: var(--blue); }
.site-header__right { display: none; align-items: center; gap: 20px; }
.site-header__phone { color: var(--text); font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.site-header__phone:hover { color: var(--blue); }
.site-header__phone svg { width: 15px; height: 15px; }

/* Hamburger */
.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
}
.menu-toggle span { display: block; width: 20px; height: 1.5px; background: var(--black); }

@media(min-width:1024px) {
  .site-header__nav { display: block; }
  .site-header__right { display: flex; }
  .menu-toggle { display: none; }
}

/* ═══════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════ */
.mobile-menu { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.mobile-menu.open { visibility: visible; }
.mobile-menu__bg { position: absolute; inset: 0; background: rgba(0,0,0,.35); opacity: 0; transition: opacity .25s; }
.mobile-menu.open .mobile-menu__bg { opacity: 1; }
.mobile-menu__drawer {
  position: absolute; top: 0; right: 0; width: 300px; height: 100%;
  background: var(--white); transform: translateX(100%); transition: transform .25s;
  display: flex; flex-direction: column;
}
.mobile-menu.open .mobile-menu__drawer { transform: translateX(0); }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--border); }
.mobile-menu__top img { height: 28px; }
.mobile-menu__close { background: none; border: none; color: var(--text-light); }
.mobile-menu__links { flex: 1; padding: 8px 20px; }
.mobile-menu__links a { display: block; padding: 14px 0; font-size: 15px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-menu__bottom { padding: 20px; display: flex; flex-direction: column; gap: 8px; }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 24px; font-size: 14px; font-weight: 600;
  border-radius: var(--radius); border: none; transition: all .15s; line-height: 1;
}
.btn--blue { background: var(--blue); color: var(--white); }
.btn--blue:hover { background: var(--blue-hover); color: var(--white); }
.btn--outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--outline-w { background: transparent; border: 1px solid rgba(255,255,255,.25); color: var(--white); }
.btn--outline-w:hover { border-color: rgba(255,255,255,.6); }
.btn--lg { height: 48px; padding: 0 28px; font-size: 15px; }
.btn--sm { height: 36px; padding: 0 16px; font-size: 13px; }
.btn--full { width: 100%; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero { padding: 48px 0 56px; background: var(--blue-light); border-bottom: 1px solid var(--blue-soft); }
.hero__grid {
  display: flex; flex-direction: column-reverse; align-items: center; gap: 40px;
}
.hero__body { max-width: 500px; }
.hero__eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px;
}
.hero__title { font-size: 34px; margin-bottom: 16px; }
.hero__desc { color: var(--text-light); font-size: 16px; margin-bottom: 28px; }
.hero__btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__nums { display: flex; gap: 36px; }
.hero__nums div { text-align: left; }
.hero__nums strong { display: block; font-size: 26px; font-weight: 900; color: var(--blue); line-height: 1.2; }
.hero__nums span { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.hero__photo { width: 100%; max-width: 420px; }
.hero__photo img { width: 100%; border-radius: 12px; aspect-ratio: 4/5; object-fit: cover; object-position: top center; }

@media(min-width:768px) {
  .hero { padding: 64px 0 72px; }
  .hero__title { font-size: 40px; }
  .hero__photo { max-width: 400px; }
}
@media(min-width:1024px) {
  .hero__grid { flex-direction: row; gap: 60px; }
  .hero__body { flex: 1; }
  .hero__title { font-size: 44px; }
  .hero__photo { max-width: 440px; flex-shrink: 0; }
}

/* ═══════════════════════════════════════════
   SEARCH BAR
   ═══════════════════════════════════════════ */
.search-bar { background: var(--white); border: 1px solid var(--blue-soft); border-radius: 10px; padding: 16px; box-shadow: 0 2px 8px rgba(30,67,153,.06); }
.search-bar form { display: grid; grid-template-columns: 1fr; gap: 10px; }
.search-bar select {
  width: 100%; height: 44px; padding: 0 36px 0 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 14px; color: var(--text);
  background: var(--white) url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none; -webkit-appearance: none;
}
.search-bar select:focus { outline: none; border-color: var(--blue); }
.search-bar .btn { height: 44px; }
@media(min-width:768px) {
  .search-bar form { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════
   PROPERTY CARD
   ═══════════════════════════════════════════ */
.grid { display: grid; gap: 20px; }
@media(min-width:600px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:600px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; transition: box-shadow .15s, transform .15s;
}
.card:hover { box-shadow: 0 4px 16px rgba(30,67,153,.1); transform: translateY(-2px); border-color: var(--blue-soft); }
.card__img { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--bg-alt); }
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__img a { display: block; width: 100%; height: 100%; }
.card__badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  padding: 3px 10px; border-radius: 4px;
}
.card__badge--satilik { background: var(--blue); color: var(--white); }
.card__badge--kiralik { background: #059669; color: var(--white); }
.card__badge--satildi { background: var(--text-muted); color: var(--white); }
.card__body { padding: 16px; }
.card__price { font-size: 20px; font-weight: 700; color: var(--blue); margin-bottom: 2px; }
.card__price small { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.card__title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 4px; line-height: 1.4; }
.card__title a { color: inherit; }
.card__loc { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.card__loc svg { flex-shrink: 0; width: 12px; height: 12px; }
.card__specs { display: flex; gap: 12px; padding-top: 10px; border-top: 1px solid var(--border); }
.card__specs span { font-size: 12px; color: var(--text-light); }
.card__foot { display: flex; justify-content: space-between; padding: 8px 16px; border-top: 1px solid var(--border); font-size: 11px; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services { display: grid; gap: 32px; }
@media(min-width:768px) { .services { grid-template-columns: repeat(3, 1fr); } }
.svc { padding-left: 20px; border-left: 3px solid var(--blue); }
.svc h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.svc p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ═══════════════════════════════════════════
   AGENT (danışman profili, front-page alt bölüm)
   ═══════════════════════════════════════════ */
.agent { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.agent__photo { width: 100%; max-width: 280px; }
.agent__photo img { width: 100%; border-radius: 10px; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.agent__body { max-width: 520px; }
.agent__eyebrow { font-size: 12px; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; display: block; }
.agent__name { font-size: 28px; margin-bottom: 12px; }
.agent__bio { font-size: 15px; color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }
.agent__stats { display: flex; gap: 32px; margin-bottom: 24px; }
.agent__stats strong { display: block; font-size: 24px; font-weight: 900; color: var(--blue); }
.agent__stats span { font-size: 12px; color: var(--text-muted); }
.agent__btns { display: flex; gap: 10px; flex-wrap: wrap; }
@media(min-width:768px) {
  .agent { flex-direction: row; gap: 48px; }
  .agent__photo { max-width: 300px; flex-shrink: 0; }
  .agent__body { flex: 1; }
}

/* ═══════════════════════════════════════════
   BLOG CARD
   ═══════════════════════════════════════════ */
.post-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.post-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-alt); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.post-card__body { padding: 16px; }
.post-card__cat { font-size: 11px; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; display: block; }
.post-card__title { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 6px; line-height: 1.4; }
.post-card__title a { color: inherit; }
.post-card__excerpt { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 8px; }
.post-card__date { font-size: 12px; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
  border-radius: 12px; padding: 48px 24px; text-align: center;
}
.cta h2 { color: var(--white); font-size: 26px; margin-bottom: 10px; }
.cta p { color: rgba(255,255,255,.5); font-size: 15px; margin-bottom: 28px; max-width: 440px; margin-left: auto; margin-right: auto; }
.cta__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
@media(min-width:768px) { .cta { padding: 64px 40px; } .cta h2 { font-size: 30px; } }

/* ═══════════════════════════════════════════
   GALLERY (İlan Detay)
   ═══════════════════════════════════════════ */
.gallery { margin-bottom: 28px; }
.gallery__main { border-radius: 10px; overflow: hidden; background: var(--bg-alt); }
.gallery__main img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.gallery__thumbs { display: flex; gap: 8px; margin-top: 8px; overflow-x: auto; padding-bottom: 4px; }
.gallery__thumb {
  flex-shrink: 0; width: 72px; height: 54px; border-radius: 6px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; opacity: .6; transition: all .15s;
  background: none; padding: 0;
}
.gallery__thumb:hover, .gallery__thumb.active { opacity: 1; border-color: var(--blue); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.listing__badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.listing__header { margin-bottom: 32px; }
.listing__features { margin-bottom: 28px; }
.listing__features h2 { font-size: 17px; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer { background: #0D1B3E; color: rgba(255,255,255,.55); padding: 56px 0 0; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
.site-footer__brand img { width: 200px; height: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.site-footer__brand p { font-size: 13px; line-height: 1.7; margin: 0 0 4px; }
.site-footer__brand p:first-of-type { font-weight: 600; color: var(--white); font-size: 14px; margin-bottom: 8px; }
.site-footer__social { display: flex; gap: 10px; margin-top: 16px; }
.site-footer__social a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
  transition: background .15s;
}
.site-footer__social a:hover { background: var(--blue); color: var(--white); }
.site-footer h4 {
  color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer__links li { margin-bottom: 10px; position: relative; padding-left: 14px; }
.site-footer__links li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.site-footer__links a { color: rgba(255,255,255,.6); font-size: 14px; }
.site-footer__links a:hover { color: var(--white); }
.site-footer__contact-list { list-style: none; }
.site-footer__contact-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,.6); }
.site-footer__contact-list svg { color: var(--blue); flex-shrink: 0; }
.site-footer__contact-list a { color: rgba(255,255,255,.6); }
.site-footer__contact-list a:hover { color: var(--white); }
@media(min-width:600px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer__bar-trust {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.site-footer__eids-inline {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.5); font-size: 12px;
}
.site-footer__shbd {
  display: inline-flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.5); font-size: 12px;
  text-decoration: none; transition: color .2s; white-space: nowrap;
}
.site-footer__shbd img { display: inline-block; vertical-align: middle; }
.site-footer__shbd:hover { color: rgba(255,255,255,.8); }
.site-footer__bar {
  border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 90;
  width: 52px; height: 52px; background: var(--green); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(37,211,102,.3); transition: transform .15s;
}
.wa-float:hover { transform: scale(1.06); color: var(--white); }

/* ═══════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════ */
.crumbs { padding: 14px 0; font-size: 13px; color: var(--text-muted); }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; }
.crumbs li { display: flex; align-items: center; }
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--blue); }
.crumbs__sep { margin: 0 8px; }

/* ═══════════════════════════════════════════
   FILTERS
   ═══════════════════════════════════════════ */
.filters { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 16px; margin-bottom: 28px; }
.filters form { display: grid; grid-template-columns: 1fr; gap: 10px; }
.filters select { width: 100%; height: 44px; padding: 0 36px 0 14px; border: 1px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 14px; color: var(--text); background: var(--white) url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center; appearance: none; }
.filters select:focus { outline: none; border-color: var(--blue); }
@media(min-width:768px) { .filters form { grid-template-columns: repeat(5, 1fr); } }

/* ═══════════════════════════════════════════
   SINGLE LISTING
   ═══════════════════════════════════════════ */
.listing { display: flex; flex-direction: column; gap: 28px; }
.listing__main { min-width: 0; }
.listing__gallery { border-radius: 10px; overflow: hidden; margin-bottom: 24px; }
.listing__gallery img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.listing__price { font-size: 28px; font-weight: 900; color: var(--blue); margin-bottom: 6px; }
.listing__price small { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.listing__title { font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.listing__loc { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; margin-bottom: 24px; }
.listing__details { margin-bottom: 28px; }
.listing__details h2 { font-size: 17px; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.listing__det-grid { display: grid; grid-template-columns: 1fr; }
.listing__det-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.listing__det-row span { color: var(--text-muted); }
.listing__det-row strong { color: var(--text); font-weight: 500; }
.listing__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.listing__tags span { background: var(--bg-alt); border: 1px solid var(--border); padding: 4px 12px; border-radius: 4px; font-size: 12px; color: var(--text-light); }
.listing__desc { margin-bottom: 28px; }
.listing__desc h2 { font-size: 17px; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.listing__text { font-size: 15px; color: var(--text-light); line-height: 1.8; }
.listing__text p { margin-bottom: 16px; }
.listing__sidebar { }
.listing__contact {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 20px;
  position: sticky; top: 88px;
}
.listing__contact-agent { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--border); }
.listing__contact-agent img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }
.listing__contact-agent strong { display: block; font-size: 14px; }
.listing__contact-agent small { font-size: 12px; color: var(--text-muted); }
@media(min-width:768px) { .listing__det-grid { grid-template-columns: repeat(2, 1fr); gap: 0 28px; } }
@media(min-width:1024px) { .listing { flex-direction: row; } .listing__main { flex: 1; } .listing__sidebar { width: 320px; flex-shrink: 0; } }

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */
.form-group { margin-bottom: 10px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; height: 44px; padding: 0 14px; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: inherit; font-size: 14px; color: var(--text);
  background: var(--white); transition: border-color .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { height: auto; padding: 10px 14px; resize: vertical; }

/* ═══════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════ */
.paging { display: flex; justify-content: center; gap: 4px; margin-top: 36px; }
.paging a, .paging span { display: flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px; border-radius: var(--radius); font-size: 14px; font-weight: 500; }
.paging a { background: var(--white); color: var(--text); border: 1px solid var(--border); }
.paging a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.paging span.current { background: var(--blue); color: var(--white); }

/* WordPress default pagination override */
.navigation.pagination { margin-top: 36px; }
.navigation.pagination .screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.navigation.pagination .nav-links { display: flex; justify-content: center; gap: 4px; }
.navigation.pagination .page-numbers {
  display: flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border-radius: var(--radius); font-size: 14px; font-weight: 500;
  background: var(--white); color: var(--text); border: 1px solid var(--border);
  text-decoration: none; transition: all .15s;
}
.navigation.pagination a.page-numbers:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.navigation.pagination .page-numbers.current { background: var(--blue); color: var(--white); border-color: var(--blue); }
.navigation.pagination .page-numbers.dots { border: none; background: none; }

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */

/* Hero */
.contact-hero {
  padding: 56px 0 96px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
  text-align: center;
}
.contact-hero__title { font-size: 34px; color: var(--white); margin-bottom: 10px; }
.contact-hero__desc { color: rgba(255,255,255,.6); font-size: 16px; max-width: 440px; margin: 0 auto; }
@media(min-width:768px) { .contact-hero { padding: 72px 0 112px; } .contact-hero__title { font-size: 40px; } }

/* Hızlı İletişim Kartları */
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media(min-width:600px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .contact-cards { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  display: flex; align-items: center; gap: 14px;
  padding: 20px; background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; transition: box-shadow .2s, transform .2s; color: inherit;
  box-shadow: 0 2px 12px rgba(30,67,153,.06);
}
.contact-card:hover { box-shadow: 0 6px 20px rgba(30,67,153,.1); transform: translateY(-2px); color: inherit; }
.contact-card__icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card__icon--wa { background: #dcfce7; color: #166534; }
.contact-card strong { display: block; font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.contact-card span { font-size: 13px; color: var(--text-light); }

/* Form + Sidebar Layout */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media(min-width:768px) { .contact-layout { grid-template-columns: 1.2fr 1fr; } }

/* Form */
.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media(min-width:480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.contact-form-wrap select {
  width: 100%; height: 44px; padding: 0 36px 0 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 14px; color: var(--text);
  background: var(--white) url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
}

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }

/* Danışman Kartı */
.contact-agent-card {
  display: flex; align-items: center; gap: 14px;
  padding: 20px; background: var(--blue-light); border: 1px solid var(--blue-soft); border-radius: 10px;
}
.contact-agent-card img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; }
.contact-agent-card strong { display: block; font-size: 15px; color: var(--black); }
.contact-agent-card small { font-size: 12px; color: var(--text-muted); }

/* Bilgi Bloğu */
.contact-info-block {
  padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: 10px;
}
.contact-info-block__item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.contact-info-block__item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-block__item:first-child { padding-top: 0; }
.contact-info-block__item svg { flex-shrink: 0; margin-top: 2px; }
.contact-info-block__item strong { display: block; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px; }
.contact-info-block__item span { font-size: 14px; color: var(--text); }
.contact-info-block__item a { color: var(--text); font-weight: 500; }
.contact-info-block__item a:hover { color: var(--blue); }

/* Sosyal Medya */
.contact-social {
  padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: 10px;
}
.contact-social > strong { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .04em; }
.contact-social__links { display: flex; gap: 10px; }
.contact-social__links a {
  width: 40px; height: 40px; border-radius: 8px; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); transition: all .15s;
}
.contact-social__links a:hover { background: var(--blue); color: var(--white); }

/* Harita */
.contact-map { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.contact-map iframe { display: block; }

/* ═══════════════════════════════════════════
   TAPU HESAPLAMA
   ═══════════════════════════════════════════ */
.tapu-calc {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 28px; box-shadow: 0 2px 12px rgba(30,67,153,.06);
}
.tapu-calc__header { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; flex-wrap: wrap; }
.tapu-calc__header h2 { font-size: 20px; margin: 0; }
.tapu-calc__badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  background: #dcfce7; color: #166534; padding: 3px 8px; border-radius: 4px;
}
.tapu-calc__desc { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }
.tapu-calc__input-wrap { margin-bottom: 20px; }
.tapu-calc__input-wrap label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.tapu-calc__input-row { position: relative; }
.tapu-calc__input-row input {
  width: 100%; height: 52px; padding: 0 40px 0 16px;
  border: 2px solid var(--border); border-radius: 10px;
  font-family: var(--font); font-size: 20px; font-weight: 700; color: var(--blue);
  transition: border-color .15s;
}
.tapu-calc__input-row input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,67,153,.1); }
.tapu-calc__input-row input::placeholder { color: var(--text-muted); font-weight: 400; font-size: 16px; }
.tapu-calc__currency {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 18px; font-weight: 700; color: var(--text-muted);
}
.tapu-calc__result { margin-top: 24px; }
.tapu-calc__result h3 { font-size: 17px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--blue-light); }
.tapu-calc__section { margin-bottom: 20px; }
.tapu-calc__section h4 { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.tapu-calc__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px;
}
.tapu-calc__row span { color: var(--text-light); }
.tapu-calc__row strong { color: var(--text); font-weight: 600; }
.tapu-calc__row--total { border-bottom: 2px solid var(--blue-light); }
.tapu-calc__row--total span { font-weight: 600; color: var(--text); }
.tapu-calc__row--total strong { color: var(--blue); font-weight: 700; }
.tapu-calc__grand {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; background: var(--blue); border-radius: 8px; margin-top: 16px;
}
.tapu-calc__grand span { color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; }
.tapu-calc__grand strong { color: var(--white); font-size: 20px; font-weight: 900; }
.tapu-calc__note { font-size: 11px; color: var(--text-muted); margin-top: 12px; font-style: italic; }

/* ═══════════════════════════════════════════
   TOOLS GRID (Ana sayfa)
   ═══════════════════════════════════════════ */
.tools-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:768px) { .tools-grid { grid-template-columns: 1fr 1fr; } }
.tools-grid__info { display: flex; flex-direction: column; gap: 14px; }
.tool-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 20px; transition: box-shadow .15s, transform .15s; color: inherit;
}
.tool-card--link:hover { box-shadow: 0 4px 16px rgba(30,67,153,.08); transform: translateY(-1px); color: inherit; }
.tool-card__icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.tool-card h3 { font-size: 15px; margin-bottom: 2px; }
.tool-card p { font-size: 13px; color: var(--text-light); margin: 0; }
.tool-card__rates { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.tool-card__rates span { font-size: 13px; color: var(--text-light); }
.tool-card__rates strong { color: var(--text); font-weight: 600; margin-right: 2px; }

/* ═══════════════════════════════════════════
   YAPILAN İŞLEMLER
   ═══════════════════════════════════════════ */
.islem-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
@media(min-width:600px) { .islem-stats { grid-template-columns: repeat(4, 1fr); } }
.islem-stat {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 20px; text-align: center;
}
.islem-stat strong { display: block; font-size: 28px; font-weight: 900; color: var(--blue); margin-bottom: 2px; }
.islem-stat span { font-size: 13px; color: var(--text-muted); }
.islem-stat--satildi { border-left: 3px solid #e74c3c; }
.islem-stat--satildi strong { color: #e74c3c; }
.islem-stat--kiralandi { border-left: 3px solid #f39c12; }
.islem-stat--kiralandi strong { color: #f39c12; }

.islem-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; position: relative;
}
.islem-card__img { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--bg-alt); }
.islem-card__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(40%); }
.islem-card__badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  padding: 4px 12px; border-radius: 4px;
}
.islem-card__badge--satildi { background: #e74c3c; color: #fff; }
.islem-card__badge--kiralandi { background: #f39c12; color: #fff; }
.islem-card__body { padding: 16px; }
.islem-card__price { font-size: 18px; font-weight: 700; color: var(--text-muted); margin-bottom: 4px; text-decoration: line-through; }
.islem-card__title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 4px; line-height: 1.4; }
.islem-card__loc { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.islem-card__specs { display: flex; gap: 10px; padding-top: 8px; border-top: 1px solid var(--border); }
.islem-card__specs span { font-size: 12px; color: var(--text-light); }

/* ═══════════════════════════════════════════
   TAPU GALERİ
   ═══════════════════════════════════════════ */
.tapu-gallery {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media(min-width:600px) { .tapu-gallery { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:900px) { .tapu-gallery { grid-template-columns: repeat(4, 1fr); } }
.tapu-gallery--compact {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  gap: 16px; padding-bottom: 8px; -webkit-overflow-scrolling: touch;
}
.tapu-gallery--compact .tapu-gallery__item {
  flex: 0 0 200px; scroll-snap-align: start;
}
.tapu-gallery__item {
  position: relative; border-radius: 12px; overflow: hidden;
  background: var(--bg-alt);
  border: 2px solid var(--white); box-shadow: 0 4px 16px rgba(30,67,153,.08);
  transition: transform .2s, box-shadow .2s;
}
.tapu-gallery__item:hover {
  transform: translateY(-4px); box-shadow: 0 8px 24px rgba(30,67,153,.12);
}
.tapu-gallery__item img {
  width: 100%; height: auto; display: block;
}
.tapu-gallery__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(30,67,153,.85));
  padding: 40px 14px 14px; display: flex; align-items: center; gap: 6px;
  color: var(--white); font-size: 12px; font-weight: 600;
}
.tapu-gallery__overlay svg { flex-shrink: 0; stroke: #4ade80; }

/* Tapu Lightbox */
.tapu-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
  cursor: pointer;
}
.tapu-lightbox.open { opacity: 1; visibility: visible; }
.tapu-lightbox img {
  max-width: 90vw; max-height: 90vh; border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  transform: scale(.9); transition: transform .25s;
}
.tapu-lightbox.open img { transform: scale(1); }
.tapu-lightbox__close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s;
}
.tapu-lightbox__close:hover { background: rgba(255,255,255,.3); }
.tapu-lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s;
}
.tapu-lightbox__nav:hover { background: rgba(255,255,255,.3); }
.tapu-lightbox__nav--prev { left: 20px; }
.tapu-lightbox__nav--next { right: 20px; }
.tapu-gallery__item { cursor: pointer; }

/* Eski uyumluluk */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.contact-info__item { margin-bottom: 20px; }
.contact-info__item strong { display: block; font-size: 12px; color: var(--text-muted); font-weight: 500; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .04em; }
.contact-info__item a, .contact-info__item span { font-size: 15px; color: var(--text); font-weight: 500; }
@media(min-width:768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* ═══════════════════════════════════════════
   ARTICLE (blog single)
   ═══════════════════════════════════════════ */
.article { max-width: 680px; margin: 0 auto; }
.article h1 { font-size: 32px; margin-bottom: 10px; }
.article__meta { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.article__meta span + span { margin-left: 12px; }
.article__content { font-size: 16px; color: var(--text); line-height: 1.8; font-weight: 300; }
.article__content p { margin-bottom: 20px; }
.article__content h2 { font-size: 22px; margin: 36px 0 12px; }
.article__content h3 { font-size: 18px; margin: 28px 0 10px; }
.article__content a { color: var(--blue); }
.article__content img { border-radius: 8px; margin: 20px 0; }
.article__content ul, .article__content ol { padding-left: 24px; margin-bottom: 20px; }
.article__content li { margin-bottom: 6px; }
.article__content blockquote { border-left: 3px solid var(--blue); padding: 12px 20px; margin: 24px 0; background: var(--blue-light); border-radius: 0 6px 6px 0; }
.article__content figure { margin: 24px 0; }
.article__content figcaption { font-size: 13px; color: var(--text-muted); margin-top: 6px; text-align: center; }
.article__content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.article__content th, .article__content td { padding: 10px 14px; border: 1px solid var(--border); font-size: 14px; text-align: left; }
.article__content th { background: var(--bg-alt); font-weight: 600; }
/* Elementor cleanup */
.article__content .elementor-widget-container { padding: 0 !important; margin: 0 !important; }
.article__content .elementor-element { padding: 0 !important; margin-bottom: 0 !important; }
.article__content .elementor-section { padding: 0 !important; }
.article__content .elementor-container { max-width: 100% !important; padding: 0 !important; }
.article__content .elementor-column-wrap, .article__content .elementor-widget-wrap { padding: 0 !important; }
/* Hide Elementor loop/carousel widgets (ilan kartları) */
.article__content [data-widget_type="loop-carousel.post"],
.article__content [data-widget_type="loop-grid.post"],
.article__content .elementor-loop-container,
.article__content .elementor-widget-loop-carousel,
.article__content .elementor-widget-loop-grid { display: none !important; }
/* Hide Elementor icon-list widgets that show ilan data */
.article__content .elementor-widget-icon-list { display: none !important; }
/* Hide Elementor spacer widgets */
.article__content .elementor-widget-spacer { display: none !important; }
/* Hide standalone heading widgets with just "Satılık"/"Kiralık" etc */
.article__content .elementor-widget-heading { display: none !important; }
/* Show text-editor widgets (actual content) */
.article__content .elementor-widget-text-editor { display: block !important; }
.article__content .container { max-width: 100%; padding: 0; }
.article__content article { all: unset; display: block; }
.article__content header { margin-bottom: 20px; }
.article__content section { margin-bottom: 28px; }
.article__content hr { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* ═══════════════════════════════════════════
   BLOG CONTENT — eda-* custom classes
   ═══════════════════════════════════════════ */

/* Container */
.eda-container, .eda-news-container, .eda-article { max-width: 100%; }

/* Header */
.eda-header, .eda-news-header { margin-bottom: 24px; }
.eda-header h1, .eda-news-header h1 { font-size: 26px !important; line-height: 1.3; margin-bottom: 8px; }

/* Summary / Alert */
.eda-summary, .eda-alert-box {
  background: var(--blue-light) !important; border: 1px solid var(--blue-soft) !important; border-left: 4px solid var(--blue) !important;
  border-radius: 10px !important; padding: 20px 24px !important; margin: 24px 0 !important; font-size: 15px; line-height: 1.8; color: var(--text);
}
.eda-summary strong, .eda-alert-box strong { color: var(--blue); }
.eda-summary p, .eda-alert-box p { margin-bottom: 0 !important; }

/* Cards */
.eda-card, .eda-news-card {
  background: var(--white) !important; border: 1px solid var(--border) !important; border-radius: 10px !important;
  padding: 24px !important; margin: 0 0 16px !important; box-shadow: 0 2px 8px rgba(30,67,153,.04) !important;
  transition: box-shadow .15s, transform .15s;
}
.eda-card:hover, .eda-news-card:hover {
  box-shadow: 0 4px 16px rgba(30,67,153,.08) !important; transform: translateY(-1px);
}
.eda-card > b, .eda-news-card > b {
  display: block !important; font-size: 16px !important; font-weight: 700 !important; color: var(--black) !important; margin-bottom: 10px !important;
  padding-bottom: 8px; border-bottom: 2px solid var(--blue-light);
}

/* Site list grid */
.eda-site-list {
  display: grid !important; grid-template-columns: 1fr; gap: 16px; margin: 24px 0 !important;
}
@media(min-width:600px) { .eda-site-list { grid-template-columns: repeat(2, 1fr) !important; } }
@media(min-width:900px) { .eda-site-list { grid-template-columns: repeat(3, 1fr) !important; } }

/* Tables */
.eda-table-wrapper, .eda-table-container {
  overflow-x: auto; margin: 24px 0 !important; border-radius: 10px !important; border: 1px solid var(--border) !important;
}
.eda-table, table.eda-table {
  width: 100% !important; border-collapse: collapse !important; font-size: 14px !important; margin: 0 !important; border: none !important;
}
.eda-table th {
  padding: 12px 16px !important; background: var(--blue) !important; color: var(--white) !important;
  font-weight: 600 !important; text-align: left !important; font-size: 13px !important; white-space: nowrap; border: none !important;
}
.eda-table td {
  padding: 12px 16px !important; border: none !important; border-bottom: 1px solid var(--border) !important; text-align: left !important;
}
.eda-table tr:hover td { background: var(--blue-light) !important; }

/* FAQ */
.eda-faq, .eda-faq-section { margin: 28px 0; }
.eda-faq-item, .eda-faq > div:not(.eda-faq-item) {
  border: 1px solid var(--border) !important; border-radius: 8px !important; margin-bottom: 10px !important; overflow: hidden;
  background: var(--white) !important;
}
.eda-faq h3, .eda-faq-item h3 {
  padding: 14px 18px !important; font-size: 15px !important; font-weight: 600 !important; color: var(--black) !important;
  margin: 0 !important; background: var(--bg-alt) !important; border-bottom: 1px solid var(--border) !important;
}
.eda-faq-item > p, .eda-faq > div > p {
  padding: 14px 18px !important; font-size: 14px !important; color: var(--text-light) !important; line-height: 1.7 !important; margin: 0 !important;
}

/* CTA block — blog single'da gizle, template kendi CTA'sını koyuyor */
.article__content .eda-cta { display: none !important; }
.eda-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%) !important;
  border-radius: 12px !important; padding: 40px 32px !important; text-align: center !important; margin: 32px 0 !important;
  color: var(--white) !important; border: none !important;
}
.eda-cta h2 { color: var(--white) !important; font-size: 24px !important; margin: 0 0 10px !important; }
.eda-cta p { color: rgba(255,255,255,.7) !important; font-size: 15px !important; margin-bottom: 12px !important; }
.eda-cta strong { color: var(--white) !important; }
.eda-cta a, a.eda-btn {
  display: inline-block !important; background: var(--white) !important; color: var(--blue) !important;
  padding: 12px 28px !important; border-radius: 8px !important; font-size: 14px !important; font-weight: 600 !important;
  margin-top: 8px !important; transition: background .15s, transform .15s; text-decoration: none !important;
}
.eda-cta a:hover, a.eda-btn:hover { background: var(--blue-light) !important; transform: translateY(-1px); }

/* Blog içerik özel class'ları */
.article__content .callout,
.article__content .mini,
.article__content .meta-note {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px;
  padding: 16px 20px; margin: 20px 0; font-size: 14px; line-height: 1.7; color: var(--text-light);
}
.article__content .callout { border-left: 3px solid var(--blue); }
.article__content .meta-note { font-style: italic; font-size: 13px; }
.article__content .mini { font-size: 12px; color: var(--text-muted); }

/* İçindekiler (toc) */
.article__content .toc { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px; padding: 20px 24px; margin: 24px 0; }
.article__content .toc h2 { font-size: 16px; margin-bottom: 10px; }
.article__content .toc ul { padding-left: 20px; margin: 0; }
.article__content .toc li { margin-bottom: 4px; font-size: 14px; }
.article__content .toc a { color: var(--blue); font-weight: 500; }

/* CTA blokları (Elementor'dan gelen) — siyah arka planlı alanlar */
.article__content .cta-block,
.article__content [style*="background-color:#1a1a2e"],
.article__content [style*="background-color: #1a1a2e"],
.article__content [style*="background:#1a1a2e"] {
  background: var(--black) !important; color: var(--white) !important;
  border-radius: 12px !important; padding: 32px 24px !important; text-align: center;
  margin: 28px 0;
}
.article__content [style*="background-color:#1a1a2e"] h2,
.article__content [style*="background-color:#1a1a2e"] h3,
.article__content [style*="background-color:#1a1a2e"] p {
  color: rgba(255,255,255,.8) !important;
}
.article__content [style*="background-color:#1a1a2e"] a {
  color: var(--blue) !important;
}

/* Elementor butonları normalize et */
.article__content .elementor-button,
.article__content [class*="elementor-button"] {
  display: inline-block !important; padding: 10px 20px !important;
  background: var(--blue) !important; color: var(--white) !important;
  border-radius: var(--radius) !important; font-size: 14px !important;
  font-weight: 600 !important; text-decoration: none !important;
  margin: 8px 0 !important;
}

@media(min-width:768px) { .article h1 { font-size: 38px; } }

/* ═══════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
/* ═══════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════ */
.reviews { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 20px; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
.review { flex: 0 0 340px; scroll-snap-align: start; padding: 24px; border: 1px solid var(--border); border-radius: 10px; background: var(--white); }
.review__stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.review__text { font-size: 15px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.review__author strong { font-size: 14px; color: var(--black); }
.review__author span { font-size: 12px; color: var(--text-muted); margin-left: 8px; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq { margin-top: 32px; }
.faq h2 { font-size: 22px; margin-bottom: 16px; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.faq__item summary {
  padding: 14px 18px; font-size: 15px; font-weight: 600; color: var(--black);
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  background: var(--white); transition: background .15s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 20px; color: var(--blue); font-weight: 300; }
.faq__item[open] summary::after { content: '−'; }
.faq__item[open] summary { background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.faq__item p { padding: 14px 18px; font-size: 14px; color: var(--text-light); line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════
   PROJECT HERO
   ═══════════════════════════════════════════ */
.proj-hero {
  padding: 48px 0 56px; background: var(--blue-light); border-bottom: 1px solid var(--blue-soft);
}
.proj-hero__eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px;
}
.proj-hero__title { font-size: 34px; margin-bottom: 12px; }
.proj-hero__desc { color: var(--text-light); font-size: 16px; max-width: 560px; margin-bottom: 28px; }
.proj-hero__stats { display: flex; gap: 36px; }
.proj-hero__stats strong { display: block; font-size: 22px; font-weight: 900; color: var(--blue); line-height: 1.2; }
.proj-hero__stats span { font-size: 12px; color: var(--text-muted); font-weight: 400; }
@media(min-width:768px) { .proj-hero { padding: 64px 0 72px; } .proj-hero__title { font-size: 40px; } }

/* ═══════════════════════════════════════════
   PROJECT GRID
   ═══════════════════════════════════════════ */
.proj-grid { display: grid; gap: 24px; }
@media(min-width:600px) { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .proj-grid { grid-template-columns: repeat(3, 1fr); } }

/* ═══════════════════════════════════════════
   PROJECT CARD
   ═══════════════════════════════════════════ */
.proj-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; transition: box-shadow .2s, transform .2s; color: inherit;
}
.proj-card:hover {
  box-shadow: 0 8px 24px rgba(30,67,153,.1); transform: translateY(-3px);
  border-color: var(--blue-soft); color: inherit;
}
.proj-card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.proj-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.proj-card:hover .proj-card__img img { transform: scale(1.05); }
.proj-card__placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--text-muted); background: var(--bg-alt);
}
.proj-card__badge {
  position: absolute; top: 12px; left: 12px;
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; letter-spacing: .3px;
}
.proj-card__badge--satilik { background: rgba(22,101,52,.9); color: #fff; }
.proj-card__badge--ontalep { background: rgba(146,64,14,.85); color: #fff; }
.proj-card__body { padding: 20px 20px 0; flex: 1; }
.proj-card__title { font-size: 17px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; color: var(--black); }
.proj-card__loc {
  font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-bottom: 12px;
}
.proj-card__loc svg { flex-shrink: 0; }
.proj-card__price { font-size: 20px; font-weight: 900; color: var(--blue); }
.proj-card__price--muted { color: var(--text-muted); font-size: 15px; font-weight: 500; }
.proj-card__meta { margin-bottom: 12px; }
.proj-card__specs { display: flex; flex-wrap: wrap; gap: 6px; padding-bottom: 16px; }
.proj-card__specs span {
  background: var(--bg-alt); border: 1px solid var(--border); padding: 3px 10px;
  border-radius: 4px; font-size: 11px; color: var(--text-light); font-weight: 500;
}
.proj-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-top: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--blue);
}
.proj-card:hover .proj-card__foot { background: var(--blue-light); }

/* ═══════════════════════════════════════════
   PROJECT TABLE
   ═══════════════════════════════════════════ */
.proj-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.proj-table th {
  text-align: left; padding: 12px 16px; background: var(--blue); color: var(--white);
  font-weight: 600; font-size: 13px; white-space: nowrap;
}
.proj-table th:first-child { border-radius: 8px 0 0 0; }
.proj-table th:last-child { border-radius: 0 8px 0 0; }
.proj-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.proj-table tr:hover td { background: var(--blue-light); }

/* ═══════════════════════════════════════════
   PROJECT DETAIL HERO
   ═══════════════════════════════════════════ */
.proj-detail-hero { padding: 32px 0 0; }
.proj-detail-hero__grid { display: flex; flex-direction: column; gap: 28px; }
.proj-detail-hero__img { border-radius: 12px; overflow: hidden; }
.proj-detail-hero__img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.proj-detail-hero__title { font-size: 28px; margin-bottom: 16px; }
.proj-detail-hero__btns { display: flex; gap: 10px; flex-wrap: wrap; }
@media(min-width:768px) {
  .proj-detail-hero__grid { flex-direction: row; align-items: center; }
  .proj-detail-hero__img { flex: 1.2; min-width: 0; }
  .proj-detail-hero__body { flex: 1; }
  .proj-detail-hero__title { font-size: 32px; }
}

/* Proje detay içerik max genişlik */
.proj-detail-content { max-width: 800px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   PROJE DETAY SCOPE — Elementor inline CSS override
   Proje sayfaları post_content'inde kendi :root,
   .wrap, h2, h3 vs tanımları var. Bunları izole ediyoruz.
   ═══════════════════════════════════════════ */
.proj-detail-scope {
  display: block;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
.proj-detail-scope img { max-width: 100%; height: auto; display: block; border-radius: 10px; }
.proj-detail-scope a { color: var(--blue); text-decoration: none; }
.proj-detail-scope h1 { font-size: 28px; font-weight: 900; color: var(--black); margin: 0 0 12px; line-height: 1.2; }
.proj-detail-scope h2 { font-size: 22px; font-weight: 900; color: var(--black); margin: 28px 0 12px; line-height: 1.2; }
.proj-detail-scope h3 { font-size: 18px; font-weight: 700; color: var(--black); margin: 24px 0 8px; line-height: 1.3; }
.proj-detail-scope p { margin: 0 0 16px; line-height: 1.8; color: var(--text-light); }
.proj-detail-scope ul { list-style: disc; padding-left: 20px; margin: 0 0 16px; }
.proj-detail-scope li { padding: 4px 0; color: var(--text-light); font-size: 15px; }
.proj-detail-scope hr { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* Elementor inline .wrap override */
.proj-detail-scope .wrap { max-width: 100%; padding: 0; }

/* Elementor inline .card override */
.proj-detail-scope .card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 24px; margin: 20px 0; box-shadow: none;
}

/* Elementor inline .grid-2 override */
.proj-detail-scope .grid-2 {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px;
}
@media(max-width:768px) { .proj-detail-scope .grid-2 { grid-template-columns: 1fr; } }

/* Elementor inline .kv table override */
.proj-detail-scope .kv { width: 100%; border-collapse: collapse; font-size: 14px; }
.proj-detail-scope .kv th,
.proj-detail-scope .kv td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
.proj-detail-scope .kv th { background: var(--bg-alt); width: 200px; font-weight: 600; color: var(--text); }
.proj-detail-scope .kv td { color: var(--text-light); }

/* Elementor inline .clean list override */
.proj-detail-scope ul.clean { list-style: none; padding: 0; margin: 0; }
.proj-detail-scope ul.clean li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
  color: var(--text-light); font-size: 14px;
}

/* Elementor inline .hero slider override */
.proj-detail-scope .hero {
  position: relative; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border); background: var(--black); margin: 0 0 20px;
}
.proj-detail-scope .slider-track { display: flex; transition: transform .45s ease; }
.proj-detail-scope .slider-track img { width: 100%; height: 400px; object-fit: cover; flex: 0 0 100%; border-radius: 0; }
.proj-detail-scope .navbtn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.5); color: #fff; border: 0; border-radius: 50%;
  width: 40px; height: 40px; display: grid; place-items: center; cursor: pointer;
}
.proj-detail-scope .prev { left: 12px; }
.proj-detail-scope .next { right: 12px; }

/* Elementor inline .badge override */
.proj-detail-scope .badge {
  display: inline-block; background: var(--blue-light); border: 1px solid var(--blue-soft);
  padding: 4px 12px; border-radius: 4px; color: var(--blue); font-weight: 600; font-size: 13px;
}

/* Elementor inline .btn override */
.proj-detail-scope .btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 24px; font-size: 14px; font-weight: 600;
  border-radius: var(--radius); border: none; cursor: pointer;
  background: var(--blue); color: var(--white); transition: background .15s;
  text-decoration: none;
}
.proj-detail-scope .btn:hover { background: var(--blue-hover); color: var(--white); }
.proj-detail-scope .btn.line {
  background: var(--white) !important; border: 1px solid var(--border) !important; color: var(--text) !important;
}
.proj-detail-scope .btn.line:hover { border-color: var(--blue) !important; color: var(--blue) !important; }

/* Elementor inline .cta row override */
.proj-detail-scope .cta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

/* Elementor inline .pill override */
.proj-detail-scope .pill {
  display: inline-block; background: var(--bg-alt); border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 4px; font-size: 12px; color: var(--text-light); margin: 2px;
}

/* page-title override */
.proj-detail-scope .page-title {
  font-weight: 900; font-size: 28px; letter-spacing: 0; margin: 0 0 8px;
  color: var(--black); line-height: 1.2;
}
.proj-detail-scope .lead { margin: 8px 0 20px; color: var(--text-light); font-size: 15px; }

/* breadcrumb inside scope - hide (we have our own) */
.proj-detail-scope .breadcrumb { display: none; }

/* ═══════════════════════════════════════════
   RESPONSIVE TABLE WRAPPER
   ═══════════════════════════════════════════ */
.article__content table,
.proj-detail-scope table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.proj-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 8px; border: 1px solid var(--border); }
.proj-table-wrap .proj-table { border: none; }

/* ═══════════════════════════════════════════
   MOBILE REFINEMENTS (max-width: 480px)
   ═══════════════════════════════════════════ */
@media(max-width:480px) {
  .hero__title { font-size: 26px; }
  .hero__nums { gap: 20px; }
  .hero__nums strong { font-size: 22px; }
  .hero__btns .btn { width: 100%; }
  .contact-hero__title { font-size: 26px; }
  .proj-hero__title { font-size: 26px; }
  .proj-hero__stats { gap: 20px; }
  .listing__price { font-size: 22px; }
  .section { padding: 48px 0; }
  .section-head h2 { font-size: 22px; }
  .article h1 { font-size: 24px; }
  .article__content h2 { font-size: 18px; }
  .proj-detail-hero__title { font-size: 22px; }
  .cta h2 { font-size: 22px; }
  .cta { padding: 36px 16px; }
}

/* ═══════════════════════════════════════════
   KV TABLE MOBILE
   ═══════════════════════════════════════════ */
@media(max-width:600px) {
  .proj-detail-scope .kv th { width: auto; min-width: 120px; }
  .proj-detail-scope .slider-track img { height: 240px; }
}

/* ═══════════════════════════════════════════════════════════
   LISTING V2 - Modern Single Listing Page
   ═══════════════════════════════════════════════════════════ */

/* --- Gallery --- */
.listing-v2__gallery {
  background: var(--bg-alt); padding: 24px 0;
}
.listing-v2__gallery-wrap {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
}
.listing-v2__gallery-main {
  position: relative; border-radius: 12px; overflow: hidden;
  background: var(--white); aspect-ratio: 16/9; max-height: 560px;
  border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(30,67,153,.08);
}
.listing-v2__gallery-main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity .15s ease;
}
/* Watermark logo overlay */
.listing-v2__watermark {
  position: absolute; bottom: 16px; left: 16px;
  width: 140px; height: auto; opacity: .45;
  pointer-events: none; z-index: 1;
  filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,.5));
}
.listing-v2__gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--blue); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s ease;
  z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.listing-v2__gallery-nav:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.listing-v2__gallery-nav--prev { left: 16px; }
.listing-v2__gallery-nav--next { right: 16px; }
.listing-v2__gallery-counter {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(255,255,255,.9); color: var(--blue); border: 1px solid var(--border);
  padding: 4px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 600; letter-spacing: .5px;
  backdrop-filter: blur(4px); z-index: 2;
}
.listing-v2__gallery-thumbs {
  display: flex; gap: 8px; margin-top: 10px; padding-bottom: 12px;
  overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: thin; scrollbar-color: var(--blue-soft) transparent;
}
.listing-v2__gallery-thumbs::-webkit-scrollbar { height: 4px; }
.listing-v2__gallery-thumbs::-webkit-scrollbar-thumb { background: var(--blue-soft); border-radius: 4px; }
.listing-v2__gallery-thumb {
  flex-shrink: 0; width: 80px; height: 56px; border-radius: 6px;
  overflow: hidden; border: 2px solid transparent; cursor: pointer;
  opacity: .5; transition: all .15s ease; background: none; padding: 0;
}
.listing-v2__gallery-thumb:hover,
.listing-v2__gallery-thumb.active {
  opacity: 1; border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue);
}
.listing-v2__gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Info Bar --- */
.listing-v2__info-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 72px; z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: box-shadow .15s ease;
}
.listing-v2__info-bar-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 0; flex-wrap: wrap;
}
.listing-v2__info-price {
  font-size: 24px; font-weight: 900; color: var(--blue);
  white-space: nowrap; line-height: 1.2;
}
.listing-v2__info-price-period {
  font-size: 14px; font-weight: 400; color: var(--text-muted);
}
.listing-v2__info-badges {
  display: flex; gap: 6px; align-items: center;
}
.listing-v2__badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .3px;
  padding: 4px 12px; border-radius: 4px;
}
.listing-v2__badge--satilik { background: #dcfce7; color: #166534; }
.listing-v2__badge--kiralik { background: #dbeafe; color: #1e40af; }
.listing-v2__badge--type {
  background: var(--blue-light); color: var(--blue);
  border: 1px solid var(--blue-soft);
}
.listing-v2__info-loc {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; color: var(--text-muted); white-space: nowrap;
}
.listing-v2__info-wa {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: var(--white); padding: 7px 16px;
  border-radius: var(--radius); font-size: 13px; font-weight: 600;
  transition: background .15s ease; white-space: nowrap;
}
.listing-v2__info-wa:hover { background: #1fb855; color: var(--white); }

/* --- Two Column Grid --- */
.listing-v2__grid {
  display: flex; flex-direction: column; gap: 32px;
}
@media(min-width:1024px) {
  .listing-v2__grid { flex-direction: row; }
  .listing-v2__main { flex: 1; min-width: 0; }
  .listing-v2__sidebar { width: 360px; flex-shrink: 0; }
}

/* --- Title & Portfoy --- */
.listing-v2__title {
  font-size: 24px; font-weight: 900; color: var(--black);
  line-height: 1.25; margin-bottom: 8px;
}
.listing-v2__portfoy {
  font-size: 13px; color: var(--text-muted); margin-bottom: 20px;
}
.listing-v2__portfoy strong { color: var(--text-light); font-weight: 600; }

/* --- Quick Specs --- */
.listing-v2__specs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-bottom: 32px;
}
@media(min-width:600px) {
  .listing-v2__specs { grid-template-columns: repeat(4, 1fr); }
}
.listing-v2__spec-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 16px 14px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.listing-v2__spec-card:hover {
  border-color: var(--blue-soft); box-shadow: 0 4px 12px rgba(30,67,153,.06);
}
.listing-v2__spec-val {
  font-size: 17px; font-weight: 700; color: var(--black); line-height: 1.2;
}
.listing-v2__spec-label {
  font-size: 11px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: .3px;
}

/* --- Details Table --- */
.listing-v2__details { margin-bottom: 32px; }
.listing-v2__details h2 {
  font-size: 18px; font-weight: 700; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 2px solid var(--blue);
  display: inline-block;
}
.listing-v2__det-grid {
  display: grid; grid-template-columns: 1fr;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden;
}
@media(min-width:600px) {
  .listing-v2__det-grid { grid-template-columns: repeat(2, 1fr); }
}
.listing-v2__det-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.listing-v2__det-row:last-child { border-bottom: none; }
.listing-v2__det-row--zebra { background: var(--bg-alt); }
.listing-v2__det-row span { color: var(--text-muted); font-weight: 400; }
.listing-v2__det-row strong { color: var(--text); font-weight: 600; }

/* --- Features --- */
.listing-v2__features { margin-bottom: 32px; }
.listing-v2__features h2 {
  font-size: 18px; font-weight: 700; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 2px solid var(--blue);
  display: inline-block;
}
.listing-v2__feat-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.listing-v2__feat-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534;
  padding: 6px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 500; transition: all .15s ease;
}
.listing-v2__feat-tag:hover {
  background: #dcfce7; border-color: #86efac;
}

/* --- Description --- */
.listing-v2__desc { margin-bottom: 32px; }
.listing-v2__desc h2 {
  font-size: 18px; font-weight: 700; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 2px solid var(--blue);
  display: inline-block;
}
.listing-v2__desc-text {
  font-size: 15px; color: var(--text-light); line-height: 1.9;
}
.listing-v2__desc-text p { margin-bottom: 16px; }

/* Açıklama intro */
.listing-v2__desc-intro {
  font-size: 15px; color: var(--text); line-height: 1.9;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 24px; margin-bottom: 20px;
}
.listing-v2__desc-intro p { margin-bottom: 14px; }
.listing-v2__desc-intro p:last-child { margin-bottom: 0; }

/* Açıklama highlights */
.listing-v2__desc-highlights {
  background: var(--blue-light); border: 1px solid var(--blue-soft); border-radius: 10px;
  padding: 24px;
}
.listing-v2__desc-highlights h3 {
  font-size: 15px; font-weight: 700; color: var(--blue); margin: 0 0 16px;
  display: flex; align-items: center; gap: 8px;
}
.listing-v2__desc-feat-grid {
  display: grid; grid-template-columns: 1fr; gap: 8px;
}
@media(min-width:480px) { .listing-v2__desc-feat-grid { grid-template-columns: repeat(2, 1fr); } }
.listing-v2__desc-feat-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; background: var(--white); border-radius: 6px;
  font-size: 13px; color: var(--text); font-weight: 500;
}
.listing-v2__desc-feat-item svg { flex-shrink: 0; }

/* Info bar phone button */
.listing-v2__info-phone {
  display: flex; align-items: center; gap: 6px;
  background: var(--blue); color: var(--white); padding: 6px 14px;
  border-radius: 6px; font-size: 13px; font-weight: 600;
  transition: background .15s;
}
.listing-v2__info-phone:hover { background: var(--blue-hover); color: var(--white); }

/* --- Video --- */
.listing-v2__video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: 10px; overflow: hidden;
}
.listing-v2__video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
}

/* --- Internal Links --- */
.listing-v2__internal-links {
  margin-bottom: 28px; padding: 20px; background: var(--bg-alt);
  border-radius: 10px; border: 1px solid var(--border);
}
.listing-v2__internal-links p {
  font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.7;
}
.listing-v2__internal-links a { font-weight: 600; }

/* --- Tapu Calculator --- */
.listing-v2__tapu-calc {
  margin-bottom: 28px; max-width: 560px;
}

/* --- Sidebar --- */
.listing-v2__sidebar-sticky {
  position: sticky; top: 130px;
}
.listing-v2__agent-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 24px; box-shadow: 0 4px 16px rgba(30,67,153,.06);
}
.listing-v2__agent-top {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.listing-v2__agent-photo {
  width: 56px; height: 56px; border-radius: 10px; object-fit: cover;
  border: 2px solid var(--blue-soft);
}
.listing-v2__agent-name {
  display: block; font-size: 15px; font-weight: 700; color: var(--black);
}
.listing-v2__agent-title {
  display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px;
}
.listing-v2__btn-call {
  margin-bottom: 8px; gap: 8px; font-size: 15px;
}
.listing-v2__btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; height: 44px; background: var(--green); color: var(--white);
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  transition: background .15s ease; margin-bottom: 4px;
}
.listing-v2__btn-wa:hover { background: #1fb855; color: var(--white); }

/* --- Contact Form --- */
.listing-v2__form {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--border);
}
.listing-v2__form-title {
  font-size: 15px; font-weight: 700; color: var(--black);
  margin-bottom: 14px;
}

/* --- FAQ --- */
.listing-v2__faq-section { background: var(--white); }
.listing-v2__faq {
  max-width: 800px; margin: 0 auto;
}
.listing-v2__faq-item {
  border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 10px; overflow: hidden;
  transition: border-color .15s ease;
}
.listing-v2__faq-item:hover { border-color: var(--blue-soft); }
.listing-v2__faq-item.open { border-color: var(--blue); }
.listing-v2__faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 16px 20px; background: var(--white); border: none;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  color: var(--black); text-align: left; cursor: pointer;
  transition: background .15s ease;
}
.listing-v2__faq-q:hover { background: var(--bg-alt); }
.listing-v2__faq-q svg {
  flex-shrink: 0; transition: transform .2s ease; color: var(--blue);
}
.listing-v2__faq-item.open .listing-v2__faq-q svg { transform: rotate(45deg); }
.listing-v2__faq-item.open .listing-v2__faq-q { background: var(--blue-light); }
.listing-v2__faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.listing-v2__faq-item.open .listing-v2__faq-a { max-height: 300px; }
.listing-v2__faq-a p {
  padding: 0 20px 16px; font-size: 14px; color: var(--text-light);
  line-height: 1.8; margin: 0;
}

/* --- CTA --- */
.listing-v2__cta-section { background: var(--blue-light); }
.listing-v2__cta {
  text-align: center; padding: 20px 0;
}
.listing-v2__cta h2 {
  font-size: 26px; margin-bottom: 8px;
}
.listing-v2__cta p {
  color: var(--text-light); font-size: 15px; margin-bottom: 24px;
}
.listing-v2__cta-btns {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.listing-v2__cta-btns .btn { gap: 8px; }

/* --- EİDS Badge --- */
.eids-badge {
  display: flex; align-items: center; gap: 16px;
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 12px;
  padding: 18px 24px;
}
.eids-badge strong { display: block; font-size: 15px; color: #166534; margin-bottom: 2px; }
.eids-badge span { display: block; font-size: 13px; color: #374151; }
.eids-badge small { display: block; font-size: 12px; color: #6b7280; margin-top: 2px; }
.eids-badge svg { flex-shrink: 0; }

/* --- LISTING V2 RESPONSIVE --- */
@media(max-width:768px) {
  .listing-v2__gallery-main { aspect-ratio: 4/3; max-height: 380px; }
  .listing-v2__gallery-nav { width: 36px; height: 36px; }
  .listing-v2__gallery-nav--prev { left: 10px; }
  .listing-v2__gallery-nav--next { right: 10px; }
  .listing-v2__gallery-thumb { width: 64px; height: 44px; }
  .listing-v2__info-bar-inner { gap: 10px; padding: 10px 0; }
  .listing-v2__info-price { font-size: 20px; }
  .listing-v2__info-wa span { display: none; }
  .listing-v2__info-wa { padding: 7px 10px; border-radius: 50%; }
  .listing-v2__title { font-size: 20px; }
  .listing-v2__cta h2 { font-size: 22px; }
}
@media(max-width:480px) {
  .listing-v2__gallery-wrap { padding: 0; }
  .listing-v2__gallery-main { border-radius: 0; aspect-ratio: 4/3; }
  .listing-v2__gallery-thumbs { padding: 0 12px 8px; margin-top: 8px; }
  .listing-v2__specs { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .listing-v2__spec-card { padding: 12px 10px; }
  .listing-v2__spec-val { font-size: 15px; }
  .listing-v2__det-grid { grid-template-columns: 1fr; }
  .listing-v2__faq-q { padding: 14px 16px; font-size: 14px; }
  .listing-v2__faq-a p { padding: 0 16px 14px; font-size: 13px; }
}

/* ═══════════════════════════════════════════
   TAPU İŞLEMLERİ
   ═══════════════════════════════════════════ */

/* --- HERO --- */
.tapu-hero {
  background: linear-gradient(135deg, #0D1B3E 0%, var(--blue) 50%, #2563EB 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}
.tapu-hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.12);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  margin-bottom: 20px;
}
.tapu-hero h1 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.tapu-hero__sub {
  font-size: 17px;
  opacity: .85;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.tapu-hero__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}
.tapu-hero__stats div { text-align: center; }
.tapu-hero__stats strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
}
.tapu-hero__stats span {
  font-size: 13px;
  opacity: .7;
}
.tapu-hero__btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- SERVICES GRID --- */
.tapu-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.tapu-services__card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: box-shadow .2s, border-color .2s;
}
.tapu-services__card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(30,67,153,.1);
}
.tapu-services__icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.tapu-services__card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.tapu-services__card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- TIMELINE --- */
.tapu-timeline {
  max-width: 640px;
  margin: 40px auto 0;
  position: relative;
}
.tapu-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue-soft);
}
.tapu-timeline__item {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.tapu-timeline__item:last-child { padding-bottom: 0; }
.tapu-timeline__dot {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg-alt);
}
.tapu-timeline__content h3 {
  font-size: 16px;
  margin-bottom: 4px;
  padding-top: 2px;
}
.tapu-timeline__content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- PRICING --- */
.tapu-pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.tapu-pricing__card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: box-shadow .2s;
}
.tapu-pricing__card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.tapu-pricing__card--highlight {
  border-color: var(--blue);
  background: var(--blue-light);
}
.tapu-pricing__header {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.tapu-pricing__value {
  font-size: 32px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 8px;
}
.tapu-pricing__card--highlight .tapu-pricing__value {
  color: var(--blue);
}
.tapu-pricing__desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- FORM --- */
.tapu-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.tapu-form__header {
  padding: 32px 32px 0;
  text-align: center;
}
.tapu-form__header h2 { font-size: 24px; margin-bottom: 8px; }
.tapu-form__header p { color: var(--text-light); font-size: 15px; }
.tapu-form__body { padding: 24px 32px 32px; }
.tapu-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.tapu-form__field--full { grid-column: 1 / -1; }
.tapu-form__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.tapu-form__field label span { color: #ef4444; }
.tapu-form__field input,
.tapu-form__field select,
.tapu-form__field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
  background: var(--white);
}
.tapu-form__field input:focus,
.tapu-form__field select:focus,
.tapu-form__field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,67,153,.1);
}
.tapu-form__submit { width: 100%; font-weight: 600; }
.tapu-form__alert {
  margin: 20px 32px 0;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.6;
}
.tapu-form__alert--success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.tapu-form__alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* --- TRACKER --- */
.tapu-tracker {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.tapu-tracker__header { text-align: center; margin-bottom: 24px; }
.tapu-tracker__header h2 { font-size: 24px; margin-bottom: 8px; }
.tapu-tracker__header p { color: var(--text-light); font-size: 15px; }
.tapu-tracker__search {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.tapu-tracker__search input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color .15s;
}
.tapu-tracker__search input:focus {
  outline: none;
  border-color: var(--blue);
}
.tapu-tracker__result {
  animation: tapuFadeIn .3s ease;
}
@keyframes tapuFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.tapu-tracker__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.tapu-tracker__info-row {
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.tapu-tracker__info-row span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.tapu-tracker__info-row strong {
  font-size: 15px;
  color: var(--black);
}
.tapu-tracker__status {
  text-align: center;
  padding: 14px;
  background: var(--blue-light);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--blue);
  margin-top: 20px;
}
.tapu-tracker__notes {
  margin-top: 16px;
  padding: 14px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  font-size: 14px;
  color: #92400e;
}
.tapu-tracker__completed {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  color: #059669;
}
.tapu-tracker__error {
  text-align: center;
  padding: 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  color: #991b1b;
  font-size: 14px;
}

/* --- PROGRESS BAR (7-step) --- */
.tapu-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 8px;
}
.tapu-progress::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 28px;
  right: 28px;
  height: 3px;
  background: var(--border);
  z-index: 0;
}
.tapu-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
}
.tapu-progress__dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  transition: all .3s;
}
.tapu-progress__label {
  font-size: 11px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.3;
  max-width: 80px;
}

/* Completed */
.tapu-progress__step--completed .tapu-progress__dot {
  background: #22c55e;
  color: var(--white);
}
.tapu-progress__step--completed .tapu-progress__label {
  color: #059669;
  font-weight: 500;
}

/* Active */
.tapu-progress__step--active .tapu-progress__dot {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(30,67,153,.2);
  animation: tapuPulse 2s infinite;
}
.tapu-progress__step--active .tapu-progress__label {
  color: var(--blue);
  font-weight: 600;
}
@keyframes tapuPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(30,67,153,.2); }
  50% { box-shadow: 0 0 0 8px rgba(30,67,153,.1); }
}

/* Pending */
.tapu-progress__step--pending .tapu-progress__dot {
  background: var(--border);
  color: var(--text-muted);
}

/* --- TAPU RESPONSIVE --- */
@media (max-width: 768px) {
  .tapu-hero { padding: 60px 0 40px; }
  .tapu-hero h1 { font-size: 28px; }
  .tapu-hero__stats { gap: 24px; }
  .tapu-hero__stats strong { font-size: 22px; }
  .tapu-services { grid-template-columns: 1fr; }
  .tapu-pricing { grid-template-columns: repeat(2, 1fr); }
  .tapu-form__grid { grid-template-columns: 1fr; }
  .tapu-form__body { padding: 20px; }
  .tapu-form__header { padding: 24px 20px 0; }
  .tapu-form__alert { margin: 16px 20px 0; }
  .tapu-tracker { padding: 24px 20px; }
  .tapu-tracker__search { flex-direction: column; }
  .tapu-tracker__info { grid-template-columns: 1fr; }

  /* Progress bar vertical on mobile */
  .tapu-progress {
    flex-direction: column;
    gap: 12px;
    padding: 0;
  }
  .tapu-progress::before {
    top: 0;
    bottom: 0;
    left: 18px;
    right: auto;
    width: 3px;
    height: 100%;
  }
  .tapu-progress__step {
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }
  .tapu-progress__dot {
    width: 36px;
    height: 36px;
    min-width: 36px;
    margin-bottom: 0;
  }
  .tapu-progress__label {
    text-align: left;
    max-width: none;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .tapu-hero__stats { flex-direction: column; gap: 12px; }
  .tapu-hero__btns { flex-direction: column; align-items: center; }
  .tapu-hero__btns .btn { width: 100%; text-align: center; }
  .tapu-pricing { grid-template-columns: 1fr; }
}
