﻿/* 06.12.2025: Genel tema & ortak layout refaktörü (Codex) */
/* ===========================
   GENEL AYARLAR
=========================== */
:root {
  /* Değişiklik: Tema renkleri kurumsal gri paletine çekildi, mobil filtre/detay iyileştirildi (02.12.2025) */
  --color-primary: #2b2f33; /* Ana vurgu: koyu gri */
  --color-primary-soft: #d1d3d6; /* Yumuşak vurgu */
  --color-secondary: #4a4f55; /* İkincil gri */
  --color-bg: #f2f3f5; /* Sayfa arka planı */
  --color-white: #ffffff;
  --color-text: #222222;
  --color-muted: #6b7280;
  --color-border: #d5d7da;
  --shadow-soft: 0 12px 32px rgba(30, 32, 34, 0.07);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition: 0.2s ease-in-out;
}

/* Değişiklik: Üst iletişim barı stili güncellendi (02.12.2025) */
.topbar {
  background-color: #101520;
  color: #f5f5f5;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-left {
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.topbar-center,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.topbar-link,
.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f5f5f5;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.topbar-link i,
.topbar-social i {
  font-size: 13px;
  color: #f0f0f0;
}

.topbar-link:hover,
.topbar-social:hover {
  opacity: 1;
  color: #ffffff;
}

.topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f5f5f5;
}

@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .topbar-center,
  .topbar-right {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-weight: 600;
  color: #111827;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.05rem;
}

/* Genel container */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Linkler ve butonlar */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), color var(--transition),
    border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(43, 47, 51, 0.2);
}

.btn-primary:hover {
  background-color: #1f2428;
  transform: translateY(-1px) scale(1.01); /* Değişiklik: Buton hover yumuşak büyütme */
  box-shadow: 0 10px 26px rgba(31, 36, 40, 0.28);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
}

/* Blm genel */
.section {
  padding: 4.5rem 0;
}

.section-light {
  background-color: #f9fafb;
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 1.6rem;
  font-weight: 600;
}

.section-header p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.link-underlined {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 06.12.2025: Genel tema & layout refaktörü (Codex) */
:root {
  --color-primary: #1f2429;
  --color-primary-soft: #e1e4e8;
  --color-secondary: #3b4148;
  --color-accent: #16a34a;
  --color-bg: #f3f4f6;
  --color-surface: #ffffff;
  --color-surface-alt: #f7f8fa;
  --color-text: #1f2933;
  --color-muted: #6b7280;
  --color-border: #d6d9de;
  --shadow-soft: 0 12px 32px rgba(17, 24, 39, 0.08);
  --shadow-strong: 0 20px 56px rgba(17, 24, 39, 0.14);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition: 0.24s ease-in-out;
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --container-max: 1180px;
  --font-family-base: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

body {
  font-family: var(--font-family-base);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 1.4vw + 1.6rem, 2.6rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.4rem, 0.8vw + 1.1rem, 1.9rem);
}

h3 {
  font-size: 1.06rem;
}

p {
  font-size: 0.96rem;
  color: var(--color-text);
}

.text-muted {
  color: var(--color-muted);
}

.container {
  max-width: var(--container-max);
}

.container-wide {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), color var(--transition),
    border-color var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(31, 36, 41, 0.22);
}

.btn-primary:hover {
  background-color: #161b20;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 12px 32px rgba(22, 27, 32, 0.28);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(34, 40, 46, 0.2);
}

.btn-secondary:hover {
  background-color: #2c3138;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn-ghost {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--color-text);
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

.btn-block {
  width: 100%;
}

.btn-text {
  padding: 0.25rem 0.1rem;
  border: none;
  background: transparent;
  color: var(--color-primary);
  font-weight: 600;
}

.btn-text:hover {
  color: #0b1117;
}

.section {
  padding: 4.25rem 0;
}

.section-header {
  margin-bottom: 0.2rem;
}

.topbar {
  background-color: #0c121d;
  color: #e5e7eb;
  font-size: 13px;
  border-bottom: 1px solid #121a27;
}

.topbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.45rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.topbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #f8fafc;
}

.topbar-tagline {
  font-size: 0.86rem;
  color: #cbd5e1;
}

.topbar-center,
.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.topbar-link,
.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #e5e7eb;
  text-decoration: none;
  opacity: 0.92;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: opacity 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    background-color 0.2s ease;
}

.topbar-link i,
.topbar-social i {
  font-size: 13px;
  color: #cbd5e1;
}

.topbar-link:hover,
.topbar-social:hover {
  opacity: 1;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.04);
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1.5rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.nav-link {
  color: #374151;
  padding: 0.35rem 0;
  position: relative;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.is-active {
  color: var(--color-primary);
}

.nav-link.is-active::after {
  width: 100%;
}

.nav-link-admin {
  display: none;
}

.page-admin .nav-link-admin {
  display: inline-flex;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: #111827;
  border-radius: 999px;
  transition: var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.contact-actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card-surface {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(210, 213, 218, 0.7);
}

.empty-state {
  border: 1px dashed var(--color-border);
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  text-align: center;
  color: var(--color-muted);
}

@media (max-width: 992px) {
  .main-nav {
    width: 100%;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
    flex-direction: column;
    padding: 1rem 1.1rem;
    gap: 0.35rem;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 200ms ease;
  }

  .main-nav.is-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 1rem 0 1.1rem;
  }

  .nav-inner {
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    gap: 0.55rem;
  }

  .logo-image {
    width: 42px;
    height: auto;
  }

  .logo-title {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
  }

  .logo-subtitle {
    font-size: 0.8rem;
  }

  .nav-links {
    font-size: 1rem;
    right: -1rem;
    left: -1rem;
  }

  .nav-link {
    padding: 0.55rem 0;
  }

  .nav-links a.nav-link::after {
    bottom: 0;
  }

  .topbar {
    padding: 0.5rem 0;
  }

  .topbar-inner {
    flex-wrap: wrap;
    gap: 0.4rem 0.6rem;
    align-items: center;
  }

  .topbar-center,
  .topbar-right {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.4rem;
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .topbar-left {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .topbar-link span,
  .topbar-social span {
    display: none;
  }

  .topbar-center,
  .topbar-right {
    gap: 0.3rem;
  }
}

/* ===========================
   TOP BAR
=========================== */
.top-bar {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.8rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
}

.top-bar-contact {
  display: flex;
  gap: 1rem;
}

.top-bar-contact a {
  opacity: 0.9;
}

.top-bar-contact a:hover {
  opacity: 1;
}

/* ===========================
   NAVBAR
=========================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #111827;
  background: #f9fafb;
  color: #111827;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* Men */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.nav-link {
  color: #374151;
  padding: 0.35rem 0;
  position: relative;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.is-active {
  color: var(--color-primary);
}

.nav-link.is-active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.85rem;
}

/* Mobil men butonu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: #111827;
  border-radius: 999px;
  transition: var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Header hizalama ve nav davranisi */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.7rem 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-title {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.82rem;
  color: var(--color-muted);
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  background: transparent;
  box-shadow: none;
}

.main-nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.main-nav-list a {
  color: #374151;
  padding: 0.35rem 0;
  text-decoration: none;
}

.main-nav-list a:hover {
  color: #111827;
}

.btn-header-cta {
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0.35rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.nav-toggle-icon {
  position: relative;
  width: 22px;
  height: 2px;
  background-color: #111827;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: #111827;
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  transform: translateY(6px) rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  transform: translateY(-6px) rotate(90deg);
  opacity: 0;
}

@media (max-width: 992px) {
  .site-header .header-inner {
    justify-content: space-between;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: none;
    padding: 0.5rem 0;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav-list {
    flex-direction: column;
    gap: 0;
  }

  .main-nav-list a {
    display: block;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
  }

  .main-nav-list li:last-child a {
    border-bottom: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .btn-header-cta {
    display: none;
  }
}

/* ===========================
   HERO
=========================== */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 4.2rem 0 3.6rem;
  background: radial-gradient(circle at top left, #ffffff, transparent 55%),
    radial-gradient(circle at bottom right, #e5e7eb, transparent 60%);
}

/* Arka planda modern bloblar */
.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.6;
  pointer-events: none;
}

.hero-section::before {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.18), transparent 60%);
  top: -60px;
  left: -40px;
}

.hero-section::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(148, 163, 184, 0.35),
    transparent 60%
  );
  bottom: -80px;
  right: -40px;
}

.hero-inner {
  position: relative;
  z-index: 1; /* arka plan bloblarnn stnde kalsn */
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(1.9rem, 2.4vw + 1.4rem, 2.6rem);
  line-height: 1.2;
  margin-bottom: 0.9rem;
  letter-spacing: 0.03em;
}

.hero-content p {
  color: var(--color-muted);
  font-size: 0.98rem;
  max-width: 32rem;
  margin-bottom: 1.4rem;
}

/* Arama formu */
.search-form {
  background: rgba(249, 250, 251, 0.85);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(18px); /* destekleyen tarayclarda cam efekti */
  -webkit-backdrop-filter: blur(18px);
}

.search-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-group-wide {
  grid-column: span 1;
}

.form-group-button {
  display: flex;
  align-items: flex-end;
}

.search-form label {
  font-size: 0.8rem;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.search-form select,
.search-form input {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 0.55rem 0.7rem;
  font-size: 0.87rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition),
    background-color var(--transition);
  background-color: #f9fafb;
}

.search-form select:focus,
.search-form input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.15);
  background-color: var(--color-white);
}

.btn-block {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.search-note {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* Hero istatistik kartlar */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  border: 1px solid rgba(209, 213, 219, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fadeInUp 0.35s ease-out both; /* style.css: istatistik kartı giriş animasyonu */
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
}

.stat-number {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ===========================
   HAKKIMIZDA
=========================== */
.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.8fr);
  gap: 2rem;
}

.two-columns h2 {
  margin-bottom: 0.8rem;
}

.two-columns p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.check-list li {
  font-size: 0.9rem;
}

.check-list li::before {
  content: "?"; /* check-list ikon */
  color: var(--color-primary);
  margin-right: 0.3rem;
}

/* Hakkmzda sa kutu */
.about-box {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.about-box h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.about-box p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.about-tags span {
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  background-color: var(--color-primary-soft);
  color: #1f2937;
}

/* ===========================
   LAN KARTLARI (ANASAYFA)
=========================== */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.listing-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(209, 213, 219, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  animation: fadeInUp 0.4s ease-out both; /* style.css: kart giriş animasyonu */
}

.listing-card:hover {
  transform: translateY(-4px) scale(1.01); /* style.css: ilan kartı hover güçlendirildi */
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
  border-color: rgba(148, 163, 184, 0.9);
}

.listing-image {
  position: relative;
  padding: 0.9rem 0.9rem 0;
}

.image-placeholder {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #6b7280;
}

.listing-photo {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

/* Anasayfa kartlarnda foto hafif zoom */
.listing-card .image-placeholder {
  height: 170px;
  transform: scale(1);
  transition: transform 0.3s ease-out, filter 0.3s ease-out;
}

.listing-card:hover .image-placeholder {
  transform: scale(1.04);
  filter: brightness(1.03);
}

/* Rozetler */
.badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-white);
}

.badge-type {
  left: auto;
  right: 0.9rem;
  background-color: rgba(15, 23, 42, 0.85);
}

.badge-sales {
  background-color: #16a34a; /* satlk: hafif yeil vurgulu */
}

.badge-rent {
  background-color: #f97316; /* kiralk: turuncu vurgulu */
}

.listing-body {
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.listing-body h3 {
  font-size: 1rem;
  font-weight: 600;
}

.listing-location {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.listing-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.listing-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.4rem 0 0.6rem;
}

.listing-meta li {
  font-size: 0.75rem;
  background-color: #f3f4f6;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
}

/* ===========================
   SANAL TUR GENEL
=========================== */
.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-color: #000;
}

/* 16:9 oran */
.video-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.virtual-tour-note {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ===========================
   FOOTER / LETM
=========================== */
.footer {
  background-color: #020617;
  color: #e5e7eb;
  padding-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr) minmax(0, 1.4fr); /* footer: h?zl? linkler solda, ileti?im + harita geni? */
  gap: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 993px) {
  .footer-inner > .footer-col:nth-child(3) {
    order: -1; /* desktop: h?zl? linkler kolonu en sola al */
  }
}

.footer h2,
.footer h3 {
  margin-bottom: 0.8rem;
}

.footer p {
  font-size: 0.9rem;
  color: #d1d5db; /* daha ntr gri */
}

.contact-list {
  list-style: none;
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
}

.contact-list a {
  font-size: 0.92rem;
  color: #e5e7eb;
}

.contact-list a:hover {
  color: #f9fafb;
}

.footer-col .btn-outline {
  border-color: #4b5563;
  color: #e5e7eb;
}

.footer-col .btn-outline:hover {
  border-color: var(--color-white);
  background-color: var(--color-white);
  color: #020617;
}

.footer-badge {
  margin-top: 1.1rem;
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #4b5563;
  padding: 0.25rem 0.9rem;
  font-size: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid #111827;
  padding: 0.8rem 0;
  margin-top: 0.5rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #9ca3af;
  gap: 0.5rem;
}

.footer-mini {
  opacity: 0.9;
}

/* 06.12.2025: Footer ortak şablon ve mobil iyileştirme (Codex) */
.footer {
  background-color: #0b111c;
  color: #e5e7eb;
  padding-top: 3rem;
  margin-top: var(--space-xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  padding-bottom: 2rem;
  align-items: flex-start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand strong {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.footer h2,
.footer h3 {
  margin-bottom: 0.55rem;
  color: #f8fafc;
}

.footer p {
  color: #d1d5db;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: #e5e7eb;
  font-weight: 500;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-link-admin {
  display: none;
}

.page-admin .footer-link-admin {
  display: list-item;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #e5e7eb;
  font-weight: 600;
}

.footer-social a:hover {
  color: #ffffff;
}

.contact-list {
  gap: 0.55rem;
}

.contact-list a {
  font-size: 0.98rem;
  font-weight: 600;
}

.contact-actions .btn {
  box-shadow: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.4rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #cbd5e1;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===========================
   PORTFY SAYFASI LAYOUT
=========================== */
.portfolio-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2rem;
}

/* Filtre paneli */
.filter-panel {
  /* Değişiklik: Filtre paneli gri palet ile sadeleştirildi */
  background: linear-gradient(180deg, #f7f8f9 0%, #eef0f3 100%);
  border-radius: 18px;
  padding: 1.4rem 1.4rem 1.6rem;
  color: var(--color-text);
  box-shadow: 0 14px 36px rgba(34, 36, 38, 0.12);
  align-self: flex-start;
  border: 1px solid var(--color-border);
  position: sticky;
  top: 6rem;
}

.filter-panel h2 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f2328;
}

.filter-panel::after {
  content: "";
  display: block;
  margin-top: 0.7rem;
  margin-bottom: 0.9rem;
  width: 45%;
  height: 1px;
  background: linear-gradient(to right, #2b2f33, transparent);
  opacity: 0.6;
}

.filter-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed rgba(209, 213, 219, 0.9);
}

.filter-group:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.filter-group label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.filter-group input,
.filter-group select {
  border-radius: 10px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 0.55rem 0.7rem;
  font-size: 0.86rem;
  background-color: #f9fafb;
  color: #111827;
  outline: none;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out,
    background-color 0.15s ease-out;
}

.filter-group input::placeholder {
  color: #9ca3af;
}

.filter-group input:focus,
.filter-group select:focus {
  border-color: #111827;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.15);
  background-color: #ffffff;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.filter-reset {
  margin-top: 0.3rem;
}

.filter-panel .btn-primary {
  background-color: #373b40;
  border-color: #373b40;
  box-shadow: 0 10px 26px rgba(43, 47, 51, 0.25);
}

.filter-panel .btn-primary:hover {
  background-color: #2b2f33;
  border-color: #2b2f33;
}

.filter-panel .btn-outline {
  border-color: #c4c7cc;
  color: #2f343a;
  background-color: #f6f7f9;
}

.filter-panel .btn-outline:hover {
  background-color: #e6e8eb;
  color: #111827;
}

/* Sa taraf: ilan listesi */
.portfolio-listing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portfolio-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.portfolio-sort {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.portfolio-sort select {
  border-radius: 999px;
  border: 1px solid var(--color-border);
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  background-color: #f9fafb;
}

/* Yatay ilan satrlar */
/* Yatay ilan satrlar  modern versiyon */
.listing-row {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  padding: 1rem 1.3rem 1.1rem;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  border: 1px solid rgba(209, 213, 219, 0.9);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fadeInUp 0.4s ease-out both; /* style.css: satır giriş animasyonu */
}

/* Sol tarafta ince vurgu izgisi */
.listing-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #111827, #6b7280);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.listing-row-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Fotoraf modern grnm + hover zoom */
.listing-row-image .image-placeholder {
  height: 180px;
  transform: scale(1);
  transition: transform 0.3s ease-out, filter 0.3s ease-out;
}

.listing-row-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.listing-row:hover .image-placeholder {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.listing-row-body h2 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.listing-row-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0.25rem 0 0.6rem;
}

.listing-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.listing-row-meta span strong {
  color: #111827;
}

.listing-row-actions {
  margin-top: 0.7rem;
}

/* Listing hover motion */
.listing-card,
.listing-row {
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.listing-card:hover,
.listing-row:hover {
  transform: translateY(-4px) scale(1.01); /* style.css: yatay kart hover güçlendirildi */
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.22);
}
.listing-row:hover::before {
  opacity: 1;
}

/* ===========================
   LAN DETAY SAYFASI
=========================== */
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr);
  gap: 2rem;
}

.detail-main,
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* Balk ksm */
.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 0.5rem;
}

.detail-header h1 {
  font-size: 1.4rem;
  margin-top: 0.2rem;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.75rem;
  background-color: var(--color-primary-soft);
  color: #1f2937;
}

.detail-location {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.detail-price-box {
  text-align: right;
}

.detail-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
}

.detail-price-note {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Kapak alan */
.detail-cover {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.detail-cover-image {
  position: relative;
}

.detail-cover-image .image-placeholder {
  height: 260px;
  border-radius: var(--radius-md);
}

.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.detail-gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #0f172a;
}

.detail-main-photo {
  width: 100%;
  display: block;
  height: 260px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease-out, filter 0.3s ease-out;
}

.detail-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.1rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.detail-thumb {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  flex: 0 0 70px;
  border: 2px solid transparent;
  opacity: 0.75;
  transition: border-color 0.2s ease-out, opacity 0.2s ease-out,
    transform 0.15s ease-out;
}

.detail-thumb img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  display: block;
}

.detail-thumb.is-active {
  border-color: #111827;
  opacity: 1;
  transform: translateY(-1px);
}

.detail-thumb:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .detail-main-photo {
    height: 220px;
  }

  .detail-thumb {
    flex-basis: 64px;
  }

  .detail-thumb img {
    height: 54px;
  }
}

.detail-cover-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem 1rem;
}

.meta-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.meta-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Blmler */
.detail-section {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.2rem 1.3rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detail-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14); /* style.css: bölüm hover yumuşak gölge */
}

.detail-section h2 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.detail-description {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
}

/* zellik grid */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  margin-top: 0.4rem;
}

.detail-item .meta-label {
  font-size: 0.75rem;
}

.detail-item .meta-value {
  font-size: 0.9rem;
}

/* Sidebar kutular */
.detail-contact-box,
.detail-info-box {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.detail-contact-box h2 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.detail-contact-box p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.detail-info-box h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-columns {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  }

  .portfolio-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    order: -1;
    position: static;
  }

  .listing-row {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-price-box {
    text-align: left;
  }

  .detail-cover-meta,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 2.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .form-group-wide {
    grid-column: span 1;
  }

  .two-columns {
    grid-template-columns: 1fr;
  }

  .listing-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .listing-row {
    grid-template-columns: 1fr;
  }

  .listing-row-image .image-placeholder {
    height: 200px;
  }

  .portfolio-list-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  /* Değişiklik: Mobil filtre ve detay düzeni iyileştirmesi */
  .filter-panel {
    padding: 1rem 1.1rem;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(34, 36, 38, 0.1);
  }

  .filter-row {
    grid-template-columns: 1fr;
  }

  .filter-group {
    padding-bottom: 0.4rem;
  }

  .detail-cover-meta,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .nav-links {
    right: 1rem;
    left: 1rem;
  }

  .detail-cover-meta,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

/* Teklif Ver Butonu (Detay Sayfas) */
.detail-offer-box {
  text-align: center;
  margin: 1.4rem 0;
}

.btn-offer-big {
  background-color: #111827;
  color: #f9fafb;
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
}

.btn-offer-big:hover {
  background-color: #000;
}

/* Modal (Teklif Formu) */
.offer-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.offer-modal.is-open {
  display: flex;
}

.offer-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.offer-modal-content {
  position: relative;
  z-index: 1;
  background: #f9fafb;
  padding: 1.4rem;
  border-radius: 14px;
  width: min(90%, 380px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.offer-modal-content h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #111827;
}

.offer-modal-content label {
  font-size: 0.85rem;
  margin-top: 0.7rem;
  display: block;
  color: #374151;
}

.offer-modal-content input,
.offer-modal-content textarea {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
}

.offer-modal-content textarea {
  height: 80px;
}

.btn-offer-send {
  background: #0f172a;
  color: #fff;
  border: none;
  width: 100%;
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 10px;
  cursor: pointer;
}

.offer-close-btn {
  margin-top: 0.6rem;
  background: transparent;
  border: none;
  color: #374151;
  width: 100%;
  padding: 0.6rem;
  cursor: pointer;
}

.btn-offer-small {
  background-color: #0f172a;
  color: #f9fafb;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-left: 0.4rem;
  transition: 0.2s;
}

.btn-offer-small:hover {
  background-color: #000;
  color: #fff;
}

/* WhatsApp Balonu */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 99;
  background-color: #25d366;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: 0.2s;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.insta-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #111827;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
}

.insta-link img {
  width: 18px;
  height: 18px;
}

.insta-link:hover {
  background: #000;
}

.footer-social {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background-color: #111827;
  color: #f9fafb;
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-instagram img {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-instagram:hover {
  background-color: #000;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.footer-links a {
  color: #e5e7eb;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #f9fafb;
  text-decoration: underline;
}

/* ===========================
   FOTORAF LIGHTBOX (TAM EKRAN)
=========================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lightbox.is-open {
  display: flex;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  background-color: #020617;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  border: none;
  background: rgba(15, 23, 42, 0.95);
  color: #f9fafb;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(15, 23, 42, 0.8);
  color: #f9fafb;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-prev {
  left: -50px;
}

.lightbox-next {
  right: -50px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: #020617;
}

@media (max-width: 768px) {
  .lightbox-inner {
    max-width: 100vw;
  }

  .lightbox-image {
    max-width: 94vw;
    max-height: 80vh;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
    background: rgba(15, 23, 42, 0.9);
  }
}

/* Sanal tur rozeti (ilan listesi) */
.badge-vtour {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  font-size: 0.75rem;
  background-color: #111827;
  color: #f9fafb;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-map {
  margin-top: 0.9rem;
  margin-bottom: 0.8rem; /* footer harita ile buton arasında nefes */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-color: #020617;
}

.footer-map iframe {
  width: 100%;
  height: 210px;
  border: 0;
  display: block;
}

/* ===========================
   ADMIN PANEL
=========================== */
.admin-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.admin-header h1 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.admin-header p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.admin-tag {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background-color: #111827;
  color: #f9fafb;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* zet kartlar */
.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.admin-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
}

.admin-card-label {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.admin-card-value {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Tablo */
.admin-table-wrapper {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.3rem 1.4rem;
  overflow-x: auto;
}

.admin-table-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  gap: 0.7rem;
}

.admin-table-toolbar h2 {
  font-size: 1.05rem;
}

#admin-search {
  max-width: 260px;
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
  background-color: #f9fafb;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  margin-top: 0.4rem;
  min-width: 820px;
}

.admin-table th,
.admin-table td {
  padding: 0.55rem 0.5rem;
  text-align: left;
}

.admin-table thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-border);
}

.admin-table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

.admin-table tbody tr:hover {
  background-color: #e5e7eb; /* ak gri */
}

.admin-btn {
  border: none;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.78rem;
  cursor: pointer;
  background-color: #111827;
  color: #f9fafb;
  margin-left: 0.25rem;
}

.admin-btn-outline {
  background-color: transparent;
  color: #111827;
  border: 1px solid #111827;
}

.admin-btn:hover {
  background-color: #000;
  color: #fff;
}

.admin-btn-outline:hover {
  background-color: #111827;
  color: #fff;
}

.admin-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Yeni ilan formu */
.admin-form-wrapper {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.3rem 1.4rem;
}

.admin-form-wrapper h2 {
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem 1rem;
}

.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.admin-form-group label {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.admin-form-group input,
.admin-form-group select {
  border-radius: 8px;
  border: 1px solid var(--color-border);
  padding: 0.5rem 0.7rem;
  font-size: 0.86rem;
  background-color: #f9fafb;
}

/* Admin form: dark card, clear states */
.page-admin .admin-form-wrapper {
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.06),
      transparent 45%
    ),
    radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.08), transparent 35%),
    #0b1221;
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-admin .admin-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem 1rem;
}

.admin-form .form-group,
.admin-form .admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-form .form-group label,
.admin-form .admin-form-group label {
  font-size: 0.82rem;
  color: #cbd5e1;
  letter-spacing: 0.02em;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.6);
  color: #f8fafc;
  padding: 0.6rem 0.75rem;
  font-size: 0.92rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.admin-form input::placeholder,
.admin-form textarea::placeholder {
  color: #94a3b8;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: #fb923c;
  box-shadow: 0 0 0 2px rgba(251, 146, 60, 0.25);
  background: rgba(15, 23, 42, 0.75);
}

.admin-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group-full {
  grid-column: span 3;
}

.admin-message {
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  transition: 0.2s ease;
  margin-top: 0.6rem;
  display: block;
}

.admin-message.is-info {
  border-color: rgba(59, 130, 246, 0.45);
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.18),
    rgba(14, 165, 233, 0.18)
  );
}

.admin-message.is-success {
  border-color: rgba(34, 197, 94, 0.5);
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.2),
    rgba(16, 185, 129, 0.2)
  );
}

.admin-message.is-error {
  border-color: rgba(239, 68, 68, 0.55);
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.22),
    rgba(248, 113, 113, 0.18)
  );
}

.page-admin #admin-save-btn {
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #0b1221;
  border: none;
  font-weight: 600;
  padding: 0.9rem 1.3rem;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
}

.page-admin #admin-save-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.45);
}

.page-admin #admin-save-btn:active {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .page-admin .admin-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-group-full {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .page-admin .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: span 1;
  }
}

/* Responsive admin */
@media (max-width: 992px) {
  .admin-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .admin-table-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  #admin-search {
    max-width: 100%;
  }

  .admin-summary {
    grid-template-columns: 1fr 1fr;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .admin-summary {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   LETM SAYFASI
=========================== */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 2rem;
}

.contact-card,
.contact-info-card,
.contact-map-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card h1 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.contact-subtitle {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 1.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-form-group label {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.contact-form-group input,
.contact-form-group textarea {
  border-radius: 10px;
  border: 1px solid var(--color-border);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  background-color: #f9fafb;
}

.contact-form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* contact cards link visibility */
.contact-info a {
  color: #0f172a;
  text-decoration: none;
}

.contact-info a:hover {
  color: #22c55e;
  text-decoration: underline;
}

/* Detay/iletisim kartlarinda link rengini koyu tutalım */
.detail-contact-box .contact-list a,
.contact-info-card .contact-list a,
.contact-map-card .contact-list a {
  color: #0f172a;
  font-weight: 500;
}

.detail-contact-box .contact-list a:hover,
.contact-info-card .contact-list a:hover,
.contact-map-card .contact-list a:hover {
  color: #22c55e;
  text-decoration: underline;
}

.contact-card:hover,
.contact-info-card:hover,
.contact-map-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15); /* style.css: iletişim kartı hover */
}

/* İletişim ve detay kartlarında linkler koyu dursun */
.contact-info-card .contact-list a,
.contact-card .contact-list a,
.detail-contact-box .contact-list a {
  color: #0f172a;
  text-decoration: none;
}

.contact-info-card .contact-list a:hover,
.contact-card .contact-list a:hover,
.detail-contact-box .contact-list a:hover {
  color: #0f172a;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* Genel gizleme yardimci sinifi */
.is-hidden {
  display: none !important;
}

.is-hidden-by-type {
  display: none !important;
}

/* Değişiklik: tür bazlı alan gizleme sınıfı (03.12.2025) */
.is-type-hidden {
  display: none !important;
}

/* ===========================
   FOOTER GÖRÜNÜM İYİLEŞTİRME
=========================== */

.footer {
  background-color: #020617;
  color: #f9fafb;
}

.footer h2,
.footer h3 {
  color: #f9fafb;
  font-weight: 600;
}

.footer p,
.footer-bottom-inner span,
.footer-mini {
  color: #e5e7eb;
}

/* Etiketler */
.contact-label {
  color: #9ca3af;
}

/* Footer alt bant */
.footer-bottom {
  border-top: 1px solid #111827;
}

/* “Yetkili Emlak Ofisi” rozetini gizle */
.footer-badge {
  display: none;
}

/* Biraz daha ferah grid */
.footer-inner {
  align-items: flex-start;
  column-gap: 3rem;
}

/* Footer iletişim linkleri (Telefon / Mesaj Gönder) */
.contact-list a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #fdfdfd;
}

.contact-list a:hover {
  color: #22c55e; /* hoş bir yeşil vurgusu */
  text-decoration: underline;
}

.contact-actions-inline {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ===========================
   MODERN AÇILIR MENÜ (SELECT)
=========================== */

.search-form select,
.filter-panel select,
.filter-select,
.portfolio-sort select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; /* varsayılan okları kaldır */
  background-color: #ffffff;
  border-radius: 999px; /* daha pill-style görünüm */
  border: 1px solid #d1d5db;
  padding: 0.55rem 2.4rem 0.55rem 0.9rem;
  font-size: 0.9rem;
  color: #111827;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center; /* sağdaki ok */
  background-size: 16px 16px;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out,
    background-color 0.15s ease-out, transform 0.1s ease-out;
}

.search-form select:hover,
.filter-panel select:hover,
.filter-select:hover,
.portfolio-sort select:hover {
  border-color: #111827;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  background-color: #f9fafb;
  transform: translateY(-1px);
}

.search-form select:focus,
.filter-panel select:focus,
.filter-select:focus,
.portfolio-sort select:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.3);
  background-color: #ffffff;
}

/* ===========================
   CUSTOM SELECT (DESKTOP)
   style.css: masaüstü dropdown görünümü
=========================== */
.native-select-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 0.55rem 2.4rem 0.55rem 0.9rem;
  font-size: 0.9rem;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    transform 0.1s ease;
}

.custom-select-trigger:hover {
  border-color: #111827;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.custom-select-trigger:focus-visible {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.3);
}

.custom-select-arrow {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}

.custom-select.is-open .custom-select-arrow {
  transform: rotate(225deg);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  padding: 0.25rem;
  display: none;
  z-index: 20;
}

.custom-select.is-open .custom-select-menu {
  display: block;
}

.custom-select-option {
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.12s ease, color 0.12s ease;
}

.custom-select-option:hover {
  background-color: #f3f4f6;
}

.custom-select-option.is-selected {
  background-color: #e5e7eb;
  color: #111827;
  font-weight: 500;
}

/* ===========================
   SCROLL TO TOP BUTTON
=========================== */
.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 90px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: #0f172a;
  color: #f9fafb;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 90;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-4px);
}

.scroll-top-btn:hover {
  background-color: #020617;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

/* ===========================
   ANİMASYONLAR
=========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* style.css: form odak durumu glendirildi */
input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.15);
  outline: none;
}

/* ===========================
   SKELETON / SHIMMER
=========================== */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}

.skeleton-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1rem;
  overflow: hidden;
}

.skeleton {
  display: inline-block;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200px 100%;
  animation: shimmer 1.2s infinite linear;
}

.skeleton.media {
  border-radius: var(--radius-md);
  height: 160px;
  grid-row: span 3;
}

.skeleton-line {
  margin-bottom: 0.5rem;
  height: 12px;
}

.skeleton-line.sm {
  height: 10px;
  width: 40%;
}
.skeleton-line.md {
  height: 12px;
  width: 60%;
}
.skeleton-line.lg {
  height: 14px;
  width: 80%;
}
