/* ============================================================
   VitaHomes — Tasarım Sistemi (main.css)
   Felsefe: Lüks, sakin, bol beyaz alan, yumuşak animasyon.
   ============================================================ */

:root {
  /* Renk paleti */
  --c-primary:    #0A2540;   /* koyu lacivert  */
  --c-primary-2:  #0d2f52;
  --c-gold:       #C9A961;   /* şampanya altın */
  --c-gold-dark:  #b3924a;
  --c-bg:         #FAFAF7;   /* kırık beyaz    */
  --c-surface:    #FFFFFF;
  --c-text:       #1A1A1A;
  --c-muted:      #6B7280;
  --c-border:     #E5E5E0;
  --c-success:    #2D6A4F;
  --c-danger:     #B91C1C;

  /* Tipografi */
  --f-head: "Playfair Display", Georgia, serif;
  --f-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing (8px grid) */
  --xs: 4px;  --sm: 8px;  --md: 16px; --lg: 24px;
  --xl: 32px; --2xl: 48px; --3xl: 64px; --4xl: 96px;

  /* Yarıçap & gölge */
  --r-sm: 4px; --r-md: 8px; --r-lg: 14px; --r-pill: 999px;
  --sh-sm: 0 1px 3px rgba(10,37,64,.06), 0 1px 2px rgba(10,37,64,.04);
  --sh-md: 0 6px 24px rgba(10,37,64,.08);
  --sh-lg: 0 18px 50px rgba(10,37,64,.14);

  --ease: cubic-bezier(.22,.61,.36,1);
  --container: 1240px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 2px; }

h1,h2,h3,h4 { font-family: var(--f-head); font-weight: 600; line-height: 1.2; letter-spacing: -.02em; color: var(--c-primary); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.15rem; }
p  { color: var(--c-text); }

/* ---------- Layout ---------- */
.container { width: min(100% - 2*var(--lg), var(--container)); margin-inline: auto; }
.site-main { min-height: 50vh; }
.section { padding: var(--4xl) 0; }
.section-tight { padding: var(--3xl) 0; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto var(--2xl); }
.section-head .eyebrow {
  display: inline-block; font-family: var(--f-body); font-weight: 600;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-gold-dark); margin-bottom: var(--sm);
}
.section-head h2 { margin-bottom: var(--sm); }
.section-head p  { color: var(--c-muted); }
.section-head.left { text-align: left; margin-left: 0; }

.row-between { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--lg); margin-bottom: var(--2xl); flex-wrap: wrap; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--sm);
  padding: 14px 30px; border-radius: var(--r-md);
  font-weight: 600; font-size: .92rem; letter-spacing: .04em;
  text-transform: uppercase; transition: all .3s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn i, .btn svg { width: 18px; height: 18px; }
.btn-gold      { background: var(--c-gold); color: #fff; }
.btn-gold:hover{ background: var(--c-gold-dark); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-primary   { background: var(--c-primary); color: #fff; }
.btn-primary:hover { background: var(--c-primary-2); transform: translateY(-2px); }
.btn-ghost     { background: transparent; color: var(--c-primary); border: 1px solid var(--c-border); }
.btn-ghost:hover { border-color: var(--c-primary); }
.btn-light     { background: #fff; color: var(--c-primary); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-block     { display: flex; width: 100%; justify-content: center; }
.btn-sm        { padding: 9px 18px; font-size: .8rem; }
.btn-wa        { background: #25D366; color: #fff; }
.btn-wa:hover  { background: #1da851; }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--c-primary); }
.link-arrow i { width: 18px; transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--c-gold-dark); }
.link-arrow:hover i { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: var(--lg) 0; transition: all .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  padding: 12px 0; box-shadow: var(--sh-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--lg); }

.brand { font-family: var(--f-head); font-size: 1.6rem; font-weight: 700; letter-spacing: -.02em; }
.brand-mark { color: #fff; transition: color .35s var(--ease); }
.brand-mark.gold { color: var(--c-gold); }
.scrolled .brand-mark { color: var(--c-primary); }
.scrolled .brand-mark.gold { color: var(--c-gold-dark); }

.main-nav { display: flex; align-items: center; gap: var(--xl); }
.main-nav a {
  color: rgba(255,255,255,.9); font-weight: 500; font-size: .95rem;
  position: relative; padding: 4px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--c-gold); transition: width .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.scrolled .main-nav a { color: var(--c-text); }

.header-actions { display: flex; align-items: center; gap: var(--md); }

.lang-switcher { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 6px; color: #fff;
  font-weight: 600; font-size: .85rem; padding: 6px 8px; border-radius: var(--r-sm);
}
.lang-current i { width: 15px; transition: transform .25s; }
.lang-switcher.open .lang-current i { transform: rotate(180deg); }
.scrolled .lang-current { color: var(--c-text); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 110px;
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md);
  box-shadow: var(--sh-md); padding: 6px; opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: all .25s var(--ease);
}
.lang-switcher.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: var(--r-sm); color: var(--c-text); font-weight: 600; font-size: .85rem; }
.lang-menu a:hover { background: var(--c-bg); }
.flag { font-size: 1.05rem; }

.header-phone { color: #fff; display: grid; place-items: center; width: 38px; height: 38px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.3); }
.header-phone i { width: 17px; }
.scrolled .header-phone { color: var(--c-primary); border-color: var(--c-border); }
.header-phone:hover { background: var(--c-gold); border-color: var(--c-gold); color:#fff; }

.nav-toggle { display: none; color: #fff; }
.scrolled .nav-toggle { color: var(--c-primary); }
.nav-toggle i { width: 26px; height: 26px; }
.nav-mobile-extra { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-bg, .hero-video, .hero video, .hero .hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,37,64,0.4), rgba(10,37,64,0.6));
}
.hero-content { width: 100%; padding-top: 90px; text-align: center; }
.hero h1 { color: #fff; max-width: 14ch; margin: 0 auto var(--md); }
.hero .lead { font-size: clamp(1rem, 1.6vw, 1.25rem); color: rgba(255,255,255,.88); max-width: 50ch; margin: 0 auto var(--2xl); }

/* Profesyonel arama çubuğu — her zaman görünür, zoom'a dayanıklı */
.hero-search { width: 100%; max-width: 940px; margin: var(--2xl) auto 0; }
.hero-search-bar {
  background: rgba(255,255,255,.1);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.22); border-radius: var(--r-lg);
  padding: var(--md); box-shadow: var(--sh-lg);
}
.hsb-tabs { display: flex; gap: 6px; justify-content: center; margin-bottom: var(--md); flex-wrap: wrap; }
.hsb-tabs button {
  color: rgba(255,255,255,.85); font-weight: 600; padding: 8px 22px;
  border-radius: var(--r-pill); font-size: .82rem; letter-spacing: .04em;
  text-transform: uppercase; transition: all .25s var(--ease);
  border: 1px solid transparent;
}
.hsb-tabs button:hover { border-color: rgba(255,255,255,.4); }
.hsb-tabs button.active { background: var(--c-gold); color: #fff; }
.hsb-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: var(--sm);
  align-items: stretch;
}
.hsb-field {
  background: #fff; border-radius: var(--r-md); padding: 9px 14px;
  text-align: left; min-width: 0;            /* zoom/overflow güvenliği */
}
.hsb-field label {
  display: block; font-size: .64rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-muted); margin-bottom: 3px;
}
.hsb-control { display: flex; align-items: center; gap: 8px; }
.hsb-control i { width: 16px; height: 16px; color: var(--c-gold-dark); flex: 0 0 16px; }
.hsb-control select, .hsb-control input {
  width: 100%; min-width: 0; border: none; background: transparent;
  color: var(--c-text); font-weight: 600; font-size: .92rem; outline: none;
  -webkit-appearance: none; appearance: none;
}
.hsb-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--c-gold); color: #fff; border-radius: var(--r-md);
  padding: 0 28px; font-weight: 700; font-size: .9rem; letter-spacing: .04em;
  text-transform: uppercase; transition: background .25s var(--ease); cursor: pointer;
}
.hsb-submit:hover { background: var(--c-gold-dark); }
.hsb-submit i { width: 18px; height: 18px; }

/* İlan kartı kaydırmalı galeri (Swiper) */
.pc-swiper { width: 100%; height: 100%; }
.pc-swiper .swiper-slide { overflow: hidden; }
.pc-swiper .swiper-slide a { display: block; width: 100%; height: 100%; }
.pc-swiper img { width: 100%; height: 100%; object-fit: cover; }
.pc-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 34px; height: 34px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.92); color: var(--c-primary);
  display: grid; place-items: center; opacity: 0; transition: opacity .25s var(--ease);
}
.pc-nav i { width: 17px; }
.pc-prev { left: 10px; } .pc-next { right: 10px; }
.property-card:hover .pc-nav { opacity: 1; }
.pc-nav:hover { background: var(--c-gold); color: #fff; }
.pc-dots {
  position: absolute; bottom: 12px; left: 0; right: 0; z-index: 3;
  display: flex; gap: 6px; justify-content: center;
}
.pc-dots .swiper-pagination-bullet { width: 6px; height: 6px; background: #fff; opacity: .55; }
.pc-dots .swiper-pagination-bullet-active { opacity: 1; background: var(--c-gold); width: 18px; border-radius: 3px; }
@media (hover: none) { .pc-nav { opacity: 1; background: rgba(255,255,255,.8); } }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.8); display: grid; place-items: center; gap: 6px;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
}
.scroll-cue i { width: 22px; animation: bob 1.8s infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ============================================================
   İSTATİSTİK ŞERİDİ
   ============================================================ */
.stats { background: var(--c-primary); color: #fff; }
.stats .container { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--lg); padding: var(--3xl) var(--lg); }
.stat { text-align: center; }
.stat .num { font-family: var(--f-head); font-size: clamp(2rem,4vw,3rem); color: var(--c-gold); line-height: 1; }
.stat .label { color: rgba(255,255,255,.7); font-size: .9rem; margin-top: 8px; letter-spacing: .04em; }

/* ============================================================
   İLAN KARTI
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--xl); }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--xl); }

.property-card {
  background: var(--c-surface); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.property-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.pc-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.property-card:hover .pc-media img { transform: scale(1.06); }
.pc-media::after { content:""; position:absolute; inset:auto 0 0 0; height:55%; background:linear-gradient(transparent,rgba(10,37,64,.78)); }
.pc-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 6px; z-index: 2; }
.badge {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-pill); color: #fff;
}
.badge.gold { background: var(--c-gold); }
.badge.new  { background: var(--c-success); }
.badge.type { background: rgba(255,255,255,.92); color: var(--c-primary); }
.pc-fav {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 38px; height: 38px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.92); display: grid; place-items: center;
  color: var(--c-primary); transition: all .25s var(--ease);
}
.pc-fav:hover, .pc-fav.active { background: var(--c-gold); color: #fff; }
.pc-fav i { width: 18px; }
.pc-price { position: absolute; left: 18px; bottom: 14px; z-index: 2; color: #fff; }
.pc-price .amt { font-family: var(--f-head); font-size: 1.5rem; font-weight: 700; }
.pc-price .per { font-size: .75rem; color: rgba(255,255,255,.75); }
.pc-body { padding: var(--lg); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pc-title { font-family: var(--f-head); font-size: 1.2rem; color: var(--c-primary); }
.pc-title a:hover { color: var(--c-gold-dark); }
.pc-loc { display: flex; align-items: center; gap: 6px; color: var(--c-muted); font-size: .88rem; }
.pc-loc i { width: 15px; }
.pc-specs { display: flex; gap: var(--lg); padding-top: 12px; margin-top: auto; border-top: 1px solid var(--c-border); }
.pc-specs span { display: flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--c-text); }
.pc-specs i { width: 16px; color: var(--c-gold-dark); }

/* ============================================================
   LOKASYON KARTLARI
   ============================================================ */
.loc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--lg); }
.loc-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5; display: flex; align-items: flex-end; color: #fff;
}
.loc-card:nth-child(1), .loc-card:nth-child(6) { aspect-ratio: 4/3; }
.loc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.loc-card::after { content:""; position:absolute; inset:0; background:linear-gradient(transparent 40%, rgba(10,37,64,.8)); transition: background .4s; }
.loc-card:hover img { transform: scale(1.08); }
.loc-card:hover::after { background: linear-gradient(transparent 20%, rgba(10,37,64,.9)); }
.loc-card .loc-info { position: relative; z-index: 1; padding: var(--lg); }
.loc-card h3 { color: #fff; font-size: 1.5rem; }
.loc-card span { color: rgba(255,255,255,.8); font-size: .85rem; }

/* ============================================================
   NEDEN BİZ
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--xl); }
.why-card { text-align: center; padding: var(--xl) var(--lg); border-radius: var(--r-lg); transition: all .35s var(--ease); }
.why-card:hover { background: #fff; box-shadow: var(--sh-md); transform: translateY(-6px); }
.why-icon {
  width: 70px; height: 70px; border-radius: var(--r-pill); margin: 0 auto var(--md);
  display: grid; place-items: center; background: rgba(201,169,97,.12); color: var(--c-gold-dark);
}
.why-icon i { width: 30px; height: 30px; }
.why-card h4 { margin-bottom: 8px; }
.why-card p { color: var(--c-muted); font-size: .92rem; }

/* ============================================================
   HİZMETLER (asimetrik)
   ============================================================ */
.services-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--3xl); align-items: center; }
.services-visual { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--sh-lg); }
.services-visual img { width: 100%; height: 100%; object-fit: cover; }
.service-list { display: flex; flex-direction: column; gap: var(--md); }
.service-item {
  display: flex; gap: var(--lg); padding: var(--lg); background: #fff;
  border-radius: var(--r-md); border: 1px solid var(--c-border);
  transition: all .3s var(--ease);
}
.service-item:hover { border-color: var(--c-gold); transform: translateX(6px); }
.service-item .ico { flex: 0 0 52px; height: 52px; border-radius: var(--r-md); background: var(--c-primary); color: var(--c-gold); display: grid; place-items: center; }
.service-item .ico i { width: 24px; }
.service-item h4 { margin-bottom: 4px; }
.service-item p { color: var(--c-muted); font-size: .9rem; }

/* ============================================================
   YORUMLAR
   ============================================================ */
.testimonials { background: var(--c-primary); color: #fff; position: relative; }
.testimonials .section-head h2 { color: #fff; }
.testimonials .section-head .eyebrow { color: var(--c-gold); }
.t-quote-mark { font-family: var(--f-head); font-size: 6rem; color: var(--c-gold); line-height: .6; opacity: .5; }
.testimonial-card { text-align: center; max-width: 760px; margin: 0 auto; padding: var(--lg); }
.testimonial-card p { font-size: 1.25rem; line-height: 1.7; color: rgba(255,255,255,.94); font-family: var(--f-head); font-style: italic; margin: var(--lg) 0; }
.t-author { display: flex; align-items: center; justify-content: center; gap: var(--md); }
.t-author img { width: 56px; height: 56px; border-radius: var(--r-pill); object-fit: cover; border: 2px solid var(--c-gold); }
.t-author .nm { font-weight: 700; }
.t-author .ct { color: rgba(255,255,255,.6); font-size: .85rem; }
.t-stars { color: var(--c-gold); display: flex; gap: 3px; justify-content: center; }
.t-stars i { width: 18px; fill: var(--c-gold); }
.testimonials .swiper-pagination-bullet { background: rgba(255,255,255,.4); }
.testimonials .swiper-pagination-bullet-active { background: var(--c-gold); }

/* ============================================================
   BLOG KARTI
   ============================================================ */
.blog-card { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: all .35s var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.blog-card .bc-media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .bc-media img { width:100%; height:100%; object-fit: cover; transition: transform .7s var(--ease); }
.blog-card:hover .bc-media img { transform: scale(1.05); }
.blog-card .bc-body { padding: var(--lg); }
.bc-cat { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-gold-dark); }
.blog-card h4 { margin: 8px 0; font-size: 1.2rem; }
.bc-date { color: var(--c-muted); font-size: .82rem; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-band { background: var(--c-primary); color: #fff; text-align: center; }
.newsletter-band h2 { color: #fff; }
.newsletter-band p { color: rgba(255,255,255,.7); margin: var(--sm) 0 var(--xl); }
.newsletter-form { display: flex; gap: var(--sm); max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 15px 20px; border-radius: var(--r-md); border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08); color: #fff;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #07182b; color: rgba(255,255,255,.7); padding-top: var(--4xl); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr; gap: var(--3xl); padding-bottom: var(--3xl); }
.footer-col h4 { color: #fff; font-family: var(--f-body); font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: var(--lg); }
.footer-col p { color: rgba(255,255,255,.55); font-size: .92rem; margin: var(--md) 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: rgba(255,255,255,.65); font-size: .92rem; }
.footer-col ul a:hover { color: var(--c-gold); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { width: 17px; color: var(--c-gold); flex: 0 0 17px; margin-top: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: var(--md); }
.footer-social a { width: 38px; height: 38px; border-radius: var(--r-pill); display: grid; place-items: center; background: rgba(255,255,255,.07); color: #fff; }
.footer-social a:hover { background: var(--c-gold); }
.footer-social i { width: 17px; }
.footer-newsletter { display: flex; gap: 6px; margin-top: var(--md); }
.footer-newsletter input { flex: 1; padding: 12px 14px; border-radius: var(--r-md); border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: #fff; font-size: .9rem; }
.footer-newsletter button { width: 46px; border-radius: var(--r-md); background: var(--c-gold); color: #fff; display: grid; place-items: center; }
.footer-newsletter button i { width: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: var(--lg) 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--sm); font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-legal a:hover { color: var(--c-gold); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: var(--r-pill);
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  animation: pulse 2.4s infinite;
}
.whatsapp-fab i { width: 28px; height: 28px; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Toast ---------- */
.toast-stack { position: fixed; top: 90px; right: 24px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: #fff; border-left: 4px solid var(--c-success); padding: 14px 20px;
  border-radius: var(--r-md); box-shadow: var(--sh-lg); min-width: 280px;
  display: flex; align-items: center; gap: 12px; font-weight: 500;
  transform: translateX(120%); transition: transform .45s var(--ease);
}
.toast.show { transform: translateX(0); }
.toast.error { border-left-color: var(--c-danger); }
.toast i { width: 20px; color: var(--c-success); }
.toast.error i { color: var(--c-danger); }

/* ---------- Form mesajı ---------- */
.form-msg { font-size: .85rem; margin-top: 8px; min-height: 1.2em; }
.form-msg.ok  { color: #6fe3a1; }
.form-msg.err { color: #ffb4b4; }

/* ---------- Breadcrumb / Page banner ---------- */
.page-banner {
  position: relative; min-height: 42vh; display: flex; align-items: center;
  color: #fff; text-align: center;
}
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-banner::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(rgba(10,37,64,.6), rgba(10,37,64,.75)); }
.page-banner .container { width: 100%; padding-top: 80px; }
.page-banner h1 { color: #fff; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; color: rgba(255,255,255,.7); font-size: .88rem; margin-top: var(--sm); }
.breadcrumb a:hover { color: var(--c-gold); }

/* ============================================================
   İLAN LİSTESİ SAYFASI
   ============================================================ */
.listing-layout { display: grid; grid-template-columns: 290px 1fr; gap: var(--xl); align-items: start; }

.filter-sidebar {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg);
  padding: var(--lg); position: sticky; top: 100px;
}
.fs-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: var(--md); border-bottom: 1px solid var(--c-border); margin-bottom: var(--md); }
.fs-head h3 { font-size: 1.25rem; }
.fs-clear { color: var(--c-gold-dark); font-size: .82rem; font-weight: 600; }
.fs-close { display: none; color: var(--c-muted); }
.fs-group { padding: var(--md) 0; border-bottom: 1px solid var(--c-border); }
.fs-group:last-of-type { border-bottom: none; }
.fs-group h4 { font-family: var(--f-body); font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted); margin-bottom: var(--md); }
.fs-select { width: 100%; padding: 11px 14px; border: 1px solid var(--c-border); border-radius: var(--r-md); background: #fff; color: var(--c-text); font-weight: 500; }
.fs-radio, .fs-check { display: flex; align-items: center; gap: 10px; padding: 7px 0; cursor: pointer; font-size: .92rem; }
.fs-radio input, .fs-check input { width: 17px; height: 17px; accent-color: var(--c-gold-dark); }
.fs-range { display: flex; align-items: center; gap: 8px; }
.fs-range input { width: 100%; padding: 10px 12px; border: 1px solid var(--c-border); border-radius: var(--r-md); }
.fs-range span { color: var(--c-muted); }
.fs-pills, .fs-features { display: flex; flex-wrap: wrap; gap: 8px; }
.fs-features { max-height: 220px; overflow-y: auto; flex-direction: column; flex-wrap: nowrap; }
.fs-pill { position: relative; }
.fs-pill input { position: absolute; opacity: 0; }
.fs-pill span { display: block; padding: 7px 16px; border: 1px solid var(--c-border); border-radius: var(--r-pill); font-size: .85rem; font-weight: 600; transition: all .2s var(--ease); }
.fs-pill input:checked + span { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.filter-sidebar .btn { margin-top: var(--lg); }

.listing-bar { display: flex; align-items: center; justify-content: space-between; gap: var(--md); padding-bottom: var(--lg); margin-bottom: var(--lg); border-bottom: 1px solid var(--c-border); flex-wrap: wrap; }
.lb-count strong { color: var(--c-primary); font-family: var(--f-head); font-size: 1.2rem; }
.lb-controls { display: flex; align-items: center; gap: var(--sm); }
.sort-select { width: auto; min-width: 180px; padding: 9px 14px; }
.filter-mobile-toggle { display: none; }
.view-toggle { display: flex; border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; }
.view-toggle a { width: 40px; height: 38px; display: grid; place-items: center; color: var(--c-muted); }
.view-toggle a.active { background: var(--c-primary); color: #fff; }
.view-toggle i { width: 18px; }

.list-rows { display: flex; flex-direction: column; gap: var(--lg); }
.list-rows .property-card { flex-direction: row; }
.list-rows .pc-media { flex: 0 0 42%; aspect-ratio: auto; }
.list-rows .pc-body { justify-content: center; }

.map-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--lg); height: 75vh; }
.list-map { border-radius: var(--r-lg); overflow: hidden; height: 100%; background: var(--c-border); }
.map-list { overflow-y: auto; display: flex; flex-direction: column; gap: var(--md); padding-right: 6px; }
.map-list .property-card { flex-direction: row; }
.map-list .pc-media { flex: 0 0 40%; aspect-ratio: auto; }
.leaflet-popup-content { margin: 0; }
.map-pop { width: 200px; }
.map-pop img { width: 100%; height: 110px; object-fit: cover; }
.map-pop .mp-b { padding: 10px 12px; }
.map-pop .mp-price { font-family: var(--f-head); color: var(--c-gold-dark); font-weight: 700; }

.empty-state { text-align: center; padding: var(--4xl) 0; color: var(--c-muted); }
.empty-state i { width: 54px; height: 54px; margin-bottom: var(--md); color: var(--c-border); }
.empty-state p { margin-bottom: var(--lg); }

.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: var(--3xl); }
.pagination a, .pagination span { min-width: 42px; height: 42px; display: grid; place-items: center; border-radius: var(--r-md); border: 1px solid var(--c-border); font-weight: 600; color: var(--c-text); }
.pagination a:hover { border-color: var(--c-primary); }
.pagination a.active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.pagination .pg-dots { border: none; }
.pagination i { width: 18px; }

/* ============================================================
   İLAN DETAY SAYFASI
   ============================================================ */
.detail-gallery {
  position: relative; display: grid; grid-template-columns: 2fr 1fr;
  gap: 8px; height: 60vh; min-height: 420px; margin-top: 76px;
}
.dg-main { overflow: hidden; }
.dg-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .7s var(--ease); }
.dg-main:hover img { transform: scale(1.04); }
.dg-thumbs { display: grid; grid-template-rows: 1fr 1fr; grid-template-columns: 1fr 1fr; gap: 8px; }
.dg-thumb { position: relative; overflow: hidden; cursor: pointer; }
.dg-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dg-thumb:hover img { transform: scale(1.06); }
.dg-more {
  position: absolute; inset: 0; background: rgba(10,37,64,.6); color: #fff;
  font-weight: 600; display: grid; place-items: center; backdrop-filter: blur(2px);
}
.dg-all-btn {
  position: absolute; right: 18px; bottom: 18px; background: rgba(255,255,255,.95);
  color: var(--c-primary); padding: 11px 20px; border-radius: var(--r-md);
  font-weight: 600; font-size: .88rem; display: flex; align-items: center; gap: 8px;
  box-shadow: var(--sh-md);
}
.dg-all-btn i { width: 18px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(7,13,24,.96); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 84vh; object-fit: contain; border-radius: var(--r-sm); }
.lb-close { position: absolute; top: 22px; right: 26px; color: #fff; }
.lb-close i { width: 30px; height: 30px; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; width: 54px; height: 54px; border-radius: var(--r-pill); background: rgba(255,255,255,.12); display: grid; place-items: center; }
.lb-nav:hover { background: var(--c-gold); }
.lb-prev { left: 26px; } .lb-next { right: 26px; }
.lb-nav i { width: 26px; }
.lb-count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .9rem; letter-spacing: .1em; }

.detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: var(--3xl); align-items: start; margin-top: var(--xl); }

.dc-head .dc-badges { display: flex; gap: 6px; margin-bottom: var(--sm); }
.dc-head h1 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.dc-loc { display: flex; align-items: center; gap: 8px; color: var(--c-muted); margin-top: var(--sm); }
.dc-loc i { width: 18px; color: var(--c-gold-dark); }

.dc-quickspecs { display: flex; flex-wrap: wrap; gap: var(--lg); margin: var(--xl) 0; padding: var(--lg) 0; border-block: 1px solid var(--c-border); }
.dc-quickspecs > div { display: flex; flex-direction: column; align-items: flex-start; min-width: 90px; }
.dc-quickspecs i { width: 24px; height: 24px; color: var(--c-gold-dark); margin-bottom: 6px; }
.dc-quickspecs span { font-family: var(--f-head); font-size: 1.4rem; color: var(--c-primary); line-height: 1; }
.dc-quickspecs small { color: var(--c-muted); font-size: .8rem; margin-top: 2px; }

.dc-tabnav { display: flex; gap: var(--xl); border-bottom: 2px solid var(--c-border); margin-bottom: var(--xl); overflow-x: auto; }
.dc-tabnav button { padding: 0 0 14px; font-weight: 600; color: var(--c-muted); position: relative; white-space: nowrap; }
.dc-tabnav button.active { color: var(--c-primary); }
.dc-tabnav button.active::after { content:""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--c-gold); }
.dc-tabpane { display: none; animation: fadeIn .4s var(--ease); }
.dc-tabpane.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.prose { line-height: 1.8; color: #333; }
.dc-attrs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--c-border); border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; margin-top: var(--xl); }
.dc-attrs .attr { background: #fff; padding: 14px 18px; display: flex; justify-content: space-between; gap: var(--md); font-size: .92rem; }
.dc-attrs .attr span { color: var(--c-muted); }
.dc-attrs .attr strong { color: var(--c-primary); }
.dc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px var(--xl); }
.dc-features .feat { display: flex; align-items: center; gap: 10px; font-size: .92rem; }
.dc-features .feat i { width: 18px; color: var(--c-success); }
.detail-map { height: 380px; border-radius: var(--r-md); overflow: hidden; background: var(--c-border); }
.dc-embed { position: relative; padding-top: 56.25%; border-radius: var(--r-md); overflow: hidden; }
.dc-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.dc-similar { margin-top: var(--3xl); padding-top: var(--3xl); border-top: 1px solid var(--c-border); }
.dc-similar h3 { margin-bottom: var(--xl); }

/* Mortgage */
.mortgage { background: var(--c-primary); color: #fff; border-radius: var(--r-lg); padding: var(--xl); margin-top: var(--3xl); }
.mortgage h3 { color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: var(--lg); }
.mortgage h3 i { width: 22px; color: var(--c-gold); }
.mg-row { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--xl); }
.mg-row label { display: block; font-size: .85rem; color: rgba(255,255,255,.7); }
.mg-row output { float: right; color: var(--c-gold); font-weight: 700; }
.mg-row input[type=range] { width: 100%; margin-top: 14px; accent-color: var(--c-gold); }
.mg-result { display: flex; align-items: center; justify-content: space-between; margin-top: var(--xl); padding-top: var(--lg); border-top: 1px solid rgba(255,255,255,.15); }
.mg-result span { color: rgba(255,255,255,.7); }
.mg-result strong { font-family: var(--f-head); font-size: 1.8rem; color: var(--c-gold); }

/* Sidebar */
.detail-sidebar { position: sticky; top: 100px; }
.ds-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: var(--xl); box-shadow: var(--sh-md); }
.ds-price { font-family: var(--f-head); font-size: 2rem; color: var(--c-gold-dark); font-weight: 700; }
.ds-neg { font-size: .85rem; color: var(--c-muted); font-family: var(--f-body); font-weight: 500; }
.ds-ppm { color: var(--c-muted); font-size: .9rem; margin-top: 4px; }
.ds-agent { display: flex; align-items: center; gap: var(--md); padding: var(--lg) 0; margin: var(--lg) 0; border-block: 1px solid var(--c-border); }
.ds-agent img { width: 56px; height: 56px; border-radius: var(--r-pill); object-fit: cover; }
.ds-agent-nm { font-weight: 700; color: var(--c-primary); }
.ds-agent-tt { color: var(--c-muted); font-size: .85rem; }
.ds-actions { display: flex; flex-direction: column; gap: 10px; }
.ds-meta { margin-top: var(--lg); padding-top: var(--lg); border-top: 1px solid var(--c-border); }
.ds-fav { display: flex; align-items: center; gap: 8px; color: var(--c-text); font-weight: 600; font-size: .9rem; margin-bottom: var(--md); }
.ds-fav i { width: 18px; }
.ds-fav.active i { fill: var(--c-danger); color: var(--c-danger); }
.ds-share { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--c-muted); }
.ds-share a { width: 34px; height: 34px; border-radius: var(--r-pill); background: var(--c-bg); display: grid; place-items: center; color: var(--c-primary); }
.ds-share a:hover { background: var(--c-gold); color: #fff; }
.ds-share i { width: 16px; }

.mobile-cta-bar { display: none; position: fixed; inset: auto 0 0 0; z-index: 90; background: #fff; border-top: 1px solid var(--c-border); padding: 12px var(--md); align-items: center; gap: 10px; box-shadow: 0 -6px 24px rgba(10,37,64,.1); }
.mcb-price { font-family: var(--f-head); font-weight: 700; color: var(--c-gold-dark); flex: 1; }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 250; background: rgba(10,37,64,.55); display: none; align-items: center; justify-content: center; padding: var(--md); }
.modal.open { display: flex; }
.modal-box { background: #fff; border-radius: var(--r-lg); padding: var(--2xl); width: min(100%, 460px); position: relative; box-shadow: var(--sh-lg); }
.modal-close { position: absolute; top: 16px; right: 16px; color: var(--c-muted); }
.modal-box h3 { margin-bottom: 4px; }
.fg { margin-bottom: var(--md); }
.fg input, .fg textarea, .fg select { width: 100%; padding: 13px 16px; border: 1px solid var(--c-border); border-radius: var(--r-md); background: #fff; }
.fg input:focus, .fg textarea:focus { border-color: var(--c-gold); outline: none; }

/* ============================================================
   HAKKIMIZDA / HİZMETLER / İLETİŞİM
   ============================================================ */
.team-grid { gap: var(--xl); }
.team-card { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: all .35s var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.tc-photo { aspect-ratio: 3/3.4; overflow: hidden; }
.tc-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .5s var(--ease), transform .7s var(--ease); }
.team-card:hover .tc-photo img { filter: grayscale(0); transform: scale(1.04); }
.tc-body { padding: var(--lg); text-align: center; }
.tc-title { color: var(--c-gold-dark); font-size: .88rem; font-weight: 600; }
.tc-links { display: flex; justify-content: center; gap: 10px; margin-top: var(--md); }
.tc-links a { width: 36px; height: 36px; border-radius: var(--r-pill); background: var(--c-bg); display: grid; place-items: center; color: var(--c-primary); }
.tc-links a:hover { background: var(--c-gold); color: #fff; }
.tc-links i { width: 16px; }

.service-feature { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); display: flex; flex-direction: column; }
.sf-media { aspect-ratio: 16/9; overflow: hidden; }
.sf-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service-feature:hover .sf-media img { transform: scale(1.05); }
.sf-body { padding: var(--xl); }
.sf-body .why-icon { margin: 0 0 var(--md); }
.sf-body h3 { margin-bottom: var(--sm); }
.sf-body p { color: var(--c-muted); margin-bottom: var(--md); }

.contact-map { height: 420px; width: 100%; background: var(--c-border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--3xl); }
.ci-list { display: flex; flex-direction: column; gap: var(--lg); }
.ci-list li { display: flex; gap: var(--md); }
.ci-list i { width: 44px; height: 44px; flex: 0 0 44px; border-radius: var(--r-md); background: rgba(201,169,97,.12); color: var(--c-gold-dark); display: grid; place-items: center; padding: 11px; }
.ci-list strong { display: block; color: var(--c-primary); margin-bottom: 2px; }
.ci-list span, .ci-list a { color: var(--c-muted); }
.contact-form-wrap { background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: var(--2xl); box-shadow: var(--sh-md); }

/* ---------- Yardımcılar ---------- */
.breadcrumb.left { justify-content: flex-start; color: var(--c-muted); margin-bottom: var(--lg); }
.breadcrumb.left a:hover { color: var(--c-gold-dark); }
.text-gold { color: var(--c-gold-dark); }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.bg-surface { background: var(--c-surface); }
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }
