/* ==========================================================================
   Serdar Kendirci Gayrimenkul & İnşaat — assets/css/style.css
   Custom stiller. Tailwind utility class'ları CDN üzerinden (tailwindcss
   browser build) çalışıyor; burada sadece Tailwind'in karşılamadığı
   özel bileşenler, glassmorphism efektleri, animasyonlar ve marka
   detayları tanımlanıyor.
   ========================================================================== */

:root {
  --brand: #F5E600;
  --brand-dark: #d9cc00;
  --ink: #111111;
  --eyebrow: #9a8600;
}
/* Radix shadcn base variables (light only) */
@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 0 0% 7%;
    --card: 0 0% 100%;
    --card-foreground: 0 0% 7%;
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 7%;
    --primary: 0 0% 7%;
    --primary-foreground: 0 0% 100%;
    --secondary: 60 100% 48%;
    --secondary-foreground: 0 0% 7%;
    --muted: 210 20% 98%;
    --muted-foreground: 220 9% 46%;
    --accent: 60 100% 48%;
    --accent-foreground: 0 0% 7%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 220 13% 91%;
    --input: 220 13% 91%;
    --ring: 60 100% 48%;
    --radius: 1rem;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.font-display {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  letter-spacing: -0.02em;
}

/* ---------- Eyebrow label ---------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--eyebrow);
}

.section-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand);
  display: inline-block;
}

/* ---------- Brand underline highlight ---------- */
.brand-underline {
  position: relative;
  white-space: nowrap;
  z-index: 0;
}

.brand-underline::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.06em;
  height: 0.32em;
  background: var(--brand);
  opacity: 0.55;
  z-index: -1;
  border-radius: 2px;
}

/* ---------- Glass surfaces ---------- */
.glass-nav {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: box-shadow .3s ease, background-color .3s ease;
}

.glass-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.glass-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.glass-search {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.14);
}

/* ---------- Hero image overlay ---------- */
.hero-gradient-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.78) 100%);
}

/* ---------- Buttons ---------- */
.btn-yellow {
  background: var(--brand);
  color: var(--ink);
  transition: background-color .2s ease, transform .2s ease;
}

.btn-yellow:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color .2s ease, transform .2s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  transition: background-color .2s ease, transform .2s ease;
}

.btn-primary:hover {
  background: #2b2b2b;
  transform: translateY(-1px);
}

.rounded-lg{
  border-radius: var(--radius);
}
/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile nav ----------
   Panel, header'daki .glass-nav "hap" (pill) kartının İÇİNE, üst satırın
   hemen altına eklenir; böylece açıldığında ayrı bir kutu değil, aynı
   yuvarlak/bulanık kartın uzayan bir devamı gibi görünür. */
.mobile-nav-panel {
  display: none;
  overflow: hidden;
  padding: 0 16px;
}

.mobile-nav-panel.is-open {
  display: block;
}

.mobile-nav-panel__inner {
  padding: 12px 4px 16px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid #e5e5e5;
}

.mobile-nav-panel a:not(.mobile-nav-cta) {
  display: block;
  padding: 13px 14px !important;
  font-size: 15px !important;
  font-weight: 500;
  color: #333;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.35);
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.mobile-nav-panel a:not(.mobile-nav-cta):hover {
  color: #111;
  background: #fff;
  border-color: #d4d4d4;
}

.mobile-nav-panel .mobile-nav-cta {
  margin-top: 6px;
  border: none;
}

/* ---------- Listing cards ---------- */
.listing-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: box-shadow .35s ease, transform .35s ease;
}

.listing-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.listing-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}

.listing-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.listing-card:hover .listing-card__image img {
  transform: scale(1.06);
}

.listing-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink);
}

.listing-badge--satilik {
  background: var(--brand);
}

.listing-badge--kiralik {
  background: #111;
  color: #fff;
}

.listing-card__main {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.listing-card__main:hover {
  color: inherit;
}

.listing-card__body-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.listing-card__detail-hint {
  flex-shrink: 0;
  max-width: 46%;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-align: right;
  color: #737373;
  transition: color .2s ease;
}

.listing-card:hover .listing-card__detail-hint {
  color: #111;
}

.listing-card__price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

.listing-card__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.35;
}

.listing-card__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #737373;
}

.listing-card__location svg {
  flex-shrink: 0;
}

.listing-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.listing-card__meta {
  margin-top: auto;
  padding: 14px 20px 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #444;
}

.listing-card__meta-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  min-width: 0;
}

.listing-card__meta-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.listing-card__info-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  background: #111;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.listing-card__info-btn:hover {
  background: #F5E600;
  color: #111;
}

/* ---------- Project cards ---------- */
.project-card {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: box-shadow .35s ease, transform .35s ease;
}

.project-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.project-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.project-card:hover .project-card__image img {
  transform: scale(1.06);
}

.project-status {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}

.project-card__body {
  padding: 22px;
}

.project-card__title {
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}

.project-card__desc {
  margin-top: 6px;
  font-size: 13px;
  color: #737373;
  line-height: 1.5;
}

/* ---------- Empty state ---------- */
#listings-empty {
  display: none;
}

#listings-empty.is-visible {
  display: block;
}

/* ---------- Toast ---------- */
.site-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 999;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ---------- Misc ---------- */
.nav-link.is-active {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.05);
}

/* ---------- Listing detail ---------- */
.listing-detail-empty {
  text-align: center;
  padding: 60px 20px;
}

.listing-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .listing-detail {
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
  }
}

.listing-detail__gallery {
  position: relative;
}

.listing-detail__gallery-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eee;
}

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

.listing-detail__gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: background-color .2s ease, transform .2s ease;
  z-index: 2;
}

.listing-detail__gallery-nav:hover {
  background: var(--brand);
}

.listing-detail__gallery-nav--prev {
  left: 14px;
}

.listing-detail__gallery-nav--next {
  right: 14px;
}

.listing-detail__gallery-count {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.72);
  color: #fff;
  backdrop-filter: blur(6px);
}

.listing-detail__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.listing-detail__thumb {
  flex: 0 0 88px;
  width: 88px;
  height: 66px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: #eee;
  transition: border-color .2s ease, opacity .2s ease;
  opacity: 0.72;
}

.listing-detail__thumb.is-active {
  border-color: var(--brand);
  opacity: 1;
}

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

.listing-detail__content {
  margin-top: 8px;
}

.listing-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.listing-detail__tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
  background: #F8F9FA;
  color: #444;
}

.listing-detail__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.listing-detail__location {
  margin-top: 12px;
  font-size: 14px;
  color: #525252;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #F8F9FA;
  border: 1px solid #ececec;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
  max-width: 100%;
}

.listing-detail__location:hover {
  background: #fff;
  border-color: var(--brand);
  color: var(--ink);
}

.listing-detail__location span:first-of-type {
  flex: 1;
  min-width: 0;
}

.listing-detail__location-action {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--eyebrow);
  white-space: nowrap;
}

.listing-detail__map-section {
  margin-top: 32px;
}

.listing-detail__map-preview {
  position: relative;
  display: block;
  margin-top: 12px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ececec;
  aspect-ratio: 16 / 9;
  text-decoration: none;
}

.listing-detail__map-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  display: block;
}

.listing-detail__map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background-color .25s ease;
}

.listing-detail__map-preview:hover .listing-detail__map-overlay {
  background: rgba(17, 17, 17, 0.45);
}

.listing-detail__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding: 20px;
  background: #F8F9FA;
  border-radius: 20px;
}

@media (min-width: 640px) {
  .listing-detail__specs {
    grid-template-columns: repeat(4, 1fr);
  }
}

.listing-detail__spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.listing-detail__spec span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #737373;
  font-weight: 600;
}

.listing-detail__spec strong {
  font-size: 15px;
  color: var(--ink);
}

.listing-detail__section {
  margin-top: 32px;
}

.listing-detail__section h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.listing-detail__section p {
  font-size: 15px;
  line-height: 1.7;
  color: #525252;
}

.listing-detail__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.listing-detail__features li {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #333;
}

.listing-detail__sidebar {
  position: sticky;
  top: 120px;
}

.listing-detail__price-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.listing-detail__price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #737373;
  font-weight: 600;
}

.listing-detail__price {
  margin-top: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.listing-detail__agent {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 20px;
  background: #F8F9FA;
  border-radius: 20px;
}

.listing-detail__agent-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* ---------- Footer (rounded, spaced) ---------- */
.site-footer {
  padding: 2rem 1rem 1.25rem;
  background: #fff;
  max-width: 100%;
  overflow-x: clip;
}

@media (min-width: 640px) {
  .site-footer {
    padding: 2.5rem 1.5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 3rem 2rem 2rem;
  }
}

.site-footer__inner {
  background: #111111;
  color: #fff;
  border-radius: 28px;
  padding: 3rem 1.5rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  width: calc(100% - 1.5rem);
  max-width: 95rem;
  margin-inline: auto;
  overflow-x: clip;
}

.site-footer__contact-link {
  min-width: 0;
  max-width: 100%;
}

.site-footer__contact-text {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-footer__bottom p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (min-width: 640px) {
  .site-footer__inner {
    padding: 3.5rem 2.5rem 2.5rem;
    border-radius: 32px;
    width: calc(100% - 3rem);
  }
}

@media (min-width: 1024px) {
  .site-footer__inner {
    width: calc(100% - 5rem);
    max-width: 95rem;
  }
}

.site-footer__credit a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__credit a:hover {
  color: #F5E600;
}

/* ---------- Custom select ---------- */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  color: inherit;
  padding: 0;
  min-height: 0;
  box-shadow: none;
  outline: none;
}

.custom-select__trigger:focus,
.custom-select__trigger:focus-visible {
  outline: none;
  box-shadow: none;
}

.custom-select__label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select__chevron {
  flex-shrink: 0;
  color: #111;
  transition: transform .2s ease;
}

.custom-select.is-open .custom-select__chevron {
  transform: rotate(180deg);
}

.custom-select__menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 40;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  padding: 0;
}

.custom-select.is-open .custom-select__menu {
  display: block;
}

.custom-select__menu-body {
  max-height: 240px;
  overflow-y: auto;
  padding: 6px;
  scrollbar-width: thin;
  scrollbar-color: #cfcfcf transparent;
}

.custom-select__menu-body::-webkit-scrollbar {
  width: 8px;
}

.custom-select__menu-body::-webkit-scrollbar-track {
  background: transparent;
  margin-block: 8px;
}

.custom-select__menu-body::-webkit-scrollbar-thumb {
  background-color: #cfcfcf;
  border-radius: 999px;
  border: 2px solid #fff;
  background-clip: padding-box;
}

.custom-select__menu-body::-webkit-scrollbar-thumb:hover {
  background-color: #a3a3a3;
}

.custom-select__option {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}

.custom-select__option:hover,
.custom-select__option.is-selected {
  background: #FDFDE8;
  color: #111;
}

.custom-select__option.is-selected {
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #ececec;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  background: #fff;
  border: none;
  cursor: pointer;
}

.faq-item__icon {
  flex-shrink: 0;
  transition: transform .25s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__panel {
  display: none;
  padding: 0 20px 18px;
}

.faq-item.is-open .faq-item__panel {
  display: block;
}

.faq-item__panel p {
  font-size: 14px;
  line-height: 1.7;
  color: #525252;
}

/* ---------- Sitemap ---------- */
.sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sitemap-links a {
  font-size: 14px;
  color: #444;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background-color .15s ease, color .15s ease;
}

.sitemap-links a:hover {
  background: #F8F9FA;
  color: #111;
}

.sitemap-links--listings {
  max-height: 420px;
  overflow-y: auto;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sitemap-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sitemap-card--wide {
    grid-column: span 3;
  }
}

.sitemap-card {
  background: #F8F9FA;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 28px;
}

.sitemap-card__title {
  font-family: var(--font-display, inherit);
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 6px;
}

.sitemap-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: #737373;
  margin: 0 0 20px;
}

.sitemap-links--listings a {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sitemap-listing__title {
  font-weight: 500;
  color: #444;
}

.sitemap-listing__meta {
  font-size: 12px;
  color: #a3a3a3;
}

.sitemap-links--listings a:hover .sitemap-listing__title {
  color: #111;
}

/* ---------- Form captcha & submit row ---------- */
.form-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.form-captcha {
  flex: 1;
  min-width: 180px;
}

.form-captcha__label {
  display: block;
}

.form-captcha__label > span:first-child {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #737373;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-captcha__question-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-captcha__question {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
}

.form-captcha__input {
  width: 72px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-align: center;
}

.form-captcha__input:focus {
  outline: none;
  border-color: #F5E600;
  box-shadow: 0 0 0 2px rgba(245, 230, 0, 0.35);
}

.form-submit-row .btn-yellow {
  margin-top: 0;
}

/* ---------- Testimonial form ---------- */
.testimonial-form {
  margin-top: 3rem;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 2rem 2.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

@media (min-width: 640px) {
  .testimonial-form {
    padding: 2.5rem 3rem;
  }
}

/* ---------- Testimonial slider ---------- */
[data-testid="testimonials-section"] .relative > .lucide-quote {
  z-index: 2;
  pointer-events: none;
}

.testimonial-slider__viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid #f5f5f5;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.testimonial-slider__track {
  display: flex;
  width: 100%;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

/* ---------- Listing Q&A ---------- */
.listing-questions {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #ececec;
}

.listing-questions__title {
  font-family: var(--font-display, inherit);
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.listing-questions__desc {
  margin: 8px 0 24px;
  font-size: 14px;
  line-height: 1.6;
  color: #737373;
}

.listing-questions__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.listing-questions__empty {
  font-size: 14px;
  color: #737373;
  padding: 20px 24px;
  background: #F8F9FA;
  border-radius: 16px;
  margin: 0;
}

.listing-questions__form {
  background: #F8F9FA;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 24px;
}

@media (min-width: 640px) {
  .listing-questions__form {
    padding: 28px 32px;
  }
}

.listing-qa-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 20px 24px;
}

.listing-qa-item--pending {
  border-color: #ececec;
}

.listing-qa-item__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.listing-qa-item__head .listing-qa-item__q {
  flex: 1;
  min-width: 0;
}

.listing-qa-item__status {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.2;
}

.listing-qa-item__status--answered {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.listing-qa-item__status--pending {
  background: #f5f5f5;
  color: #737373;
  border: 1px solid #e5e5e5;
}

.listing-qa-item__q,
.listing-qa-item__a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.listing-qa-item__a {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #e5e5e5;
}

.listing-qa-item__label {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #111;
  color: #F5E600;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.listing-qa-item__label--a {
  background: #F5E600;
  color: #111;
}

.listing-qa-item__q p,
.listing-qa-item__a p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #111;
}

.listing-qa-item__meta {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #a3a3a3;
}

/* ---------- Admin panel ---------- */
.admin-questions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-empty {
  text-align: center;
  color: #737373;
  padding: 48px 24px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #ececec;
}

.admin-qa-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 24px 28px;
}

.admin-qa-card--pending {
  border-color: rgba(245, 230, 0, 0.45);
  box-shadow: 0 0 0 1px rgba(245, 230, 0, 0.15);
}

.admin-qa-card__listing {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.admin-qa-card__listing:hover {
  color: #525252;
}

.admin-qa-card__meta {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #737373;
}

.admin-qa-card__question {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.admin-qa-card__answer {
  margin-top: 16px;
  padding: 16px 18px;
  background: #F8F9FA;
  border-radius: 16px;
}

.admin-qa-card__answer-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #737373;
  font-weight: 600;
  margin-bottom: 6px;
}

.admin-qa-card__answer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #111;
}

/* ---------- Listings filter bar ---------- */
.listings-filter {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.listings-filter.is-open {
  overflow: visible;
}

@media (min-width: 640px) {
  .listings-filter {
    border-radius: 24px;
  }
}

.listings-filter__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: background-color 0.15s ease;
}

@media (min-width: 640px) {
  .listings-filter__toggle {
    padding: 16px 24px;
  }
}

.listings-filter__toggle:hover {
  background: #FAFAFA;
}

.listings-filter.is-open .listings-filter__toggle {
  border-bottom: 1px solid #f0f0f0;
}

.listings-filter__toggle-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

@media (min-width: 640px) {
  .listings-filter__toggle-main {
    font-size: 15px;
  }
}

.listings-filter__toggle-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.listings-filter__count {
  font-size: 13px;
  color: #737373;
  white-space: nowrap;
}

.listings-filter__chevron {
  flex-shrink: 0;
  color: #737373;
  transition: transform 0.25s ease;
}

.listings-filter.is-open .listings-filter__chevron {
  transform: rotate(180deg);
}

.listings-filter__badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: #FDFDE8;
  color: #7a6d00;
  border: 1px solid rgba(245, 230, 0, 0.45);
  white-space: nowrap;
}

.listings-filter__badge[hidden] {
  display: none;
}

.listings-filter__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.listings-filter.is-open .listings-filter__panel {
  grid-template-rows: 1fr;
  overflow: visible;
}

.listings-filter__panel-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 16px;
}

.listings-filter.is-open .listings-filter__panel-inner {
  padding: 16px 16px 20px;
  overflow: visible;
}

@media (min-width: 640px) {
  .listings-filter.is-open .listings-filter__panel-inner {
    padding: 20px 24px 28px;
  }
}

.listings-filter__search-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .listings-filter__search-row {
    flex-direction: row;
    align-items: stretch;
  }
}

.listings-filter__search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F8F9FA;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 0 16px;
  min-height: 48px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

@media (min-width: 640px) {
  .listings-filter__search {
    min-height: 52px;
  }
}

.listings-filter__search:focus-within {
  border-color: #F5E600;
  box-shadow: 0 0 0 2px rgba(245, 230, 0, 0.25);
}

.listings-filter__search svg {
  flex-shrink: 0;
  color: #737373;
}

.listings-filter__search-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #111;
  outline: none;
  padding: 12px 0;
}

@media (min-width: 640px) {
  .listings-filter__search-input {
    padding: 14px 0;
  }
}

.listings-filter__search-input::placeholder {
  color: #a3a3a3;
}

.listings-filter__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.listings-filter__btn {
  flex: 1;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

@media (min-width: 640px) {
  .listings-filter__btn {
    flex: none;
    min-height: 52px;
    padding: 0 24px;
  }
}

.listings-filter__btn--apply {
  min-width: 0;
}

@media (min-width: 640px) {
  .listings-filter__btn--apply {
    min-width: 110px;
  }
}

.listings-filter__btn--reset {
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #444;
}

.listings-filter__btn--reset:hover {
  background: #F8F9FA;
  border-color: #d4d4d4;
  color: #111;
}

.listings-filter__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
}

.listings-filter .custom-select.is-open {
  z-index: 50;
}

.listings-filter .custom-select__menu {
  z-index: 60;
}

@media (min-width: 640px) {
  .listings-filter__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .listings-filter__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.listings-filter__field {
  display: block;
  min-width: 0;
}

.listings-filter__label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #737373;
  font-weight: 600;
  margin-bottom: 6px;
}

/* ---------- Floating contact actions ---------- */
.floating-actions {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.floating-actions__btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 3.25rem;
  padding: 0 1rem 0 0.875rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.floating-actions__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.88);
}

.floating-actions__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.floating-actions__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.floating-actions__btn--whatsapp .floating-actions__icon {
  color: #25d366;
}

.floating-actions__btn--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.35);
  background: rgba(255, 255, 255, 0.82);
}

.floating-actions__btn--phone .floating-actions__icon {
  color: var(--ink);
  background: rgba(245, 230, 0, 0.35);
  border-color: rgba(245, 230, 0, 0.45);
}

.floating-actions__btn--phone:hover {
  border-color: rgba(245, 230, 0, 0.55);
  background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 639px) {
  .floating-actions {
    left: 1rem;
    bottom: 1rem;
    gap: 0.625rem;
  }

  .floating-actions__btn {
    min-height: 3rem;
    padding: 0 0.875rem 0 0.75rem;
  }

  .floating-actions__icon {
    width: 2rem;
    height: 2rem;
  }

  .floating-actions__label {
    font-size: 0.75rem;
  }
}

/* iOS Safari: input odaklanınca otomatik zoom (font-size < 16px) */
@media screen and (max-width: 767px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="file"]):not([type="image"]):not([type="range"]),
  select,
  textarea {
    font-size: 16px !important;
  }
}