/* ========================================
   ADZ Gayrimenkul - Tema
   Logo renkleri: Lacivert (#16202E) + Altın (#C5A028)
   Referans tasarımdaki yeşil tonlar lacivert ile değiştirildi.
   ======================================== */
:root {
  --gold: #C5A028;
  --gold-dark: #A8861C;
  --gold-light: rgba(197, 160, 40, 0.12);
  --navy: #16202E;
  --navy-2: #1E2A3B;
  --navy-3: #28384D;
  --text: #2B2F36;
  --text-muted: #6B7280;
  --text-light: #9AA1AC;
  --bg-cream: #F7F4ED;
  --bg-soft: #FBFAF6;
  --white: #FFFFFF;
  --border: #ECE8DE;
  --shadow: 0 10px 30px rgba(22, 32, 46, 0.08);
  --shadow-lg: 0 20px 50px rgba(22, 32, 46, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
  --font: 'Inter', sans-serif;
  --font-display: 'Inter', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
  font-size: 1rem;
}

body.is-loading { overflow: hidden; }

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-loader.is-complete { opacity: 0; visibility: hidden; transform: scale(1.04); }
.page-loader.is-hidden { display: none; }

.page-loader__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
  max-width: 420px;
}

.page-loader__logo-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  animation: loaderLogoIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.page-loader__logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 16px rgba(22, 32, 46, 0.12));
}

.page-loader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: rgba(197, 160, 40, 0.35);
  animation: loaderSpin 1.4s linear infinite;
}

.page-loader__ring--2 {
  inset: 10px;
  border-top-color: rgba(197, 160, 40, 0.5);
  border-right-color: transparent;
  border-bottom-color: rgba(197, 160, 40, 0.15);
  animation-duration: 2s;
  animation-direction: reverse;
}

.page-loader__welcome {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  animation: loaderTextIn 0.8s ease 0.45s both;
}

.page-loader__tagline {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(22, 32, 46, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: loaderTextIn 0.8s ease 0.6s both;
}

.page-loader__dots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  animation: loaderDotsSpin 2.4s linear infinite;
}

.page-loader__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  justify-self: center;
  align-self: center;
  animation: loaderDotBounce 0.7s ease-in-out infinite;
}

.page-loader__dot:nth-child(1) { animation-delay: 0s; }
.page-loader__dot:nth-child(2) { animation-delay: 0.12s; }
.page-loader__dot:nth-child(3) { animation-delay: 0.24s; }
.page-loader__dot:nth-child(4) { animation-delay: 0.36s; }

.page-loader__status {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(22, 32, 46, 0.45);
  letter-spacing: 0.06em;
  animation: loaderTextIn 0.8s ease 0.85s both;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes loaderLogoIn {
  from { opacity: 0; transform: scale(0.85) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes loaderTextIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loaderDotsSpin {
  to { transform: rotate(360deg); }
}

@keyframes loaderDotBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .page-loader__ring,
  .page-loader__logo-wrap,
  .page-loader__welcome,
  .page-loader__tagline,
  .page-loader__dots,
  .page-loader__dot,
  .page-loader__status {
    animation: none !important;
    transition: none !important;
  }

  .page-loader__logo-wrap,
  .page-loader__welcome,
  .page-loader__tagline,
  .page-loader__dots,
  .page-loader__status { opacity: 1; transform: none; }
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container { max-width: 1520px; margin: 0 auto; padding: 0 28px; }
.container--hero { max-width: 1100px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--sm { padding: 10px 22px; font-size: 13px; }
.btn--primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(197, 160, 40, 0.35); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--youtube { background: #FF0000; color: var(--white); border-color: #FF0000; padding: 16px 34px; }
.btn--youtube:hover { background: #d90000; border-color: #d90000; transform: translateY(-2px); }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  transition: all var(--transition);
}
.header--scrolled {
  background: rgba(22, 32, 46, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  padding: 8px 0;
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.header__logo { flex-shrink: 0; }
.header__logo img { height: 54px; width: auto; display: block; }
.header--scrolled .header__logo img { height: 46px; }
.header__nav { justify-self: center; margin-left: 0; }
.header__menu { display: flex; gap: 28px; justify-content: center; }
.header__menu a { color: var(--white); font-size: 0.9375rem; font-weight: 600; position: relative; white-space: nowrap; }
.header__menu a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--transition); }
.header__menu a:hover { color: var(--gold); }
.header__menu a:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header__contact-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header__contact-group .lang-switcher,
.header__contact-group .lang-switcher__details {
  display: flex;
  align-items: center;
}
.header__contact-group .lang-switcher__trigger {
  line-height: 1;
  min-height: 32px;
}
.header__actions-sep {
  width: 1px;
  align-self: center;
  height: 28px;
  background: rgba(255, 255, 255, 0.32);
  flex-shrink: 0;
}
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: color var(--transition);
}
.header__phone:hover { color: var(--gold); }
.header__phone-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--gold);
  border: 1.5px solid rgba(197, 160, 40, 0.45);
  background: rgba(197, 160, 40, 0.12);
  transition: all var(--transition);
}
.header__phone:hover .header__phone-badge {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.header__phone-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
  width: max-content;
  flex-shrink: 0;
}
.header__phone-line {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.header__phone-line--sub {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.9;
}
.header__phone-area {
  color: var(--gold);
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.header__phone-num {
  letter-spacing: 0.02em;
}
.header__cta {
  color: var(--white) !important;
  gap: 10px;
  padding: 8px 20px 8px 8px;
  font-size: 15px;
}
.header__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold);
  flex-shrink: 0;
}
.header__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.header__burger span { display: block; width: 26px; height: 2px; background: var(--white); transition: all var(--transition); }
.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.header__nav-social { display: none; }
.header__nav-top { display: none; }
.header__nav-body { display: contents; }

/* Language Switcher */
.lang-switcher { position: relative; flex-shrink: 0; }
.lang-switcher__details { position: relative; }
.lang-switcher__trigger {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: none;
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  border-radius: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color var(--transition);
  user-select: none;
}
.lang-switcher__trigger::-webkit-details-marker { display: none; }
.lang-switcher__trigger::marker { content: ''; }
.lang-switcher__trigger:hover,
.lang-switcher__details[open] .lang-switcher__trigger { color: var(--gold); }
.lang-switcher__trigger .lang-switcher__flag {
  width: 28px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.lang-switcher__trigger:hover .lang-switcher__flag,
.lang-switcher__details[open] .lang-switcher__trigger .lang-switcher__flag {
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
  transform: scale(1.04);
}
.lang-switcher__text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.lang-switcher__flag {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 17px;
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  background-size: cover;
  background-position: center;
}
.lang-switcher__trigger-value .lang-switcher__flag {
  width: 26px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(22, 32, 46, 0.12);
  box-shadow: 0 1px 4px rgba(22, 32, 46, 0.1);
}
.lang-switcher__item .lang-switcher__flag {
  width: 28px;
  height: 19px;
  border-color: rgba(22, 32, 46, 0.12);
  box-shadow: 0 1px 4px rgba(22, 32, 46, 0.12);
}
.lang-switcher__flag--tr { background: #E30A17; }
.lang-switcher__flag--tr::before {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
}
.lang-switcher__flag--tr::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #E30A17;
}
.lang-switcher__flag--en {
  background:
    linear-gradient(33deg, transparent 46%, #fff 46%, #fff 48%, transparent 48%),
    linear-gradient(-33deg, transparent 46%, #fff 46%, #fff 48%, transparent 48%),
    linear-gradient(90deg, transparent 46%, #fff 46%, #fff 54%, transparent 54%),
    linear-gradient(#012169, #012169);
}
.lang-switcher__flag--de {
  background: linear-gradient(to bottom, #000 33.33%, #D00 33.33%, #D00 66.66%, #FFCE00 66.66%);
}
.lang-switcher__flag--ru {
  background: linear-gradient(to bottom, #fff 33.33%, #0039A6 33.33%, #0039A6 66.66%, #D52B1E 66.66%);
}
.lang-switcher__code { min-width: 20px; white-space: nowrap; }
.lang-switcher__arrow {
  color: rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.lang-switcher__trigger:hover .lang-switcher__arrow,
.lang-switcher__details[open] .lang-switcher__arrow {
  transform: rotate(180deg);
  color: var(--gold);
}
.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 188px;
  padding: 6px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 1002;
  animation: langMenuIn 0.22s ease;
}
@keyframes langMenuIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.lang-switcher__item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.lang-switcher__item a:hover {
  background: var(--bg-cream);
  color: var(--gold-dark);
}
.lang-switcher__item.is-active a {
  background: var(--gold-light);
  color: var(--navy);
}
.lang-switcher__label { flex: 1; }
.lang-switcher__check {
  color: var(--gold);
  flex-shrink: 0;
}
.lang-switcher__item:not(.is-active) .lang-switcher__check { display: none; }
.lang-switcher--nav { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 110px 0 90px;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(22,32,46,0.82) 0%, rgba(22,32,46,0.5) 45%, rgba(22,32,46,0.72) 100%);
}
.hero__content {
  text-align: center;
  color: var(--white);
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(197,160,40,0.15);
  border: 1px solid rgba(197,160,40,0.35);
  color: var(--gold);
  margin-bottom: 14px;
}
.hero__title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em; }
.hero__title span { color: var(--gold); display: inline-block; }
.hero__desc { font-size: 1.0625rem; max-width: 780px; margin: 0 auto 20px; opacity: 0.9; line-height: 1.7; }
.hero__features { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin-bottom: 26px; width: 100%; }
.hero__features li { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; white-space: nowrap; }
.hero__features svg { color: var(--gold); flex-shrink: 0; }
.hero__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__wave svg {
  width: 100%;
  height: 90px;
  display: block;
  margin-bottom: -1px;
  vertical-align: bottom;
}
.hero__wave path { fill: var(--bg-cream); }

/* Search Section */
.search-section {
  background: var(--bg-cream);
  padding: 36px 0 48px;
  position: relative;
  z-index: 2;
  margin-top: -1px;
}
.search-section .container { max-width: 1200px; }
.search-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 0;
  background: var(--white);
  padding: 1.125rem 1.375rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  align-items: center;
}
.search-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.625rem 1rem;
  border-right: 1px solid var(--border);
  min-height: 72px;
}
.search-card:last-child,
.search-card--action { border-right: none; }
.search-card__icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.search-card__icon--gold { background: var(--gold-light); color: var(--gold); }
.search-card__icon--navy { background: rgba(22,32,46,0.08); color: var(--navy); }
.search-card__body { flex: 1; min-width: 0; }
.search-card__label { display: block; font-size: 0.6875rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 4px; font-weight: 600; }
.search-card__btn { width: 52px; height: 52px; border-radius: 12px; background: var(--gold); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition); margin-left: 4px; }
.search-card__btn:hover { background: var(--gold-dark); transform: scale(1.04); }

/* Custom Select */
.custom-select { position: relative; width: 100%; }
.custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  line-height: 1.3;
}
.custom-select__value { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.custom-select__arrow { color: var(--text-light); flex-shrink: 0; transition: transform var(--transition); }
.custom-select.is-open .custom-select__arrow { transform: rotate(180deg); color: var(--gold); }
.custom-select__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -12px;
  right: -12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.22s ease;
  max-height: 220px;
  overflow-y: auto;
}
.custom-select.is-open .custom-select__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-select__option {
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.custom-select__option:hover { background: var(--bg-cream); color: var(--gold-dark); }
.custom-select__option.is-selected {
  background: var(--gold-light);
  color: var(--gold-dark);
}
.custom-select__option.is-selected::after {
  content: '✓';
  float: right;
  font-weight: 800;
  color: var(--gold);
}

.section { padding: 90px 0; }
.section__header { margin-bottom: 44px; }
.section__header--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.section__header--center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section__tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 10px; }
.section__title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--navy); line-height: 1.2; }
.section__title span { color: var(--gold); }
.section__subtitle { font-size: 15px; color: var(--text-muted); margin-top: 10px; }
.section__link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.section__link:hover { color: var(--gold); }

/* Property Card */
.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.property-card__image { position: relative; height: 230px; overflow: hidden; }
.property-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.property-card:hover .property-card__image img { transform: scale(1.06); }
.property-card__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(22,32,46,0.85) 100%); }
.property-card__tags { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; justify-content: space-between; z-index: 2; }
.property-card__tag { padding: 5px 14px; border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.property-card__tag--sale { background: var(--navy); color: var(--white); }
.property-card__tag--rent { background: var(--gold); color: var(--white); }
.property-card__tag--type { background: rgba(255,255,255,0.92); color: var(--navy); }
.property-card__overlay { position: absolute; left: 18px; right: 18px; bottom: 14px; z-index: 2; color: var(--white); }
.property-card__title { font-size: 16px; font-weight: 700; line-height: 1.35; margin-bottom: 6px; }
.property-card__location { display: flex; align-items: center; gap: 6px; font-size: 12.5px; opacity: 0.9; }
.property-card__location svg { color: var(--gold); flex-shrink: 0; }
.property-card__body { padding: 18px 20px; }
.property-card__specs { display: flex; gap: 18px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--border); }
.property-card__spec { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.property-card__spec svg { color: var(--gold); }
.property-card__footer { display: flex; align-items: center; justify-content: space-between; }
.property-card__price { font-size: 19px; font-weight: 800; color: var(--navy); }
.property-card__link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; color: var(--gold); }
.property-card__link:hover { gap: 9px; }

/* Listings Grid */
.listings-grid:not(.listings-grid--carousel) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Özel Seçki Carousel - same cards as listings grid */
.ozel-secki { background: var(--bg-cream); padding-top: 48px; }
.carousel__nav { display: flex; gap: 10px; }
.carousel__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.carousel__btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.carousel {
  width: 100%;
  overflow: hidden;
  padding: 12px 0 28px;
}
.listings-grid--carousel {
  display: flex;
  gap: 26px;
  transition: transform 0.5s ease;
  will-change: transform;
  align-items: flex-start;
}
.listings-grid--carousel .property-card {
  flex: 0 0 calc(33.333% - 17.33px);
  width: calc(33.333% - 17.33px);
}

/* Features */
.neden-biz { background: var(--bg-soft); }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 56px; }
.feature-card { background: var(--white); padding: 32px 26px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform var(--transition); }
.feature-card:hover { transform: translateY(-6px); }
.feature-card__icon { width: 58px; height: 58px; border-radius: 14px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 13.5px; color: var(--text-muted); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; }
.stat__top { display: flex; align-items: baseline; justify-content: center; }
.stat__number, .stat__plus { font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 46px); font-weight: 700; color: var(--gold); line-height: 1; }
.stat__label { display: block; font-size: 13.5px; color: var(--text-muted); font-weight: 600; margin-top: 10px; }

/* Bölge Spotlight */
.bolge { background: var(--bg-cream); }
.bolge__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 0; background: var(--navy); border-radius: 22px; overflow: hidden; }
.bolge__content { padding: 56px 48px; color: var(--white); }
.bolge__tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 16px; }
.bolge__title { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 36px); font-weight: 700; line-height: 1.25; margin-bottom: 18px; }
.bolge__title span { color: var(--gold); }
.bolge__desc { font-size: 14.5px; line-height: 1.8; opacity: 0.82; margin-bottom: 26px; }
.bolge__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.bolge__list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.bolge__check { width: 22px; height: 22px; border-radius: 50%; background: rgba(197,160,40,0.2); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bolge__image { position: relative; min-height: 460px; padding: 24px; }
.bolge__image > img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.bolge__caption { position: absolute; left: 40px; right: 40px; bottom: 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: rgba(255,255,255,0.95); backdrop-filter: blur(6px); padding: 16px 20px; border-radius: 14px; }
.bolge__caption-place { display: block; font-size: 15px; font-weight: 800; color: var(--navy); }
.bolge__caption-sub { display: block; font-size: 12.5px; color: var(--text-muted); }
.bolge__caption-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition); }
.bolge__caption-btn:hover { background: var(--gold-dark); transform: translateX(3px); }

/* YouTube CTA */
.youtube-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 420px;
}
.youtube-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.youtube-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.youtube-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(22,32,46,0.88) 0%, rgba(22,32,46,0.72) 50%, rgba(22,32,46,0.9) 100%);
}
.youtube-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 72px 0;
}
.youtube-cta__content {
  color: var(--white);
  text-align: center;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.youtube-cta__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(197, 160, 40, 0.14);
  border: 1px solid rgba(197, 160, 40, 0.35);
}
.youtube-cta__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.youtube-cta__play:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(197, 160, 40, 0.6);
}
.youtube-cta__play svg { color: #FF0000; }
.youtube-cta__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.youtube-cta__desc {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
  max-width: 480px;
}
.youtube-cta__content .btn--youtube {
  padding: 16px 36px;
  font-size: 15px;
  box-shadow: 0 8px 28px rgba(255, 0, 0, 0.3);
}

/* Consultants */
.danismanlar { background: var(--bg-soft); }
.consultants { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.consultant-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 38px 26px 30px; text-align: center; box-shadow: var(--shadow); transition: transform var(--transition); }
.consultant-card:hover { transform: translateY(-6px); }
.consultant-card__photo { width: 116px; height: 116px; border-radius: 50%; overflow: hidden; margin: 0 auto 18px; border: 4px solid var(--gold-light); }
.consultant-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.consultant-card__name { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.consultant-card__title { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.consultant-card__actions { display: flex; gap: 10px; }
.consultant-card__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: all var(--transition);
}
.consultant-card__btn--call { background: var(--navy); color: var(--white); }
.consultant-card__btn--call:hover { background: var(--gold); transform: translateY(-2px); }
.consultant-card__btn--whatsapp { background: #25D366; color: var(--white); }
.consultant-card__btn--whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* Blog */
.blog { background: var(--white); }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition); }
.blog-card:hover { transform: translateY(-4px); }
.blog-card__image { height: 180px; overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__body { padding: 20px; }
.blog-card__date { font-size: 12px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.blog-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 8px 0 14px; line-height: 1.4; }
.blog-card__link { font-size: 13px; font-weight: 700; color: var(--gold); }
.blog-card__link:hover { color: var(--gold-dark); }

/* Google Reviews */
.google-reviews { background: var(--bg-cream); }
.google-reviews__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 36px;
  box-shadow: var(--shadow);
}
.google-reviews__brand { display: flex; align-items: center; gap: 18px; }
.google-reviews__logo { flex-shrink: 0; }
.google-reviews__score { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.google-reviews__rating { font-size: 32px; font-weight: 800; color: var(--navy); line-height: 1; }
.google-reviews__stars { display: flex; gap: 2px; }
.google-reviews__count { font-size: 14px; color: var(--text-muted); }
.google-reviews__carousel-wrap { position: relative; }
.google-reviews__nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}
.google-reviews__track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  transition: transform 0.4s ease;
  padding: 4px 0 12px;
}
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  width: calc(33.333% - 16px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-card__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-card__name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.review-card__meta { display: flex; flex-direction: column; gap: 2px; }
.review-card__stars { color: #FBBC05; font-size: 14px; letter-spacing: 1px; }
.review-card__date { font-size: 12px; color: var(--text-light); }
.review-card__google { margin-left: auto; flex-shrink: 0; opacity: 0.7; }
.review-card__text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.google-reviews__footer { text-align: center; margin-top: 32px; }
.google-reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
}
.google-reviews__link:hover { color: var(--gold); }

/* Contact Section */
.contact-section { background: var(--white); }
.contact-section__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form__group { margin-bottom: 20px; }
.contact-form__group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 40, 0.15);
}
.contact-form__group textarea { resize: vertical; min-height: 120px; }
.contact-form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form__submit { width: 100%; padding: 16px; font-size: 15px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: border-color var(--transition);
}
.contact-info__card:hover { border-color: var(--gold); }
.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__card h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info__card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.contact-info__card a { color: var(--navy); font-weight: 600; }
.contact-info__card a:hover { color: var(--gold); }
.contact-info__map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 200px;
  border: 1px solid var(--border);
  margin-top: 4px;
}
.contact-info__map iframe { width: 100%; height: 100%; display: block; }

/* CTA Banner */
.cta-banner { background: var(--bg-soft); padding: 0 0 90px; }
.cta-banner__inner { background: var(--navy); border-radius: 22px; padding: 56px 40px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.cta-banner__inner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(197,160,40,0.12); }
.cta-banner__title { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-weight: 700; margin-bottom: 12px; position: relative; }
.cta-banner__desc { font-size: 15px; opacity: 0.8; margin-bottom: 28px; position: relative; }
.cta-banner__form { display: flex; gap: 12px; justify-content: center; max-width: 560px; margin: 0 auto 16px; position: relative; }
.cta-banner__form input { flex: 1; padding: 15px 24px; border: none; border-radius: 50px; font-family: var(--font); font-size: 14px; outline: none; }
.cta-banner__form input:focus { box-shadow: 0 0 0 3px rgba(197,160,40,0.4); }
.cta-banner__phone { display: inline-block; font-size: 14px; opacity: 0.85; position: relative; }
.cta-banner__phone strong { color: var(--gold); }

/* Footer */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer__logo { height: 64px; width: auto; display: block; margin-bottom: 18px; }
.footer__about { font-size: 13.5px; line-height: 1.8; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.footer__social a:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }
.footer__col h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer__col ul li { margin-bottom: 11px; }
.footer__col ul li a { font-size: 13.5px; }
.footer__col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; margin-bottom: 14px; }
.footer__contact svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }

/* Scroll to top */
.scroll-top { position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(197,160,40,0.4); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all var(--transition); z-index: 900; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-dark); }

/* Responsive */
@media (max-width: 1024px) {
  .header__inner { grid-template-columns: auto 1fr auto; }
  .header__menu { gap: 18px; }
  .header__menu a { font-size: 13px; }
  .listings-grid--carousel .property-card {
    flex: 0 0 calc(50% - 13px);
    width: calc(50% - 13px);
  }
  .listings-grid:not(.listings-grid--carousel) { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { flex: 0 0 calc(50% - 12px); width: calc(50% - 12px); }
  .contact-section__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .bolge__inner { grid-template-columns: 1fr; }
  .bolge__image { min-height: 340px; }
  .header__cta { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .header__inner { grid-template-columns: auto 1fr auto; }
  .header__nav { position: fixed; top: 0; right: -100%; width: 270px; height: 100vh; background: var(--navy); padding: 90px 32px 32px; transition: right var(--transition); z-index: 999; box-shadow: -10px 0 40px rgba(0,0,0,0.3); justify-self: auto; }
  .header__nav.active { right: 0; }
  .header__menu { flex-direction: column; gap: 22px; align-items: flex-start; }
  .header__burger { display: flex; z-index: 1001; }
  .header__phone {
    width: 42px;
    height: 42px;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }
  .header__phone-text { display: none; }
  .header__phone-badge {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    color: var(--gold);
  }
  .header__phone:hover .header__phone-badge {
    background: transparent;
    border-color: transparent;
    color: var(--gold);
  }
  .header__phone-badge svg { width: 18px; height: 18px; }
  .search-section { padding: 28px 0 36px; }
  .search-bar__grid { grid-template-columns: 1fr; gap: 0; padding: 1rem; }
  .search-card { border-right: none; border-bottom: 1px solid var(--border); padding: 1rem 0.5rem; min-height: auto; }
  .search-card:last-child { border-bottom: none; }
  .search-card--action { flex-wrap: wrap; }
  .search-card__btn { margin-left: auto; margin-top: 8px; }
  .custom-select__menu { left: 0; right: 0; }
  .ozel-secki { padding-top: 32px; }
  .hero { min-height: auto; padding: 96px 0 56px; }
  .hero__content { padding: 0; }
  .listings-grid--carousel .property-card {
    flex: 0 0 78%;
    width: 78%;
  }
  .features { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .listings-grid:not(.listings-grid--carousel) { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .bolge__content { padding: 40px 28px; }
  .bolge__list { grid-template-columns: 1fr; }
  .bolge__caption { left: 24px; right: 24px; bottom: 24px; }
  .consultants { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .consultant-card__actions { flex-direction: column; }
  .review-card { flex: 0 0 85%; width: 85%; }
  .google-reviews__summary { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
  .contact-form { padding: 24px 20px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .cta-banner__form { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__col--brand { display: flex; flex-direction: column; align-items: center; }
  .footer__contact li { justify-content: center; text-align: left; }
  .footer__social { justify-content: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section__header--row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 30px; }
  .hero__buttons { flex-direction: column; align-items: stretch; }
  .stats { grid-template-columns: 1fr; }
  .listings-grid--carousel .property-card {
    flex: 0 0 88%;
    width: 88%;
  }
}
