:root {
  --red: #e31e24;
  --red-dark: #c4171d;
  --navy: #1c2033;
  --text: #2b2f3a;
  --muted: #6f7480;
  --border: #d9dce1;
  --container: 1200px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===== ÜST BİLGİ ÇUBUĞU ===== */
.topbar {
  background: #fff;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.4px;
}

.logo__subtitle {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3.6px;
  color: #9aa0ab;
}

.topbar__contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 16px;
  font-size: 13px;
  color: #333;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar__item i {
  font-size: 14px;
  color: #333;
}

.topbar__item a {
  color: inherit;
}

.topbar__item a:hover {
  color: var(--red);
}

.topbar__divider {
  width: 1px;
  height: 18px;
  background: #e4e7eb;
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__social a {
  color: #333;
  font-size: 15px;
  transition: color 0.15s;
}

.topbar__social a:hover {
  color: var(--red);
}

.topbar__panel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: background 0.15s;
}

.topbar__panel:hover {
  background: var(--red-dark);
  color: #fff;
}

/* ===== ANA MENÜ ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--red);
}

.navbar.is-scrolled {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.navbar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar__menu > li {
  position: relative;
}

.navbar__menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  line-height: 44px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s;
}

.navbar__menu > li:first-child > a {
  padding-left: 0;
}

.navbar__menu > li > a:hover {
  background: rgba(0, 0, 0, 0.14);
}

.navbar__menu > li:first-child > a:hover {
  background: transparent;
  text-decoration: underline;
}

.navbar__menu > li > a i {
  font-size: 10px;
  transition: transform 0.2s;
}

.has-dropdown:hover > a i {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;
  min-width: 215px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.has-dropdown:hover .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: #333;
}

.dropdown a:hover {
  background: #f6f7f9;
  color: var(--red);
}

.navbar__langs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__langs::before {
  content: '';
  width: 1px;
  height: 18px;
  margin-right: 8px;
  background: rgba(255, 255, 255, 0.35);
}

.lang {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  line-height: 0;
  border-radius: 2px;
  opacity: 0.6;
  transition: opacity 0.15s, transform 0.15s;
}

.lang img {
  display: block;
  width: 21px;
  height: 15px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.lang:hover {
  opacity: 1;
}

.lang.is-active {
  opacity: 1;
  transform: translateY(-1px);
}

.navbar__currencies {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.currency {
  padding: 4px 7px;
  border: 0;
  border-radius: 4px;
  background: none;
  color: rgba(255, 255, 255, 0.75);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.currency:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.12);
}

.currency.is-active {
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
}

.navbar__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.navbar__brand {
  display: none;
}

.navbar__pickers {
  display: none;
}

/* ===== BANNER ===== */
.hero {
  padding-bottom: 60px;
}

.hero__banner {
  background: url('../assets/banner.jpg') center 40% / cover no-repeat;
  padding: 130px 0 190px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.2px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

/* ===== ARAMA KUTUSU ===== */
.searchbox {
  position: relative;
  z-index: 5;
  margin-top: -150px;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.searchbox__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 22px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #4a4f59;
}

.field input,
.field select {
  width: 100%;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  color: #333;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input::placeholder {
  color: #9aa0ab;
}

.field input:focus,
.field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.08);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 32px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%236f7480' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.field select:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 40px;
  margin: 18px auto 0;
  padding: 0 28px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.btn-search:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 18px rgba(227, 30, 36, 0.25);
}

.btn-search:active {
  transform: translateY(1px);
}

/* ===== GAYRİMENKULLER ===== */
.listings {
  padding: 45px 0 75px;
  background: #fff;
  scroll-margin-top: 70px;
}

.listings__title {
  margin: 0 0 34px;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-align: center;
}

.listings--featured {
  padding-top: 0;
}

.listings__title--featured {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  font-size: 26px;
  letter-spacing: 0.3px;
}

.listings__title--featured i {
  font-size: 20px;
  color: var(--navy);
}

.listings__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid #eceef2;
}

.listings__tab {
  position: relative;
  padding: 0 2px 12px;
  border: 0;
  background: none;
  color: var(--navy);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: color 0.15s;
}

.listings__tab:hover {
  color: var(--red);
}

.listings__tab.is-active {
  color: var(--red);
}

.listings__tab.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--red);
}

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

.listings__status {
  grid-column: 1 / -1;
  margin: 20px 0;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/* ===== ARAMA SONUÇ SAYFASI ===== */
.search-results {
  padding: 45px 0 75px;
  background: #fff;
}

.searchbox--flat {
  margin-top: 0;
}

.search-results__count {
  margin: 24px 0 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}

.listing-card {
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s, box-shadow 0.18s;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.listing-card__media {
  position: relative;
  aspect-ratio: 1.8 / 1;
  background: #eef0f4;
}

.listing-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-card__badge {
  position: absolute;
  top: 16px;
  left: -46px;
  z-index: 2;
  width: 160px;
  padding: 4px 0;
  background: var(--red);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-align: center;
  transform: rotate(-45deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.listing-card__price {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 12px;
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}

.listing-card__body {
  padding: 16px 18px 18px;
}

.listing-card__title {
  margin: 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.listing-card__location {
  margin: 8px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: #4a5261;
  text-align: center;
}

.listing-card__location i {
  margin-right: 7px;
  font-size: 12px;
  color: var(--navy);
}

.listing-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid #eef0f3;
}

.listing-card__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 14px;
  border-left: 1px solid #eef0f3;
}

.listing-card__stat:first-child {
  padding-left: 0;
  border-left: 0;
}

.listing-card__stat span {
  font-size: 10.5px;
  color: #8a93a0;
}

.listing-card__stat strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

/* ===== NEDEN LUNA INVEST ===== */
.features {
  padding: 70px 0 30px;
  background: #fff;
}

.features__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 50px;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
}

.features__title i {
  font-size: 24px;
  color: var(--navy);
}

.features__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.feature {
  flex: 0 0 25%;
  max-width: 25%;
  margin-bottom: 46px;
  padding: 0 18px;
  text-align: center;
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 22px rgba(227, 30, 36, 0.25);
}

.feature__title {
  margin: 16px 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.feature__text {
  max-width: 240px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

/* ===== FOOTER ===== */
.footer {
  margin-top: auto;
  background: #222a36;
  color: #9aa4b2;
  font-size: 13px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: 55px 0 40px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.footer__desc {
  max-width: 320px;
  margin: 16px 0 18px;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__social a {
  color: #6b7686;
  font-size: 15px;
  transition: color 0.15s, transform 0.15s;
}

.footer__social a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.footer__title {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__links li + li {
  margin-top: 10px;
}

.footer__links a {
  color: #9aa4b2;
  transition: color 0.15s, padding-left 0.15s;
}

.footer__links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer__contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer__contact i {
  margin-top: 3px;
  color: #c3cad4;
}

.footer__contact a {
  color: #9aa4b2;
}

.footer__contact a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12.5px;
}

.footer__bottom p {
  margin: 0;
}

/* ===== SAYFA BAŞLIĞI (İç sayfalar) ===== */
.page-hero {
  padding: 54px 0;
  background: linear-gradient(135deg, #1c2033 0%, #2b3252 100%);
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
}

.page-hero__breadcrumb {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.page-hero__breadcrumb a {
  color: #fff;
}

.page-hero__breadcrumb a:hover {
  color: #ffb3b6;
}

.page-hero__breadcrumb span {
  margin: 0 6px;
  opacity: 0.6;
}

/* ===== 404 SAYFASI ===== */
.error-page {
  padding: 70px 0 80px;
  background: #fff;
  text-align: center;
}

.error-page__code {
  margin: 0;
  font-size: clamp(72px, 12vw, 130px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 6px;
  color: var(--navy);
}

.error-page__code span {
  color: var(--red);
}

.error-page__title {
  margin: 18px 0 12px;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  color: var(--navy);
}

.error-page__text {
  max-width: 560px;
  margin: 0 auto 30px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.error-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 26px;
  border: 1px solid var(--red);
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.error-page__btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.error-page__btn--ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--navy);
}

.error-page__btn--ghost:hover {
  background: #fff;
  border-color: var(--red);
  color: var(--red);
}

/* ===== İLETİŞİM SAYFASI ===== */
.contact {
  padding: 60px 0;
  background: #fff;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 44px;
  align-items: start;
}

.contact__info h2 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}

.contact__lead {
  margin: 0 0 24px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}

.contact__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact__list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #eef0f3;
}

.contact__list li:first-child {
  padding-top: 0;
}

.contact__list li:last-child {
  border-bottom: 0;
}

.contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  background: rgba(227, 30, 36, 0.08);
  color: var(--red);
  font-size: 16px;
}

.contact__list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13.5px;
  color: var(--navy);
}

.contact__list p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.contact__list a {
  color: var(--muted);
}

.contact__list a:hover {
  color: var(--red);
}

/* Harita */
.contact__map {
  min-height: 420px;
  overflow: hidden;
  background: #eef0f4;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* ===== HAKKIMIZDA ===== */
.about {
  padding: 60px 0;
  background: #fff;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}

.about h1 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
}

.about__lead {
  margin: 0 0 16px;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.8;
  color: #3a4150;
}

.about__content p {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--muted);
}

.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 26px 0;
  padding: 20px 0;
  border-top: 1px solid #eef0f3;
  border-bottom: 1px solid #eef0f3;
}

.about__stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about__stats strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--red);
}

.about__stats span {
  font-size: 12px;
  color: var(--muted);
}

.about__media img {
  display: block;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

/* ===== EKİBİMİZ ===== */
.team {
  padding: 60px 0;
  background: #fff;
}

.team__title {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
}

.team__lead {
  max-width: 620px;
  margin: 0 auto 44px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--muted);
  text-align: center;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.team-card {
  padding: 28px 18px;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.team-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #ff6b6f);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 22px rgba(227, 30, 36, 0.25);
}

.team-card h3 {
  margin: 16px 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.team-card__role {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* ===== İLAN DETAY ===== */
.listing-detail {
  padding: 26px 0 70px;
  background: #fff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--red);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #9aa0ab;
}

.breadcrumb span:last-child {
  color: #4a5261;
}

.detail-status {
  margin: 40px 0;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.detail-main {
  grid-column: 1;
  grid-row: 1;
}

.detail-desc {
  grid-column: 1;
  grid-row: 2;
}

.detail-side {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.detail-desc .detail-section-title {
  margin-top: 4px;
}

.detail-hero {
  overflow: hidden;
  border-radius: 14px;
  background: #eef0f4;
}

.detail-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  cursor: zoom-in;
}

.detail-hero--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.55 / 1;
  color: #95a5a6;
  font-size: 14px;
}

.detail-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.detail-thumb {
  width: 110px;
  height: 74px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #eef0f4;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}

.detail-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-thumb:hover {
  transform: translateY(-2px);
}

.detail-thumb.is-active {
  border-color: var(--red);
}

.detail-section-title {
  margin: 34px 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}

.detail-description {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.9;
  color: #4a5261;
  white-space: pre-line;
}

.detail-description--empty {
  color: var(--muted);
}

/* Sağ kolon */
.detail-card {
  padding: 24px;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.detail-price {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 800;
  color: var(--red);
  text-align: center;
}

.detail-card__title {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}

.detail-props {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.detail-props li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  font-size: 13.5px;
}

.detail-props span {
  color: var(--muted);
}

.detail-props strong {
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}

.detail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.detail-btn--call {
  border: 0;
  background: #1e9e50;
  color: #fff;
}

.detail-btn--call:hover {
  background: #178643;
}

.detail-btn--share {
  background: #fff;
  color: #333;
  border: 1px solid #d3d8df;
}

.detail-btn--share:hover {
  background: #f6f7f9;
}

/* Paylaş menüsü */
.detail-share {
  position: relative;
}

.share-menu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 20;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.share-menu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border: 0;
  background: none;
  color: var(--text);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}

.share-menu__item + .share-menu__item {
  border-top: 1px solid #f0f2f5;
}

.share-menu__item:hover {
  background: #f6f7f9;
}

.share-menu__item i {
  width: 16px;
  text-align: center;
}

.share-menu__item--whatsapp i {
  color: #25d366;
}

.share-menu__item--whatsapp span {
  color: #128c7e;
}

.detail-owner {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #eef0f3;
}

.detail-owner h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

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

.detail-owner__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  border: 1px solid #e5e8ee;
  font-size: 18px;
}

.detail-owner__row strong {
  display: block;
  font-size: 13.5px;
  color: var(--navy);
}

.detail-owner__row span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ===== FOTOĞRAF TAM EKRAN ===== */
body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 20, 30, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__image {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 2;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox__close {
  top: 18px;
  right: 18px;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: 18px;
}

.lightbox__nav--next {
  right: 18px;
}

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .topbar__contact {
    gap: 12px;
  }

  .navbar__menu > li > a {
    padding: 0 10px;
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  /* Mobilde beyaz üst bar tamamen gizli, marka navbar'da */
  .topbar {
    display: none;
  }

  /* Mobilde ilanlar sayfasındaki arama formu gizli */
  .searchbox--flat {
    display: none;
  }

  /* Mobilde footer gizli */
  .footer {
    display: none;
  }

  /* Mobilde anasayfadaki banner ve arama bölümü gizli */
  .hero {
    display: none;
  }

  .navbar__toggle {
    display: inline-flex;
  }

  .navbar__langs {
    display: none;
  }

  .navbar__brand {
    display: block;
    flex: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap;
  }

  .navbar__pickers {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .navbar__picker {
    padding: 6px;
    border: 0;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
  }

  .navbar__picker option {
    color: #222;
    background: #fff;
  }

  .navbar__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 6px 0;
    background: var(--red);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  }

  .navbar__menu.is-open {
    display: flex;
  }

  .navbar__menu > li > a {
    padding: 0 20px;
    line-height: 42px;
    justify-content: space-between;
  }

  .navbar__menu > li:first-child > a {
    padding-left: 20px;
  }

  .navbar__menu > li:first-child > a:hover {
    background: rgba(0, 0, 0, 0.14);
    text-decoration: none;
  }

  .dropdown {
    position: static;
    display: none;
    padding: 0;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
  }

  .dropdown a {
    padding-left: 34px;
    color: #fff;
  }

  .dropdown a:hover {
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
  }

  .hero__banner {
    padding: 100px 0 170px;
  }

  .searchbox {
    margin-top: -120px;
  }

  .searchbox__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  /* iOS'ta odaklanınca sayfa zoomlanmasın */
  .field input,
  .field select {
    font-size: 16px;
  }

  .navbar__toggle {
    width: 38px;
  }

  .navbar__brand {
    font-size: 15px;
  }

  .navbar__picker {
    padding: 5px 4px;
    font-size: 11px;
  }

  .hero__banner {
    padding: 70px 0 190px;
  }

  .searchbox {
    margin-top: -140px;
    padding: 18px;
  }

  .searchbox__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn-search {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .feature {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .features {
    padding: 50px 0 20px;
  }

  .features__title {
    margin-bottom: 36px;
    font-size: 23px;
  }

  .feature {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 30px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 992px) {
  .listings__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .listings {
    padding: 30px 0 50px;
  }

  .listings__title {
    font-size: 24px;
  }

  .listings__title--featured {
    font-size: 22px;
  }

  .listings__tabs {
    gap: 8px 18px;
    margin-bottom: 26px;
  }

  .listings__tab {
    font-size: 11px;
  }

  .listings__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .page-hero {
    padding: 40px 0;
  }

  .error-page {
    padding: 50px 0;
  }

  .error-page__actions {
    flex-direction: column;
  }

  .error-page__btn {
    width: 100%;
  }

  .contact {
    padding: 40px 0;
  }

  .contact__map {
    min-height: 300px;
  }
}

@media (max-width: 992px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about__media {
    order: -1;
  }

  .team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .about,
  .team {
    padding: 40px 0;
  }

  .about__stats {
    gap: 22px;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-main,
  .detail-desc,
  .detail-side {
    grid-column: auto;
    grid-row: auto;
  }

  .detail-description--empty {
    text-align: center;
  }

  .detail-desc--empty .detail-section-title {
    text-align: center;
  }

  .detail-desc .detail-section-title {
    margin-top: 34px;
  }
}

@media (max-width: 576px) {
  .listing-detail {
    padding: 20px 0 50px;
  }

  .detail-price {
    font-size: 24px;
  }

  .detail-thumb {
    width: 84px;
    height: 58px;
  }

  .lightbox__close,
  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .lightbox__nav--prev {
    left: 8px;
  }

  .lightbox__nav--next {
    right: 8px;
  }
}

@media (max-width: 400px) {
  .navbar__brand {
    font-size: 14px;
  }

  .navbar__picker {
    padding: 4px 3px;
    font-size: 10.5px;
  }

  .searchbox {
    padding: 14px;
    margin-top: -150px;
  }

  .hero__banner {
    padding: 60px 0 200px;
  }

  .btn-search {
    height: 44px;
  }

  .detail-btn {
    height: 46px;
  }

  .footer__grid {
    padding: 34px 0 26px;
  }
}
