/* =========================================
   EventRehberi — Modern Minimal Stil
   ========================================= */

/* --- Design tokens --- */
:root {
  /* Renkler */
  --color-bg: #FFFFFF;
  --color-bg-alt: #FAFAF7;
  --color-bg-card: #F6F5F1;
  --color-text: #0F0F0F;
  --color-text-muted: #6B6B6B;
  --color-text-subtle: #9A9A9A;
  --color-accent: #1F4D33;
  --color-accent-hover: #153626;
  --color-accent-soft: #EAF0EC;
  --color-border: #E8E6E1;
  --color-border-strong: #D4D2CD;

  /* Tipografi */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Ölçüler */
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Gölgeler */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* The HTML `hidden` attribute must always win over CSS `display` rules
   (e.g. .nav-user-menu uses display:flex). Without this rule the dropdown
   stays open on page load and the account-loading state can't be hidden. */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --- Tipografi --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p { color: var(--color-text-muted); }

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.muted { color: var(--color-text-muted); }

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 4rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-links a.active {
  color: var(--color-text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  color: white;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--color-text);
  color: white;
}

.btn-secondary:hover {
  background: #000;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
}

.btn-ghost:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* --- Hero --- */
.hero {
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p.lead {
  font-size: 1.1875rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

/* Image hero variant — full-bleed photo with cinematic overlay */
.hero-image {
  padding: 8rem 0 7rem;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-color: #0F1B12;
  color: #fff;
}

.hero-image .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-image .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: saturate(1.05);
}

.hero-image .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(15, 27, 18, 0.35) 0%, rgba(15, 27, 18, 0.72) 70%, rgba(15, 27, 18, 0.85) 100%),
    linear-gradient(180deg, rgba(15, 27, 18, 0.25) 0%, rgba(15, 27, 18, 0.55) 100%);
}

.hero-image .hero-eyebrow {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.14em;
}

.hero-image h1 {
  color: #fff;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-image p.lead {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Search bar on hero — multi-field */
.hero-search {
  display: flex;
  align-items: stretch;
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 4px 16px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.6);
  overflow: hidden;
}

.hs-field {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.hs-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  pointer-events: none;
  z-index: 1;
  flex-shrink: 0;
}

.hs-select,
.hs-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--color-text);
  padding: 1rem 2rem 1rem 40px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.hs-select:focus,
.hs-input:focus {
  background: rgba(31,77,51,0.04);
}

.hs-input::placeholder {
  color: var(--color-text-subtle);
  font-size: 0.875rem;
}

.hs-field:has(.hs-select)::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--color-text-muted);
  border-bottom: 1.5px solid var(--color-text-muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.hs-divider {
  width: 1px;
  background: var(--color-border);
  margin: 10px 0;
  flex-shrink: 0;
}

.hs-btn {
  border-radius: 0 10px 10px 0;
  padding: 0 1.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  min-height: 56px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-search { flex-direction: column; max-width: 100%; }
  .hs-field { border-bottom: 1px solid var(--color-border); }
  .hs-divider { display: none; }
  .hs-btn {
    border-radius: 0 0 10px 10px;
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }
}

/* Popular searches row — symmetric single line */
.hero-popular {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-popular-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-popular-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Glass chip (used on photo hero) */
.chip-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.chip-glass:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
  color: var(--color-accent);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .hero-image {
    padding: 5rem 0 4.5rem;
    min-height: 540px;
    overflow: hidden;
  }
  .hero-image h1 br { display: none; }
  .hero-popular { gap: 0.5rem; }
  .hero p.lead {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .hero-inner { width: 100%; min-width: 0; }
}
@media (max-width: 480px) {
  .hero p.lead { font-size: 0.9375rem; }
  .container { padding: 0 1rem; }
  .hero h1 { font-size: 1.75rem; }
}

/* --- Section header --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.0625rem;
}

.section-header-left {
  text-align: left;
  margin: 0 0 3rem;
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

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

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* --- Category chips --- */
.categories {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.chip {
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--color-border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all 0.2s;
  cursor: pointer;
}

.chip:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.chip.active {
  background: var(--color-text);
  color: white;
  border-color: var(--color-text);
}

/* --- How it works steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.step {
  text-align: left;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

/* --- Visual steps (with images) --- */
.steps-visual {
  gap: 2rem;
}

.step-visual {
  text-align: left;
}

.step-visual-img {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--color-bg-alt);
}

.step-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.step-visual:hover .step-visual-img img {
  transform: scale(1.04);
}

.step-visual-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.step-visual h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.step-visual p {
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .steps-visual { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- Caterer card --- */
.caterer-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--color-border);
  display: block;
}

.caterer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.caterer-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}

.caterer-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text);
}

.caterer-body {
  padding: 1.25rem;
}

.caterer-name {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.caterer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.875rem;
}

.caterer-location {
  color: var(--color-text-muted);
}

.caterer-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-text);
  font-weight: 500;
}

.caterer-price {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* --- Category card (image) --- */
.cat-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-bg-card);
  cursor: pointer;
  display: block;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.2);
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-card:hover img {
  transform: scale(1.08);
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 75%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.cat-card-label {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  z-index: 2;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* --- Horizontal scroll rail for categories --- */
.cat-rail-wrapper {
  position: relative;
}

.cat-rail {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1.5rem;
  padding: 0.5rem 1.5rem 1.5rem;
  -webkit-overflow-scrolling: touch;

  /* Hide scrollbar cleanly */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cat-rail::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.cat-rail .cat-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
}

@media (max-width: 640px) {
  .cat-rail .cat-card {
    flex: 0 0 200px;
  }
}

/* Edge fade gradients — indicate scrollable content */
.cat-rail-fade {
  position: absolute;
  top: 0.5rem;
  bottom: 1.5rem;
  width: 80px;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.cat-rail-fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg-alt) 0%, rgba(250, 250, 247, 0) 100%);
}

.cat-rail-fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--color-bg-alt) 0%, rgba(250, 250, 247, 0) 100%);
}

@media (max-width: 640px) {
  .cat-rail-fade {
    width: 40px;
  }
}

/* Overlay navigation chevrons — floating at rail edges */
.cat-rail-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  z-index: 3;
}

.cat-rail-btn:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.cat-rail-btn:active {
  transform: translateY(-50%) scale(0.98);
}

.cat-rail-btn--prev {
  left: 0.5rem;
}

.cat-rail-btn--next {
  right: 0.5rem;
}

.cat-rail-btn svg {
  display: block;
}

@media (max-width: 640px) {
  .cat-rail-btn {
    width: 40px;
    height: 40px;
  }
  .cat-rail-btn--prev { left: 0.25rem; }
  .cat-rail-btn--next { right: 0.25rem; }
}

/* --- CTA banner --- */
.cta-banner {
  background: var(--color-text);
  color: white;
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 1rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
}

.cta-banner .btn-primary {
  background: white;
  color: var(--color-text);
}

.cta-banner .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* --- Rich CTA banner (enhanced) --- */
.cta-banner-rich {
  background: linear-gradient(135deg, #0A1F14 0%, #1F4D33 40%, #2D6B46 65%, #0A1F14 100%);
  padding: 5rem 3rem;
  isolation: isolate;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.cta-glow--green {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, #2D6B46 0%, transparent 70%);
}

.cta-glow--gold {
  width: 340px;
  height: 340px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, #7FD9A8 0%, transparent 70%);
  opacity: 0.35;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-eyebrow {
  color: rgba(255, 255, 255, 0.75) !important;
}

.cta-banner-rich h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.cta-banner-rich p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-cta-primary {
  background: #fff;
  color: #1F4D33;
  border: 1px solid #fff;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-cta-primary:hover {
  background: #f5f5f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.btn-cta-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-trust-avatars {
  display: inline-flex;
}

.cta-trust-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #1F4D33;
  object-fit: cover;
  margin-left: -10px;
  background: #2F7A4F;
}

.cta-trust-avatars img:first-child {
  margin-left: 0;
}

.cta-trust-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.01em;
}

.cta-trust-text strong {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 640px) {
  .cta-banner-rich {
    padding: 3.5rem 1.5rem;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .cta-trust {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* --- Footer --- */
.footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.625rem;
}

.footer-col a {
  color: var(--color-text);
  font-size: 0.9375rem;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  max-width: 320px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Desktop: accordion summary hidden, ul always visible */
.footer-accordion > summary { display: none; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  .footer { padding: 3rem 0 1.5rem; }
  .footer-brand { margin-bottom: 0.5rem; }
  .footer-brand p { font-size: 0.875rem; }

  /* Mobile accordion */
  .footer-accordion {
    border-top: 1px solid var(--color-border);
  }
  .footer-accordion:last-of-type {
    border-bottom: 1px solid var(--color-border);
  }
  .footer-accordion > summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    user-select: none;
  }
  .footer-accordion > summary::-webkit-details-marker { display: none; }
  .footer-accordion > summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1;
  }
  .footer-accordion[open] > summary::after { content: '−'; }
  .footer-accordion > ul {
    padding-bottom: 1rem;
  }
  .footer-col h4 { display: none; }
  .footer-col li { margin-bottom: 0.375rem; }
}

/* --- Modern Footer Override --- */
.footer.footer-modern {
  background: #0B1A10;
  border-top: none;
  padding: 5rem 0 0;
  color: rgba(255, 255, 255, 0.75);
}

/* --- Footer Top: Marka + Bülten --- */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.footer-brand-block .footer-logo {
  color: #fff;
  margin-bottom: 1.25rem;
  display: inline-flex;
}

.footer-brand-block .footer-logo span:last-child {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 340px;
  margin-bottom: 1.75rem;
}

/* Sosyal medya ikonları */
.footer-social {
  display: flex;
  gap: 0.625rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.footer-social-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

/* Bülten bloku */
.footer-newsletter-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0;
  text-transform: none;
}

.footer-newsletter-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.125rem;
  line-height: 1.5;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter-btn {
  padding: 0.7rem 1.375rem;
  border-radius: var(--radius-md);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.footer-newsletter-btn:hover {
  background: var(--color-accent-hover);
}

.footer-newsletter-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Ayırıcı çizgi */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 3.5rem;
}

/* --- 5-Kolon Link Yapısı --- */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.footer-links-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col li {
  margin-bottom: 0.625rem;
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-col a:hover {
  color: #fff;
}

/* --- Footer Alt Bar --- */
.footer-bottom-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8375rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.8375rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-location {
  font-size: 0.8375rem;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* Responsive: tablet */
@media (max-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-newsletter-form {
    flex-direction: column;
  }
  .footer-newsletter-btn {
    align-self: flex-start;
  }
  .footer-bottom-modern {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .footer-legal-links {
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .footer.footer-modern {
    padding: 3.5rem 0 0;
  }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }
  .footer-top {
    margin-bottom: 2.5rem;
  }
  .footer-divider {
    margin-bottom: 2.5rem;
  }
}

/* --- Listing page filters --- */
.page-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  align-items: center;
}

.filter-bar .search-input {
  flex: 1;
  min-width: 240px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  outline: none;
  font-size: 0.9375rem;
  background: white;
}

.filter-bar .search-input:focus {
  border-color: var(--color-text);
}

.filter-bar select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: white;
  font-size: 0.9375rem;
  cursor: pointer;
}

.results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* --- Profile page --- */
.profile-hero {
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .profile-hero { aspect-ratio: 16 / 10; }
}

.profile-header {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-border);
}

.profile-info h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.profile-meta {
  display: flex;
  gap: 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  flex-wrap: wrap;
}

.profile-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.profile-cta {
  display: flex;
  gap: 0.5rem;
}

.profile-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  padding: 3rem 0;
}

@media (max-width: 1024px) {
  .profile-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .profile-header { flex-direction: column; gap: 1rem; }
  .profile-info h1 { font-size: 1.5rem; }
  .profile-meta { gap: 0.75rem; font-size: 0.875rem; }
  .profile-cta { width: 100%; flex-wrap: wrap; }
  .profile-cta .btn,
  .profile-cta .btn-fav-hero { flex: 1; min-width: 120px; justify-content: center; }
}
@media (max-width: 480px) {
  .profile-cta { flex-direction: column; }
  .profile-cta .btn,
  .profile-cta .btn-fav-hero { width: 100%; min-height: 44px; flex: unset; }
}

.tabs {
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem;
}

.tab {
  padding: 0.875rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.tab.active {
  color: var(--color-text);
  border-bottom-color: var(--color-accent);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-info h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}

.menu-item-info p {
  font-size: 0.9375rem;
}

.menu-item-price {
  font-size: 1.0625rem;
  font-weight: 600;
  white-space: nowrap;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}

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

/* Booking card (sticky) */
.booking-card {
  position: sticky;
  top: 96px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  background: white;
  box-shadow: var(--shadow-md);
}

.booking-card h3 {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  outline: none;
  background: white;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-text);
}

.form-group textarea {
  resize: vertical;
  min-height: 96px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Review */
.review {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-text);
}

.review-meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* --- Feature list --- */
.feature-list {
  list-style: none;
  margin-top: 1rem;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
  font-size: 0.9375rem;
}

.feature-list li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 600;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* --- About / Contact page --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}

.contact-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-item:last-child { border-bottom: none; }

.contact-item .label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-item .value {
  font-size: 1.0625rem;
  color: var(--color-text);
  font-weight: 500;
}

/* Signup hero */
.signup-hero {
  padding: 5rem 0 3rem;
  text-align: center;
}

.signup-hero h1 {
  max-width: 700px;
  margin: 0 auto 1rem;
}

.signup-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

.signup-form {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

/* Stat strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stat-num {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* --- Stats section (refined, with icons & dividers) --- */
.stats-section {
  padding: 6rem 0;
  background: var(--color-bg-alt);
}

.stats-refined {
  padding: 0;
  border: none;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 12px 40px -12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.stats-refined .stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  transition: background 0.2s ease;
}

.stats-refined .stat-item:hover {
  background: var(--color-bg-alt);
}

.stats-refined .stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: var(--color-border);
}

.stats-refined .stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.stats-refined .stat-icon svg {
  width: 24px;
  height: 24px;
}

.stats-refined .stat-num {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 0.375rem;
  line-height: 1;
}

.stats-refined .stat-plus {
  color: var(--color-accent);
  margin-left: 0.05em;
}

.stats-refined .stat-star {
  color: #E8A630;
  font-size: 0.85em;
  margin-left: 0.15em;
  vertical-align: middle;
}

.stats-refined .stat-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-section { padding: 4rem 0; }
  .stats-refined {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stats-refined .stat-item + .stat-item::before {
    display: none;
  }
  .stats-refined .stat-item {
    border-bottom: 1px solid var(--color-border);
  }
  .stats-refined .stat-item:nth-child(odd) {
    border-right: 1px solid var(--color-border);
  }
  .stats-refined .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .section { padding: 4rem 0; }
  .cta-banner { padding: 3rem 1.5rem; }
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }

/* =========================================
   Task #18 — Auth, Signup Flow & Success
   ========================================= */

/* Navbar auth links */
.nav-auth-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-auth-link:hover {
  color: var(--color-accent);
  background: var(--color-accent-soft);
}

.btn-sm {
  padding: 0.55rem 1.05rem;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .nav-auth-link { display: none; }
}

/* =========================================
   Mobil Hamburger & Drawer Navigasyon
   ========================================= */

/* Hamburger butonu — yalnızca mobilde görünür */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-hamburger:hover {
  background: var(--color-bg-alt);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  margin: 0 auto;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

/* Açık halde ☰ → ✕ animasyonu */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobilde hamburger göster, nav-cta'yı gizle (drawer'a taşındı) */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* Karartma overlay'i */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}
.nav-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer paneli — sağdan kayar */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: #fff;
  z-index: 160;
  transform: translateX(100%);
  transition: transform 0.24s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.12);
}
.nav-drawer.is-open {
  transform: translateX(0);
}

/* Drawer açıkken sayfanın altında kaymasını engelle */
body.drawer-open {
  overflow: hidden;
}

/* Drawer iç düzeni */
.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  padding: 0 1.25rem 2rem;
}

/* Başlık: marka adı + kapat butonu */
.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 1.25rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0.5rem;
}

.nav-drawer-logo {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

/* Kapat butonu — 44×44px touch target */
.nav-drawer-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  color: var(--color-text);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.nav-drawer-close:hover {
  background: var(--color-bg-alt);
  color: var(--color-accent);
}

/* Nav linkleri listesi */
.nav-drawer-links {
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}
.nav-drawer-links li a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.625rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-drawer-links li:last-child a {
  border-bottom: none;
}
.nav-drawer-links li a:hover,
.nav-drawer-links li a.active {
  color: var(--color-accent);
}

/* Auth bölümü — drawer alt kısmına */
.nav-drawer-cta {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
  padding-bottom: 0.5rem;
}
.nav-drawer-auth {
  flex-direction: column;
  gap: 0.625rem;
}

/* Kullanıcı adı satırı (oturum açıkken) */
.nav-drawer-user-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding-bottom: 0.5rem;
}

/* Drawer içi full-width buton */
.nav-drawer-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  min-height: 44px;
}

/* =========================================
   Kayit — Hero with glow
   ========================================= */
.signup-hero-rich {
  position: relative;
  padding: 7rem 0 5.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #FAFAF7 0%, #F6F5F1 100%);
  isolation: isolate;
}

.signup-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.signup-hero-bg::before,
.signup-hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.signup-hero-bg::before {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(31, 77, 51, 0.22), transparent 70%);
  top: -160px;
  left: -120px;
}

.signup-hero-bg::after {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(232, 166, 48, 0.18), transparent 70%);
  bottom: -140px;
  right: -100px;
}

.signup-hero-inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.signup-hero-inner h1 {
  margin: 0.75rem 0 1rem;
}

.signup-hero-inner .lead {
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

.signup-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.signup-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(31, 77, 51, 0.12);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.signup-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* =========================================
   Kayit — Benefits refined
   ========================================= */
.benefits-refined {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: -2.5rem auto 0;
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.benefit-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefits-refined {
    grid-template-columns: 1fr;
    margin-top: -2rem;
  }
}

/* =========================================
   Kayit — Signup form wrapper & sections
   ========================================= */
.signup-form-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 24px 60px -20px rgba(0,0,0,0.1);
}

.signup-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.signup-form-header h2 {
  margin-bottom: 0.5rem;
}

.signup-form-header p {
  font-size: 0.9375rem;
}

.form-section {
  margin-bottom: 2.5rem;
}

.form-section:last-of-type {
  margin-bottom: 2rem;
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.form-section-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}

.form-section-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.req {
  color: var(--color-accent);
  font-weight: 600;
  margin-left: 0.15em;
}

.muted-small {
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
  font-weight: 400;
}

.form-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
}

.form-footnote {
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
  text-align: center;
  margin-top: 1rem;
}

/* Two inputs side-by-side */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .signup-form-wrapper { padding: 2rem 1.25rem; }
}

/* =========================================
   Kayit — Chip check group (uzmanlık)
   ========================================= */
.chip-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.chip-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.chip-check:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

.chip-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-check:has(input:checked) {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* Searchable District Select Component (Step 2) */
.ilce-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  min-height: 0;
  margin-bottom: 0.625rem;
}
.ilce-selected:empty { display: none; }
.ilce-selected-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3125rem 0.625rem 0.3125rem 0.75rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
}
.ilce-selected-chip button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  padding: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.15s;
}
.ilce-selected-chip button:hover { color: #fff; }

.ilce-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.625rem;
}
.ilce-preset-btn {
  padding: 0.3125rem 0.875rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.ilce-preset-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}
.ilce-preset-btn--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.ilce-search-wrap {
  position: relative;
  margin-bottom: 0.5rem;
}
.ilce-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
}
.ilce-search-input {
  width: 100%;
  padding: 0.5625rem 0.875rem 0.5625rem 2.25rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--color-text);
  background: #fff;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.ilce-search-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(31,77,51,0.08);
}

.ilce-scroll-list {
  max-height: 280px;
  overflow-y: auto;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  overscroll-behavior: contain;
}
.ilce-scroll-list:focus { outline: none; }
.ilce-list-item {
  padding: 0.5625rem 0.875rem;
  font-size: 0.875rem;
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.1s;
  border-bottom: 1px solid #F4F2EC;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ilce-list-item:last-child { border-bottom: none; }
.ilce-list-item:hover { background: var(--color-bg-alt); }
.ilce-list-item:focus { outline: 2px solid var(--color-accent); outline-offset: -2px; background: var(--color-bg-alt); }
.ilce-list-item[aria-selected="true"] {
  background: #F0F5F1;
  color: var(--color-accent);
  font-weight: 600;
}
.ilce-list-item[aria-selected="true"]::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.ilce-empty-msg {
  padding: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Agreement (checkbox inline) */
.form-agreement {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}

.check-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text);
  cursor: pointer;
}

.check-inline input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

.check-inline a {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Honeypot (hidden to users, visible to bots) */
.honeypot-field {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =========================================
   Testimonial Section
   ========================================= */
.testimonial-section {
  padding: 5rem 0;
  background: var(--color-bg-alt);
}

.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.testimonial-quote {
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.55;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.9375rem;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* =========================================
   FAQ Accordion
   ========================================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
  transition: padding 0.2s ease;
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  padding: 0.25rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq-answer {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  padding-right: 2rem;
}

.faq-item:hover summary {
  color: var(--color-accent);
}

/* =========================================
   Auth Pages (Giriş / Üye Ol)
   ========================================= */
.auth-page {
  min-height: calc(100vh - 72px);
  background: var(--color-bg-alt);
}

.auth-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
}

.auth-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: #fff;
}

.auth-form-box {
  width: 100%;
  max-width: 440px;
}

.auth-header {
  margin-bottom: 2rem;
}

.auth-header .eyebrow {
  margin-bottom: 0.5rem;
}

.auth-header h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.625rem;
}

.auth-header p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.auth-tabs {
  display: flex;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 1.5rem;
}

.auth-tab {
  flex: 1;
  padding: 0.625rem 0.875rem;
  background: transparent;
  border: none;
  border-radius: calc(var(--radius-md) - 4px);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-tab.active {
  background: #fff;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.auth-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: #FEF7E6;
  border: 1px solid #F3DEA3;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #6B5320;
}

.auth-notice svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #C28A14;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.auth-form .form-group {
  margin-bottom: 0;
}

.auth-form .btn {
  margin-top: 0.5rem;
}

.link-muted {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.link-muted:hover {
  color: var(--color-accent);
}

.auth-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.75rem 0;
  color: var(--color-text-subtle);
  font-size: 0.8125rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.auth-social {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-social:hover {
  border-color: var(--color-border-strong);
  background: var(--color-bg-alt);
}

.btn-social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.auth-footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.auth-footer a {
  color: var(--color-accent);
  font-weight: 500;
}

.auth-footer a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.auth-footer-alt {
  margin-top: 0.875rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-subtle);
}

.auth-footer-alt a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Auth visual side */
.auth-visual-side {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: #fff;
  isolation: isolate;
}

.auth-visual-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.auth-visual-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(10, 30, 20, 0.78) 0%, rgba(10, 25, 17, 0.70) 100%),
    rgba(0, 0, 0, 0.45);
}

.auth-visual-content {
  max-width: 440px;
  position: relative;
}

.auth-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.875rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2rem;
}

.auth-logo-badge svg {
  width: 18px;
  height: 18px;
}

.auth-quote {
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  color: #fff;
}

.auth-quote-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.auth-quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
}

.auth-quote-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
}

.auth-quote-role {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
}

.auth-promo-h {
  font-size: clamp(1.625rem, 2.8vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #fff;
}

.auth-promo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.auth-promo-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
}

.auth-promo-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(232, 166, 48, 0.25);
  border: 1px solid rgba(232, 166, 48, 0.6);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8A630' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

@media (max-width: 768px) {
  .auth-split {
    grid-template-columns: 1fr;
  }
  .auth-visual-side {
    min-height: 140px;
    order: -1;
    padding: 1.25rem 1.5rem;
  }
  /* Compact modda yalnızca logo badge görünür */
  .auth-quote,
  .auth-promo-h,
  .auth-promo-list,
  .auth-quote-author {
    display: none;
  }
  .auth-logo-badge {
    margin-bottom: 0;
  }
  .auth-form-side {
    padding: 2rem 1.25rem;
  }
}

/* 640px altında görsel panel tamamen gizlenir */
@media (max-width: 640px) {
  .auth-visual-side {
    display: none;
  }
}

/* =========================================
   Success Page (tesekkurler.html)
   ========================================= */
.success-page {
  padding: 5rem 0;
  min-height: calc(100vh - 72px - 100px);
  display: flex;
  align-items: center;
  background: var(--color-bg-alt);
}

.success-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 24px 60px -20px rgba(0,0,0,0.1);
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.75rem;
  color: var(--color-accent);
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

.success-check {
  stroke-dasharray: 32;
  stroke-dashoffset: 32;
  animation: success-draw 0.6s 0.2s ease-out forwards;
}

@keyframes success-draw {
  to { stroke-dashoffset: 0; }
}

.success-card h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  margin: 0.5rem 0 0.75rem;
}

.success-card .lead {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.success-next {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.success-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.success-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}

.success-step h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.success-step p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.success-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.success-footer a {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {
  .success-card {
    padding: 2.5rem 1.5rem;
  }
  .success-actions .btn {
    width: 100%;
  }
}

/* =========================================
   Task #19 — Menu Packages & Budget Calculator
   ========================================= */

/* Menu section header */
.menu-packages {
  margin-bottom: 3rem;
}

.menu-packages-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.menu-packages-header h3 {
  font-size: 1.5rem;
  margin: 0;
}

.menu-packages-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Package card */
.package-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.package-card:hover {
  border-color: var(--color-border-strong);
  box-shadow: 0 4px 24px -8px rgba(0,0,0,0.08);
}

.package-card.has-quantity {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), 0 8px 30px -10px rgba(31,77,51,0.18);
}

/* Cover image */
.package-cover {
  position: relative;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: var(--color-bg-card);
}

.package-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.package-card:hover .package-cover img {
  transform: scale(1.03);
}

.package-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-accent);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.package-badge--alt {
  color: #B8770E;
}

/* Body */
.package-body {
  padding: 1.75rem;
}

.package-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.package-head h4 {
  font-size: 1.25rem;
  margin: 0 0 0.375rem;
  letter-spacing: -0.01em;
}

.package-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

.package-price {
  flex-shrink: 0;
  text-align: right;
  line-height: 1.1;
}

.price-amount {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  display: block;
}

.price-unit {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Meta tags */
.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.package-tag {
  font-size: 0.8125rem;
  padding: 0.375rem 0.75rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Expand button */
.package-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 0;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: opacity 0.2s ease;
}

.package-expand-btn:hover {
  opacity: 0.7;
}

.package-expand-btn svg {
  transition: transform 0.25s ease;
}

.package-card.is-expanded .package-expand-btn svg {
  transform: rotate(180deg);
}

/* Package items (collapsed by default) */
.package-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, margin 0.25s ease;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.package-card.is-expanded .package-items {
  max-height: 3000px;
  margin: 0.5rem 0 1.5rem;
  padding: 1.25rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.package-item {
  display: flex;
  gap: 0.875rem;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  transition: background 0.15s ease;
}

.package-item:hover {
  background: rgba(255,255,255,0.6);
}

.package-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.package-item-info {
  min-width: 0;
  flex: 1;
}

.package-item-info h5 {
  font-size: 0.9375rem;
  margin: 0 0 0.25rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.005em;
}

.package-item-info p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 0;
}

/* Item tags */
.item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.375rem;
}

.item-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.item-tag--veg { background: #E7F4EA; color: #1F4D33; }
.item-tag--gf { background: #F4EEE7; color: #8A5A1F; }
.item-tag--hot { background: #FBEAEA; color: #9E2424; }
.item-tag--cold { background: #E7F0F6; color: #2A5D7B; }
.item-tag--chef { background: #FBF1DD; color: #8A5A0E; }
.item-tag--incl { background: #EAE7F6; color: #4A3A8A; }

/* Package footer (qty picker + subtotal) */
.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.qty-control {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.qty-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qty-picker {
  display: inline-flex;
  align-items: center;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.qty-btn:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-input {
  width: 60px;
  height: 40px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  outline: none;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.package-subtotal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.subtotal-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.subtotal-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.package-card.has-quantity .subtotal-amount {
  color: var(--color-accent);
}

/* =========================================
   Budget Card (right sidebar, sticky)
   ========================================= */
.budget-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 16px 40px -16px rgba(0,0,0,0.12);
}

.budget-head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.budget-head-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.budget-head h3 {
  font-size: 1.0625rem;
  margin: 0;
  line-height: 1.3;
}

.budget-head p {
  margin: 0.125rem 0 0;
}

/* Empty state */
.budget-empty {
  padding: 2rem 0.5rem;
  text-align: center;
  color: var(--color-text-muted);
}

.budget-empty svg {
  color: var(--color-text-subtle);
  margin-bottom: 0.75rem;
}

.budget-empty p {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.375rem;
}

.budget-empty small {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  display: block;
}

/* Line items */
.budget-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.budget-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--color-border);
}

.budget-line:last-child {
  border-bottom: none;
}

.budget-line-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.budget-line-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
}

.budget-line-meta {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.budget-line-amount {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

/* Total */
.budget-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-accent-soft);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.budget-total-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.budget-total-sub {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.budget-total-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* CTAs */
.budget-cta {
  margin-bottom: 0.625rem;
}

.budget-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--color-border-strong);
}

.budget-cta:disabled:hover {
  background: var(--color-border-strong);
}

.budget-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.35);
}

.budget-wa:hover {
  background: rgba(37, 211, 102, 0.08);
  border-color: #25D366;
}

/* Trust footer */
.budget-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.budget-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.budget-meta-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* =========================================
   Quote Form Section (below menu)
   ========================================= */
.quote-section {
  padding: 4rem 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  margin-top: 3rem;
}

.quote-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 24px 60px -20px rgba(0,0,0,0.1);
}

.quote-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--color-border);
}

.quote-header h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.875rem);
  margin: 0.5rem 0 0;
}

.quote-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quote-form .form-group {
  margin-bottom: 1.25rem;
}

/* Summary box inside form */
.quote-summary {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.75rem 0;
  min-height: 72px;
}

.quote-summary-empty {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
  padding: 0.75rem 0;
}

.quote-summary-head {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.quote-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--color-text);
  border-bottom: 1px dashed var(--color-border);
}

.quote-summary-line:last-of-type {
  border-bottom: none;
}

.quote-summary-line .muted {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.quote-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 2px solid var(--color-border);
  font-size: 1rem;
  font-weight: 600;
}

.quote-summary-total strong {
  color: var(--color-accent);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* =========================================
   Mobile sticky budget bar
   ========================================= */
.mobile-budget-bar {
  display: none;
}

@media (max-width: 1024px) {
  .budget-card {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-budget-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.875rem 1rem;
    background: #fff;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -8px 24px -8px rgba(0,0,0,0.12);
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .mobile-budget-bar[hidden] {
    display: none;
  }
  .mobile-budget-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .mobile-budget-amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: -0.02em;
  }
  .mobile-budget-bar .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  body {
    padding-bottom: 80px;
  }
}

/* Mobile menu tweaks */
@media (max-width: 640px) {
  .package-items {
    grid-template-columns: 1fr;
  }
  .package-body {
    padding: 1.25rem;
  }
  .package-head {
    flex-direction: column;
    gap: 0.5rem;
  }
  .package-price {
    text-align: left;
  }
  .package-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .package-subtotal {
    align-items: flex-start;
  }
  .quote-wrapper {
    padding: 1.75rem 1.25rem;
  }
  .quote-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* =========================================================
   ============ HOME · SERVICE CATEGORIES (5 cards) =========
   ========================================================= */
.section-services {
  background: #fff;
  padding: 5rem 0 4rem;
}
.section-services .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-services .section-sub {
  max-width: 620px;
  margin: 0.875rem auto 0;
  color: #5a5a5a;
  font-size: 1rem;
  line-height: 1.55;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0,0,0,.12);
  border-color: rgba(31,77,51,.3);
}
.service-card-img {
  position: relative;
  padding-top: 72%;
  background-size: cover;
  background-position: center;
  background-color: #EEE9DF;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,.35) 100%);
}
.service-card-emoji {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.5rem;
  background: rgba(255,255,255,.95);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  z-index: 1;
}
.service-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.service-card-body h3 {
  margin: 0;
  font-size: 1.125rem;
  color: #1F4D33;
  font-weight: 600;
}
.service-card-body p {
  margin: 0;
  color: #5a5a5a;
  font-size: 0.875rem;
  line-height: 1.5;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #1F4D33;
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  transition: gap .2s;
}
.service-card:hover .service-card-link { gap: 0.625rem; }
.service-card-link svg { transition: transform .2s; }
.service-card:hover .service-card-link svg { transform: translateX(2px); }

@media (max-width: 640px) {
  .section-services { padding: 3.5rem 0 2.5rem; }
  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .service-card-body { padding: 1rem; }
  .service-card-body h3 { font-size: 1rem; }
  .service-card-body p { font-size: 0.8125rem; }
  .service-card-emoji {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
}

/* =========================================================
   ============== CATERERLAR.HTML (v2) ====================
   Service categories · Filters · City picker · Firm cards
   ========================================================= */

/* --- Service category tabs bar --- */
.service-tabs-bar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: sticky;
  top: 64px;
  z-index: 40;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.service-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.75rem 0;
  scroll-snap-type: x proximity;
}
.service-tabs::-webkit-scrollbar { display: none; }
.service-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  background: #F5F3EE;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #3a3a3a;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: all .2s ease;
}
.service-tab:hover {
  background: #EEE9DF;
  transform: translateY(-1px);
}
.service-tab.active {
  background: #1F4D33;
  color: #fff;
  border-color: #1F4D33;
  box-shadow: 0 6px 18px rgba(31,77,51,.22);
}
.service-tab-icon {
  font-size: 1.125rem;
  line-height: 1;
}

/* --- Filter page header --- */
.filter-page-header {
  background: #FAFAF7;
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.fph-top h1 {
  font-size: 2rem;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}
.fph-top .muted {
  margin: 0 0 1.5rem;
  font-size: 1rem;
}

/* Quick filters row */
.quick-filters {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 0.375rem 0.375rem 0.375rem 1rem;
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
  max-width: 900px;
}
.quick-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: transparent;
  border: none;
  padding: 0.5rem 0.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #1F4D33;
  cursor: pointer;
  border-radius: 999px;
  transition: background .15s;
  min-width: 0;
  flex-shrink: 0;
}
.quick-filter-btn:hover { background: #F5F3EE; }
.quick-filter-label {
  font-weight: 600;
  color: #1F4D33;
}
.quick-filter-value {
  color: #5a5a5a;
  font-weight: 400;
}
.quick-filter-divider {
  width: 1px;
  height: 28px;
  background: rgba(0,0,0,.08);
  flex-shrink: 0;
}
.search-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.search-wrapper .search-icon {
  position: absolute;
  left: 0.75rem;
  color: #9a9a9a;
  pointer-events: none;
}
.search-input {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.625rem 0.75rem 0.625rem 2.375rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #222;
  outline: none;
}
.search-input::placeholder { color: #9a9a9a; }
.filter-more-btn {
  position: relative;
  display: none !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem !important;
}
.filter-count-badge {
  background: #E8A630;
  color: #fff;
  border-radius: 999px;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.25rem;
}

/* --- Filter layout --- */
.filter-layout {
  padding: 2rem 0 5rem;
  background: #fff;
}
.filter-layout-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

/* --- Filter sidebar --- */
.filter-sidebar {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 1.5rem;
  position: sticky;
  top: 140px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
}
.filter-sidebar-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.filter-sidebar-header h3 { margin: 0; font-size: 1.125rem; }
.filter-close {
  background: none;
  border: none;
  color: #1F4D33;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  border-radius: 8px;
}
.filter-close:hover { background: #F5F3EE; }

.filter-group {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.filter-group:first-of-type { padding-top: 0; }
.filter-group:last-of-type { border-bottom: none; padding-bottom: 0.5rem; }
.filter-group-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.875rem;
}
.filter-group-head > span:first-child {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1F4D33;
}
.filter-group-hint {
  font-size: 0.8125rem;
  color: #8a8a8a;
  font-weight: 500;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  background: #F5F3EE;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.8125rem;
  color: #3a3a3a;
  cursor: pointer;
  transition: all .15s ease;
  user-select: none;
}
.filter-chip:hover {
  background: #EEE9DF;
  border-color: rgba(31,77,51,.2);
}
.filter-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.filter-chip:has(input:checked) {
  background: #1F4D33;
  color: #fff;
  border-color: #1F4D33;
}
.filter-chips--price .filter-chip {
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Range slider */
.filter-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: #E8E4DB;
  border-radius: 999px;
  outline: none;
  margin: 0.5rem 0;
}
.filter-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #1F4D33;
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.filter-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #1F4D33;
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.filter-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #8a8a8a;
}

.filter-sidebar-footer {
  padding-top: 1.25rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.filter-apply { display: none; }

/* Demo notice on dynamically-loaded firma pages */
.demo-notice {
  margin: 1rem 0 1.5rem;
  padding: 0.75rem 1rem;
  background: #FDF2DD;
  border: 1px solid #F5C66E;
  border-radius: 10px;
  color: #6B4F1A;
  font-size: 0.875rem;
  line-height: 1.5;
}
.demo-notice strong { display: block; margin-bottom: 0.125rem; color: #4D3812; }
.demo-notice a { color: #1F4D33; font-weight: 600; }

/* ==========================================================================
   FILTER SIDEBAR V2 — sticky head, presets, accordion groups
   ========================================================================== */
.filter-sidebar.v2 {
  padding: 0;
  display: flex;
  flex-direction: column;
  /* Override base padding so subsections fill edge-to-edge.
     Keep overflow-y:auto from base so the sticky head/footer inside
     stick within the sidebar's own scroll context. */
}
.filter-sidebar.v2 .fs-stickyhead {
  position: sticky; top: 0; z-index: 6;
  background: linear-gradient(180deg, #fff 0%, #fff 80%, rgba(255,255,255,0.96) 100%);
  padding: 1rem 1.25rem 0.875rem;
  border-bottom: 1px solid #F0EDE5;
}
.fs-head-row { display: flex; justify-content: space-between; align-items: center; }
.fs-head-row h3 { margin: 0; font-size: 1rem; font-weight: 700; color: #1F2D20; letter-spacing: -0.01em; }
.fs-result-pill {
  display: flex; align-items: baseline; gap: 0.375rem;
  margin-top: 0.625rem;
}
.fs-result-pill strong {
  font-size: 1.5rem;
  color: #1F4D33;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.fs-result-pill > span {
  font-size: 0.8125rem;
  color: #6B7568;
}
.fs-clear-all {
  margin-left: auto;
  font-size: 0.8125rem;
  color: #C0392B;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.fs-clear-all:hover { background: #FDEAEA; border-color: #F5C6C6; }

/* --- Presets row --- */
.fs-presets {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #F0EDE5;
  background: #FBF9F4;
}
.fs-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #6B7568;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.625rem;
}
.fs-preset-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.fs-preset-chip {
  background: #fff;
  border: 1px solid #E6DFCF;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1F2D20;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.fs-preset-chip:hover {
  background: #1F4D33;
  color: #fff;
  border-color: #1F4D33;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(31,77,51,0.15);
}
.fs-preset-chip.is-active {
  background: #E8A630;
  border-color: #E8A630;
  color: #fff;
  box-shadow: 0 4px 10px rgba(232,166,48,0.3);
}

/* --- Accordion groups --- */
.fs-group { border-bottom: 1px solid #F0EDE5; transition: opacity .2s ease; }
.fs-group:last-of-type { border-bottom: 0; }
.fs-group > summary {
  list-style: none;
  padding: 0.875rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0.625rem;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: background 0.12s ease;
}
.fs-group > summary::-webkit-details-marker,
.fs-group > summary::marker { display: none; content: ''; }
.fs-group > summary:hover { background: #FBF9F4; }
.fs-group-icon { font-size: 1rem; line-height: 1; }
.fs-group-title { font-size: 0.9375rem; font-weight: 600; color: #1F2D20; }
.fs-group-count {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.125rem 0.4375rem;
  background: #1F4D33;
  color: #fff;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
  display: none;
  line-height: 1.4;
}
.fs-group-count.is-on { display: inline-block; }
.fs-group-chev {
  color: #B8B098;
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 0.18s ease;
  line-height: 0.8;
  width: 14px;
  text-align: center;
}
.fs-group[open] > summary .fs-group-chev { transform: rotate(90deg); color: #1F4D33; }
.fs-group-body { padding: 0 1.25rem 1.125rem; }

/* --- Cuisine subcategories --- */
.fs-cuisine-cat + .fs-cuisine-cat { margin-top: 0.875rem; }
.fs-cat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #8B8676;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

/* --- Price segment grid (richer than chips) --- */
.fs-price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.fs-price-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.625rem 0.75rem;
  background: #FBF9F4;
  border: 1.5px solid #EEE8DC;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}
.fs-price-cell input { position: absolute; opacity: 0; pointer-events: none; }
.fs-price-cell:hover { border-color: #B8B098; background: #fff; }
.fs-price-cell:has(input:checked) {
  background: #1F4D33;
  border-color: #1F4D33;
  color: #fff;
  box-shadow: 0 4px 12px rgba(31,77,51,0.18);
}
.fs-price-mark {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1F4D33;
  letter-spacing: 0.02em;
}
.fs-price-cell:has(input:checked) .fs-price-mark { color: #E8A630; }
.fs-price-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6B7568;
}
.fs-price-cell:has(input:checked) .fs-price-name { color: rgba(255,255,255,0.85); }

/* --- Range slider header --- */
.fs-range-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
.fs-range-label { font-size: 0.8125rem; color: #6B7568; }
.fs-range-display { font-size: 0.875rem; font-weight: 700; color: #1F4D33; }

/* --- Sticky footer apply/clear --- */
.fs-sticky-footer {
  position: sticky; bottom: 0;
  background: #fff;
  padding: 0.75rem 1rem;
  border-top: 1px solid #F0EDE5;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  z-index: 5;
}
.fs-sticky-footer .filter-apply {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.fs-apply-num {
  background: rgba(255,255,255,0.22);
  padding: 0.0625rem 0.4375rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
}
/* On desktop the apply button is redundant — only its sticky position helps
   anchor reset. Hide the apply on wide screens, keep visible on mobile. */
@media (min-width: 1025px) {
  .fs-sticky-footer { grid-template-columns: 1fr; padding: 0.625rem 1rem; }
  .fs-sticky-footer .filter-apply { display: none !important; }
}

/* --- Results column --- */
.filter-results { min-width: 0; }
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.results-count {
  font-size: 1rem;
  color: #3a3a3a;
  display: block;
  margin-bottom: 0.5rem;
}
.results-count strong {
  color: #1F4D33;
  font-weight: 700;
}
.active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.active-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.625rem 0.3rem 0.75rem;
  background: #F5F3EE;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: #3a3a3a;
}
.active-chip button {
  background: none;
  border: none;
  color: #7a7a7a;
  cursor: pointer;
  padding: 0;
  display: flex;
  border-radius: 50%;
  transition: color .15s;
}
.active-chip button:hover { color: #1F4D33; }
.active-chip-clear-all {
  background: transparent;
  border: none;
  color: #1F4D33;
  font-weight: 600;
  font-size: 0.8125rem;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  text-decoration: underline;
}

.sort-select {
  padding: 0.5rem 2.25rem 0.5rem 0.875rem;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 10px;
  background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231F4D33'%3E%3Cpath d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E") no-repeat right 0.625rem center/16px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #1F4D33;
  cursor: pointer;
  appearance: none;
  outline: none;
  transition: border-color .15s;
}
.sort-select:hover { border-color: #1F4D33; }

/* --- Firm cards grid --- */
.firm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.firm-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all .25s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
}
.firm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  border-color: rgba(31,77,51,.2);
}
.firm-card--featured {
  border: 1.5px solid #E8A630;
  box-shadow: 0 8px 24px rgba(232,166,48,.12);
}
.firm-card--featured::before {
  content: 'Öne çıkan';
  position: absolute;
  top: 12px;
  left: 12px;
  background: #E8A630;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(232,166,48,.4);
}

.firm-card-img {
  position: relative;
  width: 100%;
  padding-top: 62%;
  background-size: cover;
  background-position: center;
  background-color: #F5F3EE;
}
.firm-sponsored {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 0.6875rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.firm-card-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,.95);
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1F4D33;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.firm-card-rating svg { color: #E8A630; }

.firm-card-body {
  padding: 1.125rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.firm-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}
.firm-card-head h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1F4D33;
  line-height: 1.3;
}
.firm-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.firm-badge--pro {
  background: rgba(31,77,51,.1);
  color: #1F4D33;
}

.firm-card-tagline {
  margin: 0;
  font-size: 0.875rem;
  color: #5a5a5a;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.firm-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #7a7a7a;
  margin-top: 0.25rem;
}
.firm-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.firm-card-loc { font-weight: 500; color: #3a3a3a; }
.firm-card-price { color: #1F4D33; font-weight: 600; }
.firm-card-foot {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #7a7a7a;
}
.firm-card-reviews { font-weight: 500; }
.firm-card-min { color: #1F4D33; font-weight: 500; }

/* --- Empty state --- */
.empty-state {
  text-align: center;
  padding: 4rem 1.5rem;
  background: #FAFAF7;
  border-radius: 16px;
  border: 1px dashed rgba(0,0,0,.12);
  color: #5a5a5a;
}
.empty-state svg {
  color: #1F4D33;
  opacity: 0.35;
  margin-bottom: 1rem;
}
.empty-state h3 {
  margin: 0 0 0.5rem;
  color: #1F4D33;
  font-size: 1.25rem;
}
.empty-state p {
  margin: 0 auto 1.25rem;
  max-width: 380px;
}

/* =========================================================
   --- CITY PICKER MODAL (Airbnb style) ---
   ========================================================= */
.city-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  animation: fadeIn .2s ease;
}
.city-modal[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.city-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,30,22,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.city-modal-panel {
  position: relative;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  max-height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.25);
  animation: slideUp .25s ease;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.city-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 1.75rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.city-modal-header h2 {
  margin: 0 0 0.25rem;
  font-size: 1.375rem;
  color: #1F4D33;
}
.city-modal-close {
  background: #F5F3EE;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1F4D33;
  transition: background .15s;
  flex-shrink: 0;
}
.city-modal-close:hover { background: #EEE9DF; }

.city-modal-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  margin: 1rem 1.75rem 0;
  background: #F5F3EE;
  border-radius: 12px;
  border: 1.5px solid transparent;
  transition: border-color .15s;
}
.city-modal-search:focus-within {
  background: #fff;
  border-color: #1F4D33;
}
.city-modal-search svg { color: #1F4D33; flex-shrink: 0; }
.city-modal-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #222;
  outline: none;
}
.city-modal-search input::placeholder { color: #9a9a9a; }

.city-modal-tabs {
  display: flex;
  gap: 0.25rem;
  padding: 1rem 1.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.cm-tab {
  background: none;
  border: none;
  padding: 0.625rem 1rem 0.875rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #5a5a5a;
  cursor: pointer;
  position: relative;
  transition: color .15s;
}
.cm-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  border-radius: 2px 2px 0 0;
  transition: background .15s;
}
.cm-tab:hover { color: #1F4D33; }
.cm-tab.active {
  color: #1F4D33;
  font-weight: 600;
}
.cm-tab.active::after { background: #1F4D33; }

.city-modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.75rem 1.5rem;
}
.cm-panel { display: none; }
.cm-panel.active { display: block; }
.cm-hint {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Popular cities grid */
.popular-cities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.popular-city-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  transition: all .2s ease;
  font-family: inherit;
}
.popular-city-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.1);
  border-color: #1F4D33;
}
.pc-img {
  width: 100%;
  padding-top: 66%;
  background-size: cover;
  background-position: center;
  background-color: #EEE9DF;
}
.pc-body {
  padding: 0.75rem 0.875rem;
}
.pc-name {
  font-weight: 600;
  color: #1F4D33;
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
}
.pc-meta {
  font-size: 0.75rem;
  color: #7a7a7a;
}

/* Regions (details/summary accordion) */
.regions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.region-details {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  overflow: hidden;
  transition: background .15s;
}
.region-details[open] { background: #FAFAF7; }
.region-details summary {
  padding: 0.875rem 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #1F4D33;
  font-size: 0.9375rem;
}
.region-details summary::-webkit-details-marker { display: none; }
.region-details summary::after {
  content: '⌄';
  font-size: 1.25rem;
  color: #1F4D33;
  transition: transform .2s;
  transform: rotate(0deg);
  margin-left: 0.5rem;
}
.region-details[open] summary::after { transform: rotate(180deg); }
.region-count {
  font-weight: 500;
  color: #8a8a8a;
  font-size: 0.8125rem;
  margin-left: auto;
  margin-right: 0.5rem;
}
.region-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1rem 1rem;
}
.city-pill {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 0.4rem 0.875rem;
  font-size: 0.8125rem;
  color: #3a3a3a;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
}
.city-pill:hover {
  background: #1F4D33;
  color: #fff;
  border-color: #1F4D33;
}

/* All A-Z */
.all-cities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem;
}
.all-cities .city-pill {
  text-align: left;
}

/* District panel overlay */
.district-panel {
  position: absolute;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  animation: slideInRight .25s ease;
  z-index: 2;
}
@keyframes slideInRight {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.district-back {
  padding: 1rem 1.75rem 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.district-back button {
  background: none;
  border: none;
  color: #1F4D33;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.25rem;
  text-decoration: none;
}
.district-back button:hover { text-decoration: underline; }
.district-head {
  padding: 1rem 1.75rem 0.5rem;
}
.district-head h3 {
  margin: 0 0 0.25rem;
  font-size: 1.375rem;
  color: #1F4D33;
}
.district-all {
  margin: 0.5rem 1.75rem 1rem !important;
  width: calc(100% - 3.5rem) !important;
}
.district-grid {
  flex: 1;
  overflow-y: auto;
  padding: 0 1.75rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.4rem;
  align-content: start;
}
.district-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  background: #F5F3EE;
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-size: 0.8125rem;
  color: #3a3a3a;
  cursor: pointer;
  user-select: none;
  transition: all .15s;
}
.district-pill:hover {
  background: #EEE9DF;
  border-color: rgba(31,77,51,.2);
}
.district-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.district-pill:has(input:checked) {
  background: #1F4D33;
  color: #fff;
  border-color: #1F4D33;
  font-weight: 500;
}
.district-footer {
  padding: 1rem 1.75rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,.06);
  background: #fff;
}

/* =========================================================
   --- Responsive (catererlar v2) ---
   ========================================================= */
@media (max-width: 1024px) {
  .filter-layout-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .filter-sidebar {
    position: fixed;
    inset: 0;
    z-index: 90;
    max-height: 100vh;
    border-radius: 0;
    border: none;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .28s ease;
    padding: 1.25rem 1.25rem 6rem;
  }
  .filter-sidebar.is-open { transform: translateX(0); }
  .filter-sidebar-header { display: flex; }
  .filter-apply { display: block; }
  .filter-sidebar-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 1rem 0 0.25rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(0,0,0,.08);
  }
  .filter-more-btn { display: inline-flex !important; }

  .service-tabs-bar { top: 56px; }
  .fph-top h1 { font-size: 1.5rem; }
  .quick-filters {
    flex-wrap: wrap;
    border-radius: 16px;
    padding: 0.5rem;
  }
  .quick-filter-btn {
    flex: 1;
    min-width: 120px;
    justify-content: flex-start;
  }
  .quick-filter-divider { display: none; }
  .search-wrapper {
    flex-basis: 100%;
    background: #F5F3EE;
    border-radius: 10px;
    padding-left: 0.25rem;
  }
  .filter-more-btn { flex-shrink: 0; }
}

@media (max-width: 640px) {
  .service-tab {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
  }
  .filter-page-header { padding: 1.5rem 0 1rem; }
  .firm-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .results-header {
    flex-direction: column;
    align-items: stretch;
  }
  .sort-select { width: 100%; }
  .city-modal { padding: 0; }
  .city-modal-panel {
    max-height: 100vh;
    border-radius: 0;
    height: 100%;
    max-width: 100%;
  }
  .city-modal-header { padding: 1rem 1.25rem 0.75rem; }
  .city-modal-search { margin: 0.75rem 1.25rem 0; }
  .city-modal-tabs { padding: 0.75rem 1.25rem 0; }
  .city-modal-content { padding: 1rem 1.25rem 1.25rem; }
  .popular-cities { grid-template-columns: repeat(2, 1fr); }
  .all-cities { grid-template-columns: repeat(2, 1fr); }
  .district-grid { grid-template-columns: repeat(2, 1fr); padding: 0 1.25rem 1rem; }
  .district-back { padding: 0.75rem 1.25rem 0.25rem; }
  .district-head { padding: 0.5rem 1.25rem 0.25rem; }
  .district-all { margin: 0.25rem 1.25rem 0.75rem !important; width: calc(100% - 2.5rem) !important; }
  .district-footer { padding: 0.75rem 1.25rem 1rem; }
  .quick-filters { max-width: 100%; }
  .quick-filter-btn { min-height: 44px; font-size: 0.875rem; }
  .filter-more-btn { min-height: 44px; }
}
@media (max-width: 480px) {
  .quick-filter-label { display: none; }
}

/* =========================================================
   ============== FIYATLAR.HTML — Pricing Page =============
   ========================================================= */

/* --- Hero --- */
.pricing-hero {
  background: linear-gradient(180deg, #FAFAF7 0%, #fff 100%);
  padding: 5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,166,48,.1) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-hero .eyebrow { margin-bottom: 0.75rem; }
.pricing-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: #1F4D33;
}
.pricing-hero .lead {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: #5a5a5a;
  font-size: 1.0625rem;
  line-height: 1.55;
}

/* --- Billing toggle --- */
.billing-toggle {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.375rem;
  background: #F5F3EE;
  border-radius: 999px;
  position: relative;
  z-index: 1;
}
.billing-option {
  background: transparent;
  border: none;
  padding: 0.625rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #5a5a5a;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.billing-option.active {
  background: #fff;
  color: #1F4D33;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.billing-badge {
  background: #E8A630;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- Pricing grid + cards --- */
.pricing-section {
  padding: 3rem 0 5rem;
  background: #fff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing-card {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0,0,0,.1);
}
.pricing-card--featured {
  border: 2px solid #1F4D33;
  box-shadow: 0 24px 56px rgba(31,77,51,.18);
  z-index: 2;
}
.pricing-card--featured:hover { transform: translateY(-4px); }


.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #1F4D33;
  color: #fff;
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(31,77,51,.25);
}


.pricing-card-head { margin-bottom: 1.25rem; }
.pricing-tier {
  margin: 0 0 0.375rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1F4D33;
}

.pricing-desc {
  margin: 0;
  font-size: 0.875rem;
  color: #5a5a5a;
  line-height: 1.5;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-bottom: 0.25rem;
}
.pricing-price-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F4D33;
  letter-spacing: -0.02em;
}

.pricing-price-period {
  font-size: 0.9375rem;
  color: #8a8a8a;
}
.pricing-annual-hint {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: #5a5a5a;
  min-height: 1.2em;
}
.pricing-btn { margin: 1.25rem 0 1.5rem; }


.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #3a3a3a;
  line-height: 1.45;
}
.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #1F4D33;
}
.pricing-features li.disabled {
  color: #b5b5b5;
}
.pricing-features li.disabled svg { color: #b5b5b5; }
.pricing-features .feature-group {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,.06);
  font-size: 0.8125rem;
  color: #1F4D33;
}


.pricing-footnote {
  text-align: center;
  color: #7a7a7a;
  font-size: 0.875rem;
  margin: 2.5rem 0 0;
}

.pricing-trial-note {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  text-align: center;
}
.pricing-trial-note strong { color: var(--color-accent); }

.pricing-social-proof {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0.5rem 0 1rem;
  padding: 0.5rem 0.75rem;
  background: rgba(31,77,51,0.06);
  border-radius: 6px;
  line-height: 1.5;
}
.pricing-social-proof strong { color: var(--color-accent); }

/* --- Boosts grid --- */
.boosts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.boost-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: all .25s ease;
  position: relative;
}
.boost-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
  border-color: rgba(31,77,51,.2);
}
.boost-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  width: 56px;
  height: 56px;
  background: #F5F3EE;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.boost-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: #1F4D33;
  font-weight: 600;
}
.boost-card p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #5a5a5a;
  line-height: 1.5;
}
.boost-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F4D33;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
.boost-price span {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #8a8a8a;
}

/* --- Comparison table --- */
.compare-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.compare-table th,
.compare-table td {
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.compare-table th {
  background: #FAFAF7;
  font-weight: 600;
  color: #1F4D33;
  position: sticky;
  top: 0;
  font-size: 1rem;
}
.compare-table th.highlight {
  background: #1F4D33;
  color: #fff;
  position: relative;
}
.compare-table th.highlight::after {
  content: 'Önerilen';
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #E8A630;
  margin-top: 2px;
}
.compare-table td.highlight {
  background: rgba(31,77,51,.04);
  font-weight: 500;
  color: #1F4D33;
}
.compare-table tr.compare-group td {
  background: #F5F3EE;
  font-weight: 600;
  color: #1F4D33;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.625rem 1.25rem;
}
.compare-table tr.compare-foot td {
  padding: 1rem;
  background: #FAFAF7;
}
.compare-table tr.compare-foot td:first-child { background: #FAFAF7; }
.compare-table tbody tr:last-child td { border-bottom: none; }

/* Sticky first column — fiyatlar.html (.compare-wrapper scope) */
.compare-wrapper .compare-table td:first-child {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 1;
  box-shadow: 2px 0 6px rgba(0,0,0,0.06);
}
.compare-wrapper .compare-table th:first-child {
  left: 0;
  z-index: 3;
}
.compare-wrapper .compare-table tr.compare-group td:first-child { background: #F5F3EE; }
.compare-wrapper .compare-table tr.compare-foot td:first-child { background: #FAFAF7; }

/* --- CTA pricing --- */
.cta-banner-pricing {
  background: linear-gradient(135deg, #1F4D33 0%, #2d6644 100%);
  color: #fff;
  border-radius: 24px;
  padding: 3rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 24px 60px rgba(31,77,51,.25);
}
.cta-banner-pricing h2 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.cta-banner-pricing p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  max-width: 480px;
}
.cta-banner-pricing .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.cta-banner-pricing .btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}
.cta-banner-pricing .btn-primary {
  background: #E8A630;
  color: #1F4D33;
  border-color: #E8A630;
}
.cta-banner-pricing .btn-primary:hover {
  background: #f5c056;
  transform: translateY(-1px);
}
.cta-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* --- Responsive fiyatlar.html --- */
@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .cta-banner-pricing {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .cta-banner-pricing p { margin: 0 auto; }
  .cta-banner-actions { width: 100%; flex-direction: column; }
  .cta-banner-actions .btn { width: 100%; }
}
@media (max-width: 640px) {
  .pricing-hero { padding: 3rem 0 2rem; }
  .pricing-section { padding: 2rem 0 3rem; }
  .pricing-card { padding: 1.75rem 1.25rem 1.25rem; }
  .pricing-price-num { font-size: 2rem; }
  .billing-toggle { font-size: 0.875rem; }
  .billing-option { padding: 0.5rem 1rem; }
  .cta-banner-pricing h2 { font-size: 1.375rem; }
}

/* ==========================================================================
   KAYIT.HTML v2 — firmanı kaydet sayfası (yenilenmiş tasarım)
   ========================================================================== */

/* --- HERO: dark photo + overlay (readable white text) --- */
.kayit-hero {
  position: relative;
  padding: 6rem 0 5rem;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.kayit-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.kayit-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kayit-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 77, 51, 0.72) 0%, rgba(15, 40, 27, 0.85) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.35) 100%);
}
.kayit-hero-inner {
  position: relative;
  max-width: 820px;
}
.kayit-hero-eyebrow {
  color: #E8A630;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
}
.kayit-hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}
.kayit-hero h1 .underline-accent {
  position: relative;
  display: inline-block;
  color: #fff;
  white-space: nowrap;
}
.kayit-hero h1 .underline-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: #E8A630;
  border-radius: 3px;
  opacity: 0.85;
}
.kayit-hero p.lead {
  color: rgba(255,255,255,0.92);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 0 2rem;
}
.kayit-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.kayit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
.kayit-badge svg {
  color: #E8A630;
  flex-shrink: 0;
}
.kayit-hero-cta {
  margin-top: 0.5rem;
}

/* --- BENEFITS refined --- */
.benefits-refined-v2 {
  padding: 3rem 0 2rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.benefit-card-v2 {
  background: #fff;
  border: 1px solid #E9E6DE;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: all 0.2s ease;
}
.benefit-card-v2:hover {
  border-color: #1F4D33;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31,77,51,0.08);
}
.benefit-icon-v2 {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #E8F0EA 0%, #F0F5F1 100%);
  color: #1F4D33;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.benefit-icon-v2 svg { width: 24px; height: 24px; }
.benefit-card-v2 h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
  color: #1A1A1A;
}
.benefit-card-v2 p {
  color: #5C5C5C;
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}

/* --- STICKY PROGRESS BAR --- */
.kayit-progress-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid #E9E6DE;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.kayit-progress-inner {
  padding: 0.875rem 0;
}
.progress-steps {
  display: flex;
  gap: 0.375rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.progress-steps::-webkit-scrollbar { display: none; }
.progress-step {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9375rem;
  border: 1px solid #E9E6DE;
  border-radius: 999px;
  background: #FAFAF7;
  color: #6E6E6E;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  font-family: inherit;
}
.progress-step span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E9E6DE;
  color: #6E6E6E;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.18s ease;
}
.progress-step:hover {
  border-color: #1F4D33;
  color: #1F4D33;
}
.progress-step.active {
  border-color: #1F4D33;
  background: #1F4D33;
  color: #fff;
}
.progress-step.active span {
  background: #E8A630;
  color: #1F4D33;
}

/* --- FORM WRAPPER v2 --- */
.signup-form-wrapper-v2 {
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.signup-form-wrapper-v2 .signup-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.signup-form-wrapper-v2 .signup-form-header h2 {
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin: 0.5rem 0;
}
.signup-form-v2 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-section-v2 {
  background: #fff;
  border: 1px solid #E9E6DE;
  border-radius: 20px;
  padding: 2rem 2rem 1.75rem;
  scroll-margin-top: 80px;
  transition: border-color 0.2s ease;
}
.form-section-v2:hover {
  border-color: #D6D2C6;
}
.form-section-v2 .form-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #F0EDE5;
}
.form-section-v2 .form-section-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #1F4D33;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}
.form-section-v2 .form-section-header h4 {
  margin: 0 0 0.25rem;
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1A1A1A;
}
.form-section-v2 .muted-small {
  font-size: 0.875rem;
  color: #8A8A8A;
  font-weight: 400;
}
.req {
  color: #C0392B;
  font-weight: 700;
}
.form-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #8A8A8A;
  line-height: 1.45;
}

/* --- SERVICE CHECK GRID --- */
.service-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.service-check {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 1rem 1rem 1rem 1rem;
  border: 1.5px solid #E9E6DE;
  border-radius: 12px;
  background: #FDFCF9;
  cursor: pointer;
  transition: all 0.18s ease;
}
.service-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.service-check > div {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex: 1;
}
.service-check-emoji {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-check strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1A1A1A;
  letter-spacing: -0.005em;
}
.service-check small {
  font-size: 0.8125rem;
  color: #7C7C7C;
  line-height: 1.4;
}
.service-check:hover {
  border-color: #B8B3A3;
  background: #fff;
}
.service-check:has(input:checked) {
  border-color: #1F4D33;
  background: #F0F5F1;
  box-shadow: 0 0 0 4px rgba(31,77,51,0.06);
}
.service-check:has(input:checked) strong { color: #1F4D33; }

/* --- MENU PACKAGES --- */
.menu-packages-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  background: #FFF7E6;
  border: 1px solid #F3DCA4;
  border-radius: 12px;
  color: #7A5B0F;
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.menu-packages-hint svg {
  flex-shrink: 0;
  color: #C28A12;
  margin-top: 2px;
}
.menu-packages-hint strong { color: #5E4609; }

.menu-package-card {
  border: 1.5px solid #E9E6DE;
  border-radius: 16px;
  padding: 1.5rem 1.25rem 1.25rem;
  margin-bottom: 1rem;
  background: #FDFCF9;
  transition: all 0.2s ease;
}
.menu-package-card:hover {
  border-color: #D6D2C6;
  background: #fff;
}
.menu-package-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.125rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed #E9E6DE;
}
.menu-package-head h5 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1F4D33;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.menu-package-remove {
  background: transparent;
  border: 0;
  color: #C0392B;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
}
.menu-package-remove:hover { background: #FDECEA; }
.menu-package-remove[hidden] { display: none; }
.menu-package-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.menu-package-upload {
  width: 100%;
}
.menu-package-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.menu-package-fields .form-group {
  margin: 0;
}
.menu-package-add {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.875rem 1rem;
  border: 1.5px dashed #C4BFB0;
  background: transparent;
  color: #1F4D33;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: inherit;
  font-size: 0.9375rem;
}
.menu-package-add:hover:not(:disabled) {
  border-color: #1F4D33;
  background: #F0F5F1;
}
.menu-package-add:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- PHOTO UPLOAD (single, per menu package) --- */
.file-input-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.photo-upload-label {
  display: block;
  cursor: pointer;
}
.photo-upload-preview {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border: 1.5px dashed #C4BFB0;
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  color: #8A8A8A;
  text-align: center;
  padding: 1rem;
  transition: all 0.18s ease;
  overflow: hidden;
}
.photo-upload-preview svg { color: #B8B3A3; }
.photo-upload-preview span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #5C5C5C;
}
.photo-upload-preview small {
  font-size: 0.75rem;
  color: #A0A0A0;
}
.photo-upload-label:hover .photo-upload-preview {
  border-color: #1F4D33;
  background: #F0F5F1;
}
.photo-upload-preview.has-image {
  border-style: solid;
  border-color: #1F4D33;
  padding: 0;
}
.photo-upload-preview.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-preview-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
}
.photo-preview-remove:hover { background: #C0392B; }

/* --- GALLERY DROPZONE + PREVIEW --- */
.gallery-dropzone {
  display: block;
  cursor: pointer;
  border: 2px dashed #C4BFB0;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  background: #FDFCF9;
  transition: all 0.2s ease;
  margin-bottom: 1rem;
}
.gallery-dropzone:hover {
  border-color: #1F4D33;
  background: #F0F5F1;
}
.gallery-dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  text-align: center;
}
.gallery-dropzone-icon {
  color: #1F4D33;
  margin-bottom: 0.5rem;
}
.gallery-dropzone strong {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1A1A1A;
}
.gallery-dropzone span {
  font-size: 0.875rem;
  color: #7C7C7C;
}
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.625rem;
}
.gallery-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #F0EDE5;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-tile-num {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* --- PAKET RADIO GRID (final step) --- */
.paket-radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  margin-bottom: 0.75rem;
}
.paket-radio-card {
  position: relative;
  cursor: pointer;
  display: block;
}
.paket-radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.paket-radio-inner {
  border: 1.5px solid #E9E6DE;
  border-radius: 14px;
  padding: 1.25rem 1.125rem 1.125rem;
  background: #FDFCF9;
  transition: all 0.2s ease;
  height: 100%;
}
.paket-radio-card:hover .paket-radio-inner {
  border-color: #B8B3A3;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.paket-radio-card:has(input:checked) .paket-radio-inner {
  border-color: #1F4D33;
  background: #F0F5F1;
  box-shadow: 0 0 0 4px rgba(31,77,51,0.08);
}
.paket-radio-card--featured:has(input:checked) .paket-radio-inner {
  border-color: #E8A630;
  background: #FFF8E8;
  box-shadow: 0 0 0 4px rgba(232,166,48,0.12);
}

.paket-radio-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.875rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed #E9E6DE;
}

.paket-radio-head strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1F4D33;
  letter-spacing: -0.01em;
}
.paket-radio-price {
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A1A;
}
.paket-radio-price small {
  font-size: 0.75rem;
  font-weight: 500;
  color: #8A8A8A;
}

.paket-radio-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.paket-radio-inner ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.8125rem;
  color: #5C5C5C;
  line-height: 1.45;
}
.paket-radio-inner ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #1F4D33;
  font-weight: 700;
}
.paket-tag {
  position: absolute;
  top: -10px;
  right: 12px;
  background: #E8A630;
  color: #1F4D33;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  z-index: 2;
}


/* --- Paket Section Extras --- */
.paket-section { margin-bottom: 1.5rem; }
.paket-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}
.paket-social-proof {
  font-size: 0.8125rem;
  color: #A06000;
  background: #FFF8E8;
  border: 1px solid #F0D890;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.875rem;
}
.paket-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.paket-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.paket-feature-row svg {
  flex-shrink: 0;
  color: #E8A630;
  margin-top: 1px;
}
.paket-feature-row strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
}
.paket-feature-row span {
  display: block;
  font-size: 0.75rem;
  color: #6A6A6A;
  line-height: 1.4;
  margin-top: 0.1rem;
}
.paket-upgrade-note {
  font-size: 0.8125rem;
  color: #8A8A8A;
  text-align: center;
  margin-top: 0.625rem;
}

/* --- BIG SUBMIT BUTTON --- */
.btn-submit-big {
  padding: 1.125rem 2rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-top: 1rem;
  box-shadow: 0 6px 20px rgba(31,77,51,0.22);
  transition: all 0.2s ease;
}
.btn-submit-big:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(31,77,51,0.3);
}

/* --- RESPONSIVE kayit.html v2 --- */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .menu-package-body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .menu-package-upload { max-width: 240px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .kayit-hero { padding: 4rem 0 3rem; }
  .kayit-hero h1 { font-size: 2rem; }
  .kayit-hero p.lead { font-size: 1rem; }
  .kayit-hero-badges { gap: 0.375rem; }
  .kayit-badge { font-size: 0.8125rem; padding: 0.375rem 0.75rem; }
  .progress-step { font-size: 0.8125rem; padding: 0.4375rem 0.75rem; }
  .progress-step span { width: 20px; height: 20px; font-size: 0.6875rem; }
  .form-section-v2 { padding: 1.5rem 1.125rem 1.25rem; border-radius: 16px; }
  .form-section-v2 .form-section-header h4 { font-size: 1.0625rem; }
  .service-check-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-packages-hint { font-size: 0.875rem; padding: 0.875rem 1rem; }
  .gallery-dropzone { padding: 2rem 1rem; }
  .signup-form-wrapper-v2 .signup-form-header h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .paket-radio-grid { grid-template-columns: 1fr; }
  .progress-step { font-size: 0; padding: 0.3rem; gap: 0; }
  .progress-step span { font-size: 0.75rem; }
}

/* ==========================================================================
   SERVICE RAIL (homepage primary — scrollable, like cat-rail but with cards)
   ========================================================================== */
.service-rail-wrapper {
  position: relative;
  margin-top: 2rem;
}
.service-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.75rem 0.25rem 1.5rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.service-rail::-webkit-scrollbar { display: none; }

.service-rail-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #E9E6DE;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.service-rail-card:hover {
  border-color: #1F4D33;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31,77,51,0.14);
}
.service-rail-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.service-rail-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.25) 100%);
}
.service-rail-emoji {
  position: absolute;
  bottom: 0.875rem;
  left: 0.875rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.service-rail-body {
  padding: 1.125rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.service-rail-body h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1A1A1A;
  letter-spacing: -0.01em;
}
.service-rail-body p {
  margin: 0;
  font-size: 0.875rem;
  color: #5C5C5C;
  line-height: 1.5;
  flex: 1;
}
.service-rail-link {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #1F4D33;
  font-weight: 600;
  font-size: 0.875rem;
}
.service-rail-card:hover .service-rail-link { gap: 0.5rem; }
.service-rail-link svg { transition: transform 0.2s ease; }
.service-rail-card:hover .service-rail-link svg { transform: translateX(2px); }

/* Service rail fades use white background (vs cream in cat-rail) */
.service-rail-wrapper .cat-rail-fade--left {
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.service-rail-wrapper .cat-rail-fade--right {
  background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}
.service-rail-wrapper .cat-rail-fade {
  top: 0.75rem;
  bottom: 1.5rem;
}

@media (max-width: 640px) {
  .service-rail-card { flex: 0 0 280px; }
  .service-rail-body h3 { font-size: 1rem; }
  .service-rail-body p { font-size: 0.8125rem; }
}

/* ==========================================================================
   AUTH PAGE v2 — Netlify Identity improvements
   ========================================================================== */

/* Move social login to top */
.auth-social-top {
  margin-bottom: 1rem;
}

/* Error & success banners */
.auth-error,
.auth-success {
  padding: 0.875rem 1rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.auth-error {
  background: #FDECEA;
  color: #8B1A0F;
  border: 1px solid #F5C6C0;
}
.auth-success {
  background: #EAF7EE;
  color: #1F4D33;
  border: 1px solid #BEE2C9;
}
.auth-success strong { display: block; margin-bottom: 0.25rem; }

/* Password input with show/hide toggle */
.password-input-wrapper {
  position: relative;
}
.password-input-wrapper input {
  padding-right: 2.75rem;
}
.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  padding: 0.375rem;
  cursor: pointer;
  color: #8A8A8A;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, background 0.15s ease;
}
.password-toggle:hover {
  color: #1F4D33;
  background: #F0F5F1;
}

/* Password strength meter */
.password-strength {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.5rem;
}
.password-strength-bar {
  flex: 1;
  height: 5px;
  background: #E9E6DE;
  border-radius: 999px;
  overflow: hidden;
}
.password-strength-fill {
  height: 100%;
  width: 0;
  background: #C0392B;
  border-radius: 999px;
  transition: width 0.25s ease, background 0.25s ease;
}
.password-strength-label {
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 72px;
  text-align: right;
}

/* Submit button loading spinner */
.btn-spinner {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
}
.btn-spinner svg {
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.spin { animation: spin 0.8s linear infinite; }

/* ==========================================================================
   HESABIM — Account dashboard
   ========================================================================== */
.account-loading {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account-loading-inner {
  text-align: center;
}
.account-loading-inner p {
  margin-top: 1rem;
  color: #6E6E6E;
}

.account-hero {
  background: linear-gradient(135deg, #1F4D33 0%, #2a6a46 100%);
  color: #fff;
  padding: 3rem 0 2.5rem;
}
.account-hero-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.account-hero .eyebrow {
  color: #E8A630;
  margin-bottom: 0.375rem;
}
.account-hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.25rem;
  letter-spacing: -0.01em;
}
.account-hero .muted {
  color: rgba(255,255,255,0.75);
  margin: 0;
  font-size: 0.9375rem;
}
.account-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #E8A630;
  color: #1F4D33;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.875rem;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Stats grid */
.account-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -1.75rem;
  position: relative;
  z-index: 2;
}
.account-stat-card {
  background: #fff;
  border: 1px solid #E9E6DE;
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.account-stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.account-stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1F4D33;
  letter-spacing: -0.02em;
}
.account-stat-label {
  font-size: 0.8125rem;
  color: #7C7C7C;
  margin-top: 0.125rem;
}

/* Dashboard grid */
.account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.account-card {
  background: #fff;
  border: 1px solid #E9E6DE;
  border-radius: 16px;
  overflow: hidden;
}
.account-card-wide {
  grid-column: 1 / -1;
}
.account-card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #F0EDE5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.account-card-header h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1A1A1A;
  letter-spacing: -0.01em;
}
.account-card-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: #F0EDE5;
  color: #7C7C7C;
}
.account-card-badge--ok {
  background: #EAF7EE;
  color: #1F4D33;
}
.account-card-badge--warn {
  background: #FFF7E6;
  color: #C28A12;
}
.account-card-body {
  padding: 1rem 1.5rem 1.25rem;
}
.account-card-footer {
  padding: 0.875rem 1.5rem 1.25rem;
  border-top: 1px solid #F0EDE5;
  background: #FDFCF9;
}

/* Profile info rows */
.account-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0;
  border-bottom: 1px solid #F5F3EE;
  gap: 1rem;
}
.account-info-row:last-child { border-bottom: 0; }
.account-info-label {
  font-size: 0.8125rem;
  color: #7C7C7C;
  font-weight: 500;
}
.account-info-value {
  font-size: 0.9375rem;
  color: #1A1A1A;
  font-weight: 500;
  text-align: right;
}

/* Action list */
.account-action {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
  margin: 0 -0.25rem;
}
.account-action:hover {
  background: #F0F5F1;
}
.account-action-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F0F5F1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}
.account-action > div {
  flex: 1;
  min-width: 0;
}
.account-action strong {
  display: block;
  font-size: 0.9375rem;
  color: #1A1A1A;
  font-weight: 600;
  margin-bottom: 0.125rem;
}
.account-action p {
  margin: 0;
  font-size: 0.8125rem;
  color: #7C7C7C;
  line-height: 1.4;
}
.account-action svg {
  flex-shrink: 0;
  color: #B8B3A3;
}

/* Empty state */
.account-empty {
  text-align: center;
  padding: 2rem 1rem 1rem;
}
.account-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.account-empty p {
  margin: 0 0 0.5rem;
}
.account-empty .btn {
  margin-top: 1rem;
}

/* Nav CTA when logged in */
.nav-cta #btn-logout {
  cursor: pointer;
  font-family: inherit;
}

/* Responsive */
@media (max-width: 768px) {
  .account-stats-grid { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: 1fr; }
  .account-hero-inner { gap: 1rem; }
  .account-avatar { width: 56px; height: 56px; font-size: 1.5rem; }
  .account-hero h1 { font-size: 1.5rem; }
}

/* ==========================================================================
   NAV USER DROPDOWN — logged in state
   ========================================================================== */
.nav-user-wrapper {
  position: relative;
}
.nav-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid #E9E6DE;
  border-radius: 999px;
  padding: 0.375rem 0.75rem 0.375rem 0.375rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1A1A1A;
  transition: all 0.15s ease;
}
.nav-user-btn:hover {
  border-color: #1F4D33;
  background: #F0F5F1;
}
.nav-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1F4D33;
  color: #E8A630;
  font-weight: 700;
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-user-name {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-user-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #E9E6DE;
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.nav-user-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  color: #1A1A1A;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  text-align: left;
  transition: background 0.12s ease;
}
.nav-user-item:hover {
  background: #F0F5F1;
  color: #1F4D33;
}
.nav-user-item svg {
  color: #7C7C7C;
  flex-shrink: 0;
}
.nav-user-item:hover svg { color: #1F4D33; }
.nav-user-item-danger { color: #C0392B; }
.nav-user-item-danger:hover { background: #FDECEA; color: #8B1A0F; }
.nav-user-item-danger:hover svg { color: #8B1A0F; }
.nav-user-divider {
  height: 1px;
  background: #F0EDE5;
  margin: 0.25rem 0;
}

@media (max-width: 640px) {
  .nav-user-name { display: none; }
  .nav-user-btn { padding: 0.375rem; }
}

/* ==========================================================================
   ACCOUNT V2 — hesabim.html (yeni tasarım)
   ========================================================================== */

.account-v2 { background: #FBF9F4; min-height: 100vh; padding-bottom: 4rem; }

/* ---------- HERO ---------- */
.acc-hero {
  position: relative;
  padding: 2.75rem 0 2.5rem;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.acc-hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(135deg, #1F4D33 0%, #1A4029 100%);
}
/* Subtle decorative glow — not a blurry orb anymore */
.acc-hero-orb {
  position: absolute; z-index: -1;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.18;
  pointer-events: none;
}
.acc-hero-orb-1 { top: -160px; right: -120px; background: #E8A630; }
.acc-hero-orb-2 { display: none; }

.acc-hero-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.75rem;
  align-items: center;
}

.acc-avatar-wrap {
  position: relative;
  width: 88px; height: 88px;
  flex-shrink: 0;
}
/* Static refined ring — no more spin */
.acc-avatar-ring {
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8A630 0%, #F5C66E 100%);
  opacity: 1;
}
.acc-avatar {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #fff;
  color: #1F4D33;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 2rem;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  letter-spacing: -0.02em;
}
.acc-avatar-dot {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 14px; height: 14px;
  background: #3FB68B;
  border: 3px solid #1F4D33;
  border-radius: 50%;
  z-index: 2;
}

.acc-hero-text { min-width: 0; }
.acc-greeting {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.125rem;
  letter-spacing: 0.01em;
}
.acc-hero-text h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.acc-hero-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.5rem;
  flex-wrap: wrap;
}
.acc-hero-meta .dot-sep { color: rgba(255, 255, 255, 0.35); }
.acc-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 540px;
  line-height: 1.5;
}

.acc-hero-actions {
  display: flex;
  gap: 0.625rem;
  align-self: center;
}

.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  font-family: inherit;
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-1px);
}

/* ---------- PROFILE COMPLETION STRIP ---------- */
.pc-strip {
  padding: 1.5rem 0;
  background: #fff;
  border-bottom: 1px solid #EEE8DC;
}
.pc-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 2rem;
  align-items: center;
}
.pc-meta { min-width: 0; }
.pc-title {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
  margin-bottom: 0.75rem;
}
.pc-title strong {
  font-size: 1rem;
  font-weight: 700;
  color: #1F2D20;
}
.pc-title strong span { color: #1F4D33; }
.pc-sub {
  font-size: 0.85rem;
  color: #6B7568;
  font-weight: 400;
}
.pc-bar {
  height: 8px;
  background: #F0EDE5;
  border-radius: 999px;
  overflow: hidden;
}
.pc-fill {
  height: 100%;
  background: linear-gradient(90deg, #1F4D33 0%, #3FB68B 50%, #E8A630 100%);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pc-steps {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.pc-step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: #F5F1E8;
  border: 1px solid #E6DFCF;
  border-radius: 999px;
  font-size: 0.8125rem;
  color: #1F2D20;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.pc-step:hover {
  background: #1F4D33;
  border-color: #1F4D33;
  color: #fff;
  transform: translateY(-1px);
}
.pc-step:hover .pc-step-check {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.pc-step-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px dashed #B8B098;
  color: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
}
.pc-step-chev { opacity: 0.6; }

/* ---------- STATS V2 ---------- */
.stats-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.stat-v2 {
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid #EEE8DC;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.stat-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.stat-v2--fav::before { background: linear-gradient(90deg, #E74C6C, #FF8BA0); }
.stat-v2--evt::before { background: linear-gradient(90deg, #1F4D33, #3FB68B); }
.stat-v2--rec::before { background: linear-gradient(90deg, #E8A630, #F5C66E); }
.stat-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(31, 77, 51, 0.12);
  border-color: transparent;
}
.stat-v2:hover::before { opacity: 1; }

.stat-v2-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
}
.stat-v2-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.stat-v2--fav .stat-v2-icon { background: #FCEAEE; color: #E74C6C; }
.stat-v2--evt .stat-v2-icon { background: #E8F4ED; color: #1F4D33; }
.stat-v2--rec .stat-v2-icon { background: #FDF2DD; color: #C08623; }
.stat-v2-chev {
  color: #B8B098;
  font-size: 1.125rem;
  transition: transform 0.2s ease;
}
.stat-v2:hover .stat-v2-chev { transform: translateX(3px); color: #1F4D33; }
.stat-v2-num {
  font-size: 2rem;
  font-weight: 800;
  color: #1F2D20;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-v2-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1F2D20;
  margin-bottom: 0.25rem;
}
.stat-v2-hint {
  font-size: 0.8125rem;
  color: #6B7568;
}

/* ---------- MAIN GRID ---------- */
.acc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 1.5rem;
  margin-top: 1rem;
}

.acc-main, .acc-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

/* ---------- ACCOUNT CARDS ---------- */
.acc-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #EEE8DC;
  overflow: hidden;
}
.acc-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #F3EEDF;
}
.acc-card-head h3 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1F2D20;
  letter-spacing: -0.01em;
}
.acc-card-head .muted-sm {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: #6B7568;
  line-height: 1.4;
}
.acc-card-body { padding: 1.25rem 1.5rem; }

.acc-icon-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid #EEE8DC;
  background: #FBF9F4;
  color: #1F2D20;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}
.acc-icon-btn:hover {
  background: #1F4D33;
  border-color: #1F4D33;
  color: #fff;
}

/* ---------- INFO LIST ---------- */
.acc-info-list { padding: 0.5rem 1.5rem; }
.acc-info-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid #F5F1E8;
}
.acc-info-row:last-child { border-bottom: 0; }
.acc-info-label {
  font-size: 0.8125rem;
  color: #6B7568;
  font-weight: 500;
}
.acc-info-val {
  font-size: 0.875rem;
  color: #1F2D20;
  font-weight: 600;
  text-align: right;
  word-break: break-word;
  max-width: 60%;
}

.verified-chip {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
}
.verified-chip--ok { background: #E8F4ED; color: #1F4D33; }
.verified-chip--warn { background: #FDF2DD; color: #9C6914; }

/* ---------- PREFERENCES VIEW ---------- */
.pref-block { margin-bottom: 1.25rem; }
.pref-block:last-child { margin-bottom: 0; }
.pref-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6B7568;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.pref-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.chip-soft {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: #F0F6F2;
  color: #1F4D33;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
}
.pref-empty {
  font-size: 0.8125rem;
  color: #B8B098;
  font-style: italic;
}

/* ---------- SETTINGS LIST ---------- */
.acc-settings-list { padding: 0.5rem; }
.acc-set-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.875rem;
  align-items: center;
  padding: 0.875rem 1rem;
  border: 0;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  text-decoration: none;
  color: inherit;
  width: 100%;
  transition: background 0.15s ease;
}
.acc-set-row:hover { background: #FBF9F4; }
.acc-set-row + .acc-set-row { margin-top: 0.125rem; }
.acc-set-ico {
  width: 36px; height: 36px;
  background: #F5F1E8;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.acc-set-txt {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.acc-set-txt strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1F2D20;
}
.acc-set-txt span {
  font-size: 0.8125rem;
  color: #6B7568;
}
.acc-set-chev {
  font-size: 1.375rem;
  color: #B8B098;
  font-weight: 400;
}
.acc-set-row--danger .acc-set-ico { background: #FDE4E4; }
.acc-set-row--danger:hover { background: #FDF5F5; }
.acc-set-row--danger strong { color: #C0392B; }

/* ---------- EMPTY STATES ---------- */
.acc-empty {
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #6B7568;
}
.acc-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.acc-empty h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1F2D20;
  margin: 0 0 0.5rem;
}
.acc-empty p {
  font-size: 0.875rem;
  max-width: 460px;
  margin: 0 auto 1.25rem;
  line-height: 1.55;
  color: #6B7568;
}

/* ---------- FIRM MINI CARDS (favorites + recs) ---------- */
.firm-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.firm-mini {
  background: #fff;
  border: 1px solid #EEE8DC;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.firm-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(31, 77, 51, 0.1);
  border-color: #E6DFCF;
}
.firm-mini-img {
  position: relative;
  display: block;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: #F5F1E8;
}
.firm-mini-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.firm-mini:hover .firm-mini-img img { transform: scale(1.05); }
.firm-fav-btn {
  position: absolute;
  top: 0.625rem; right: 0.625rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #6B7568;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.15s ease;
  z-index: 2;
}
.firm-fav-btn:hover { color: #E74C6C; transform: scale(1.1); }
.firm-fav-btn--on,
.firm-fav-btn.is-fav { color: #E74C6C; }
.firm-fav-btn.is-fav svg { fill: #E74C6C; stroke: #E74C6C; }

.firm-mini-body {
  padding: 0.875rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}
.firm-mini-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}
.firm-mini-top h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1F2D20;
  line-height: 1.3;
}
.firm-mini-top h4 a {
  color: inherit;
  text-decoration: none;
}
.firm-mini-top h4 a:hover { color: #1F4D33; }
.firm-mini-rating {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #C08623;
  white-space: nowrap;
}
.firm-mini-meta {
  font-size: 0.8125rem;
  color: #6B7568;
}
.firm-mini-tags {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.firm-mini-tags span {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  background: #F5F1E8;
  color: #6B7568;
  border-radius: 6px;
}
.firm-mini-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.btn-icon-ghost {
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid #EEE8DC;
  border-radius: 8px;
  color: #6B7568;
  cursor: pointer;
  font-size: 0.95rem;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
  font-family: inherit;
}
.btn-icon-ghost:hover {
  background: #FDF5F5;
  border-color: #E74C6C;
  color: #E74C6C;
}

/* ---------- EVENT LIST ---------- */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.event-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 0.875rem 1rem;
  background: #FBF9F4;
  border: 1px solid #EEE8DC;
  border-radius: 12px;
  transition: all 0.15s ease;
}
.event-row:hover {
  background: #fff;
  border-color: #D9E5DE;
  transform: translateX(3px);
}
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid #E6DFCF;
  border-radius: 10px;
  padding: 0.375rem 0.75rem;
  min-width: 52px;
}
.event-day {
  font-size: 1.375rem;
  font-weight: 800;
  color: #1F4D33;
  line-height: 1;
}
.event-mon {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6B7568;
  letter-spacing: 0.04em;
  margin-top: 0.125rem;
}
.event-info { min-width: 0; }
.event-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1F2D20;
  line-height: 1.3;
  margin-bottom: 0.125rem;
}
.event-meta {
  font-size: 0.8125rem;
  color: #6B7568;
}
.event-countdown {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1F4D33;
  padding: 0.375rem 0.625rem;
  background: #E8F4ED;
  border-radius: 8px;
  white-space: nowrap;
}

.muted-sm {
  font-size: 0.8125rem;
  color: #6B7568;
}

/* ---------- MODAL ---------- */
.acc-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.acc-modal[hidden] { display: none !important; }
.acc-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 25, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.acc-modal.is-open .acc-modal-bg { opacity: 1; }
.acc-modal-box {
  position: relative;
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 24px 64px rgba(15, 42, 25, 0.3);
  transform: scale(0.96) translateY(12px);
  opacity: 0;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}
.acc-modal-box--wide { max-width: 640px; }
.acc-modal.is-open .acc-modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.acc-modal-box h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1F2D20;
  letter-spacing: -0.01em;
}
.acc-modal-box > .muted-sm {
  margin-bottom: 1.5rem;
  color: #6B7568;
}
.acc-modal-close {
  position: absolute;
  top: 0.875rem; right: 0.875rem;
  width: 36px; height: 36px;
  background: #F5F1E8;
  border: 0;
  border-radius: 10px;
  color: #6B7568;
  font-size: 1.5rem;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
}
.acc-modal-close:hover { background: #1F4D33; color: #fff; }

/* ---------- ACCOUNT FORMS ---------- */
.acc-form .form-group { margin-bottom: 1.125rem; }
.acc-form .form-group:last-of-type { margin-bottom: 0; }
.acc-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1F2D20;
  margin-bottom: 0.5rem;
}
.acc-form .optional {
  font-weight: 400;
  color: #B8B098;
  font-size: 0.75rem;
}
.acc-form input[type="text"],
.acc-form input[type="tel"],
.acc-form input[type="email"],
.acc-form input[type="number"],
.acc-form input[type="date"],
.acc-form select {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1.5px solid #E6DFCF;
  border-radius: 10px;
  background: #FBF9F4;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #1F2D20;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.acc-form input:focus,
.acc-form select:focus {
  outline: none;
  border-color: #1F4D33;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 77, 51, 0.12);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.acc-form-error {
  padding: 0.75rem 1rem;
  background: #FDEAEA;
  border: 1px solid #F5C6C6;
  border-radius: 10px;
  color: #C0392B;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.acc-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.625rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #F3EEDF;
}

/* ---------- CHIP PICKER (prefs modal) ---------- */
.chip-pick {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.chip-pick-item {
  position: relative;
  cursor: pointer;
}
.chip-pick-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.chip-pick-item span {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  background: #FBF9F4;
  border: 1.5px solid #E6DFCF;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1F2D20;
  transition: all 0.15s ease;
  user-select: none;
}
.chip-pick-item:hover span {
  border-color: #B8B098;
  background: #fff;
}
.chip-pick-item input:checked + span {
  background: #1F4D33;
  border-color: #1F4D33;
  color: #fff;
  box-shadow: 0 4px 12px rgba(31, 77, 51, 0.25);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .acc-grid {
    grid-template-columns: 1fr;
  }
  .acc-hero-inner {
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
  }
  .acc-hero-actions {
    grid-column: 1 / -1;
    margin-top: 0.75rem;
  }
  .pc-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pc-steps { justify-content: flex-start; }
  .stats-v2 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .acc-hero { padding: 2rem 0 1.75rem; }
  .acc-avatar-wrap { width: 64px; height: 64px; }
  .acc-avatar { font-size: 1.5rem; }
  .acc-avatar-dot { width: 12px; height: 12px; border-width: 2px; }
  .acc-hero-text h1 { font-size: 1.5rem; }
  .acc-tagline { font-size: 0.875rem; }
  .acc-card-head { padding: 1rem 1.125rem; }
  .acc-card-body { padding: 1rem 1.125rem; }
  .acc-info-list { padding: 0.25rem 1.125rem; }
}

@media (max-width: 640px) {
  .acc-hero { padding: 2rem 0 1.75rem; }
  .acc-avatar-wrap { width: 80px; height: 80px; }
  .acc-avatar { font-size: 1.75rem; }
  .acc-hero-text h1 { font-size: 1.75rem; }
  .acc-tagline { font-size: 0.9375rem; }
  .stats-v2 { grid-template-columns: 1fr; }
  .stat-v2 { padding: 1.25rem; }
  .stat-v2-num { font-size: 1.75rem; }
  .acc-card-head, .acc-card-body, .acc-info-list { padding: 1rem 1.125rem; }
  .acc-modal-box { padding: 1.5rem 1.25rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .event-row {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "date info action" "date meta meta";
  }
  .firm-mini-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   Shared Favorites — heart buttons, badges, toasts
   ============================================================= */

/* Heart button overlay on firm cards (catererlar.html) */
.firm-card-fav {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #555;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  padding: 0;
}
.firm-card-fav svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  transition: fill 0.2s, stroke 0.2s, transform 0.2s;
}
.firm-card-fav:hover {
  background: #fff;
  color: #d8345f;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(216, 52, 95, 0.25);
}
.firm-card-fav.is-fav {
  background: #fff;
  color: #d8345f;
}
.firm-card-fav.is-fav svg {
  fill: #d8345f;
  stroke: #d8345f;
  animation: fav-pop 0.4s ease;
}
@keyframes fav-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.35); }
  70% { transform: scale(0.92); }
  100% { transform: scale(1); }
}

/* Big "Favorilere ekle" button on firma.html hero */
.btn-fav-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: 1.5px solid var(--color-border, #e5e5e5);
  background: #fff;
  color: var(--color-text, #1a1a1a);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-fav-hero svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  transition: fill 0.2s, stroke 0.2s;
}
.btn-fav-hero:hover {
  border-color: #d8345f;
  color: #d8345f;
  background: #fff5f7;
  transform: translateY(-1px);
}
.btn-fav-hero.is-fav {
  background: #fff5f7;
  border-color: #d8345f;
  color: #d8345f;
}
.btn-fav-hero.is-fav svg {
  fill: #d8345f;
  stroke: #d8345f;
  animation: fav-pop 0.4s ease;
}
.btn-fav-hero .fav-label-on { display: none; }
.btn-fav-hero .fav-label-off { display: inline; }
.btn-fav-hero.is-fav .fav-label-on { display: inline; }
.btn-fav-hero.is-fav .fav-label-off { display: none; }

/* Floating mini-toast next to heart button */
.fav-toast {
  position: absolute;
  z-index: 9999;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.fav-toast--show {
  opacity: 1;
  transform: translateY(0);
}
.fav-toast::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1a1a1a;
  border-bottom: 0;
}

/* =============================================================
   Legal pages (KVKK, Gizlilik, Kullanım, Çerez)
   ============================================================= */
.legal-page { padding: 3rem 0 5rem; }
.legal-hero {
  background: linear-gradient(135deg, #f7f5ef 0%, #ffffff 100%);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--color-border, #e5e5e5);
}
.legal-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0.5rem 0 0.75rem;
  color: var(--color-text, #1a1a1a);
}
.legal-hero .legal-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted, #6b7568);
}
.legal-hero .legal-meta strong { color: var(--color-text, #1a1a1a); }

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: #2c2c2c;
}
.legal-content h2 {
  font-size: 1.375rem;
  margin: 2.75rem 0 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid #ececec;
  color: var(--color-text, #1a1a1a);
}
.legal-content h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal-content h3 {
  font-size: 1.0625rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--color-text, #1a1a1a);
}
.legal-content p { margin: 0 0 1rem; }
.legal-content ul, .legal-content ol { margin: 0.5rem 0 1.25rem; padding-left: 1.5rem; }
.legal-content li { margin: 0.4rem 0; }
.legal-content a { color: #1F4D33; font-weight: 500; }
.legal-content strong { color: var(--color-text, #1a1a1a); font-weight: 600; }

.legal-notice {
  background: #fff8e6;
  border: 1px solid #f4d77e;
  border-left: 3px solid #E8A630;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #5a4416;
}
.legal-notice strong { color: #5a4416; }

.legal-toc {
  background: #f7f7f5;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 0 0 2.5rem;
  font-size: 0.9375rem;
}
.legal-toc h4 {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted, #6b7568);
  font-weight: 600;
}
.legal-toc ol { margin: 0; padding-left: 1.25rem; }
.legal-toc li { margin: 0.35rem 0; }
.legal-toc a { color: var(--color-text, #1a1a1a); text-decoration: none; }
.legal-toc a:hover { color: #1F4D33; text-decoration: underline; }

.legal-content .legal-contact-card {
  background: #fff;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
}
.legal-content .legal-contact-card div { margin: 0.4rem 0; }
.legal-content .legal-contact-card .label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted, #6b7568);
}
.legal-content .legal-contact-card .value { font-weight: 500; color: var(--color-text, #1a1a1a); }

/* =============================================================
   Cookie consent banner
   ============================================================= */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 9000;
  max-width: 720px;
  margin: 0 auto;
  background: #1a1a1a;
  color: #fff;
  border-radius: 14px;
  padding: 1.125rem 1.375rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
}
.cookie-banner-text a {
  color: #f4d77e;
  text-decoration: underline;
  font-weight: 500;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cookie-banner-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  white-space: nowrap;
}
.cookie-banner .btn-cookie-accept {
  background: #E8A630;
  color: #1a1a1a;
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.cookie-banner .btn-cookie-accept:hover { background: #f4b850; }
.cookie-banner .btn-cookie-accept:active { transform: scale(0.97); }
.cookie-banner .btn-cookie-link {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.cookie-banner .btn-cookie-link:hover { background: rgba(255, 255, 255, 0.08); }

/* =============================================================
   Form consent checkboxes (KVKK / yasal onay)
   ============================================================= */
.check-inline.check-required {
  position: relative;
  padding-left: 0.5rem;
  margin: 0.625rem 0;
}
.check-inline.check-required > span {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #2c2c2c;
}
.check-inline.check-required a {
  color: #1F4D33;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.check-inline.check-required a:hover {
  color: #2a6845;
}
.check-inline.check-required .req {
  color: #c0392b;
  font-weight: 700;
  margin-left: 0.125rem;
}
.check-inline.check-required input[type="checkbox"]:invalid + span {
  color: #6b3030;
}
.check-inline .muted-small {
  font-size: 0.8125rem;
  color: #6b7568;
  font-weight: 400;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn { flex: 1; text-align: center; justify-content: center; }
}

/* =============================================================
   Landing pages (city / event / service)
   ============================================================= */

/* SEO guide content blocks */
.guide-section { padding: 4rem 0; }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.guide-card {
  background: #fff;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.375rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.guide-card:hover {
  border-color: #1F4D33;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 77, 51, 0.08);
}
.guide-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f3efe6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.guide-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--color-text, #1a1a1a);
}
.guide-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4f5550;
}

/* District / chip rail for landing pages */
.district-rail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}
.district-chip {
  background: #fff;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  color: var(--color-text, #1a1a1a);
  transition: all 0.2s;
}
.district-chip:hover {
  border-color: #1F4D33;
  background: #f7faf8;
  transform: translateY(-1px);
}
.district-chip-name {
  font-weight: 600;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.district-chip-desc {
  font-size: 0.8125rem;
  color: #6b7568;
  line-height: 1.4;
}

/* FAQ accordion (semantic <details>) */
.faq-list { margin-top: 2rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: #1F4D33;
  box-shadow: 0 4px 14px rgba(31, 77, 51, 0.08);
}
.faq-item summary {
  padding: 1.125rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-text, #1a1a1a);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #1F4D33;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #3a3a3a;
}
.faq-item-body p { margin: 0 0 0.75rem; }
.faq-item-body p:last-child { margin-bottom: 0; }

/* =============================================================
   SEO landing pages (city + event + service)
   ============================================================= */
.landing-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  margin-bottom: 0;
}
.landing-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.landing-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landing-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 77, 51, 0.78) 0%, rgba(15, 25, 18, 0.55) 100%);
}
.landing-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 4rem 0;
}
.landing-hero .eyebrow {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}
.landing-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #fff;
}
.landing-hero .lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.75rem;
}
.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.landing-hero-actions .btn-primary {
  background: #E8A630;
  color: #1a1a1a;
  border: 0;
}
.landing-hero-actions .btn-primary:hover { background: #f4b850; }
.landing-hero-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(8px);
}
.landing-hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
}

.landing-quick-stats {
  background: #fff;
  border-bottom: 1px solid #ececec;
  padding: 1.25rem 0;
}
.landing-quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  text-align: center;
}
.landing-quick-stat .num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1F4D33;
  line-height: 1;
}
.landing-quick-stat .label {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: #6b7568;
  letter-spacing: 0.02em;
}

.landing-intro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #2c2c2c;
}
.landing-intro p { margin: 0 0 1rem; }
.landing-intro h2, .landing-intro h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.landing-firms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .landing-firms-grid { grid-template-columns: repeat(3, 1fr); }
}
.landing-empty {
  grid-column: 1 / -1;
  background: #f7f7f5;
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.landing-empty p {
  margin-bottom: 1rem;
  color: #6b7568;
}

.landing-districts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.landing-district-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  background: #f4f1ea;
  color: #1F4D33;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.15s;
}
.landing-district-chip:hover {
  background: #fff;
  border-color: #1F4D33;
}

.landing-guide {
  max-width: 760px;
  margin: 0 auto;
}
.landing-guide-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 1.5rem;
  margin: 1rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.landing-guide-card .num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1F4D33;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
}
.landing-guide-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
}
.landing-guide-card p {
  margin: 0;
  color: #4a4a4a;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ==========================================================================
   KAYIT WIZARD — Airbnb-style multi-step registration
   ========================================================================== */

/* --- Page shell --- */
body.wz-page {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

/* --- Minimal nav --- */
.wz-nav {
  flex-shrink: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  border-bottom: 1px solid var(--color-border);
  background: #fff;
  z-index: 10;
}
.wz-nav-exit {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.wz-nav-exit:hover { color: var(--color-text); }

/* --- Progress bar --- */
.wz-progress {
  flex-shrink: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  background: #fafaf8;
  padding: 0 1rem;
}
.wz-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0 1.25rem;
  position: relative;
}
.wz-stage + .wz-stage::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 1px;
  height: 16px;
  background: var(--color-border);
}
.wz-stage-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.wz-stage--active .wz-stage-label { color: var(--color-accent); }
.wz-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.wz-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  transition: background .25s, transform .2s;
}
.wz-dot--done { background: var(--color-accent); }
.wz-dot--active {
  background: var(--color-accent);
  transform: scale(1.35);
  box-shadow: 0 0 0 3px rgba(31,77,51,.18);
}

/* --- Split body --- */
.wz-body {
  flex: 1;
  display: grid;
  grid-template-columns: 5fr 7fr;
  overflow: hidden;
  min-height: 0;
}

/* --- Left visual panel --- */
.wz-left {
  position: relative;
  overflow: hidden;
}
.wz-left-panel {
  position: absolute;
  inset: 0;
  display: none;
}
.wz-left-panel.is-active { display: flex; flex-direction: column; justify-content: flex-end; }
.wz-left-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wz-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(10,28,18,.72) 100%);
}
.wz-left-text {
  position: relative;
  padding: 2.5rem;
  color: #fff;
}
.wz-left-text h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.625rem;
  color: #fff;
}
.wz-left-text p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  margin: 0;
  max-width: 340px;
}
.wz-left-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 1rem;
}

/* --- Right scrollable panel --- */
.wz-right {
  overflow-y: auto;
  padding: 2.5rem 3rem;
  min-height: 0;
}

/* --- Step content --- */
.wz-step { display: none; }
.wz-step.is-active { display: block; }

.wz-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin: 0 0 0.625rem;
}
.wz-step-q {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.375rem;
  color: #1a1a1a;
  line-height: 1.2;
}
.wz-step-hint {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0 0 1.75rem;
  line-height: 1.5;
}
.wz-field { margin-bottom: 1.25rem; }

/* --- Category card grid (Step 1) --- */
.wz-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.wz-cat-card {
  position: relative;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.125rem 0.875rem;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  min-height: 80px;
  user-select: none;
}
.wz-cat-card:hover { border-color: #9ca3af; }
.wz-cat-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.wz-cat-card:has(input:checked) {
  border-color: #1F4D33;
  background: rgba(31,77,51,.05);
  box-shadow: 0 0 0 1px #1F4D33;
}
.wz-cat-icon {
  color: #374151;
  flex-shrink: 0;
}
.wz-cat-card:has(input:checked) .wz-cat-icon { color: #1F4D33; }
.wz-cat-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.3;
}
.wz-cat-card:has(input:checked) .wz-cat-name { color: #1F4D33; }

/* --- Event card grid (Step 3) --- */
.wz-event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.wz-event-card {
  position: relative;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  padding: 1rem 1.125rem;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  user-select: none;
  min-height: 60px;
}
.wz-event-card:hover { border-color: #9ca3af; }
.wz-event-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.wz-event-card:has(input:checked) {
  border-color: #1F4D33;
  background: rgba(31,77,51,.05);
  box-shadow: 0 0 0 1px #1F4D33;
}
.wz-event-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #374151;
}
.wz-event-card:has(input:checked) .wz-event-name { color: #1F4D33; }

/* --- Price card grid (Step 7) --- */
.wz-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.wz-price-card {
  position: relative;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.25rem 0.75rem;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  text-align: center;
  user-select: none;
}
.wz-price-card:hover { border-color: #9ca3af; }
.wz-price-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.wz-price-card:has(input:checked) {
  border-color: #1F4D33;
  background: rgba(31,77,51,.05);
  box-shadow: 0 0 0 1px #1F4D33;
}
.wz-price-sym {
  font-size: 1.375rem;
  font-weight: 800;
  color: #1F4D33;
  letter-spacing: -0.01em;
}
.wz-price-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
}
.wz-price-hint {
  font-size: 0.725rem;
  color: #9ca3af;
}
.wz-price-card:has(input:checked) .wz-price-name { color: #1F4D33; }

/* --- Draft banner --- */
.wz-draft-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(31,77,51,.07);
  border: 1px solid rgba(31,77,51,.18);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.wz-draft-banner strong { color: #1F4D33; }
.wz-draft-actions { display: flex; gap: 0.5rem; }
.wz-draft-actions button {
  font-size: 0.8125rem;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  font-weight: 600;
}
.wz-draft-continue {
  background: #1F4D33;
  color: #fff;
}
.wz-draft-reset {
  background: transparent;
  border-color: #d1d5db !important;
  color: #6b7280;
}

/* --- Char counter --- */
.wz-charcount {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.375rem;
  display: block;
}
.wz-charcount.is-ok { color: #1F4D33; }

/* --- Preview card wrap (Step 9) --- */
.wz-preview-wrap {
  background: #fafaf8;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.wz-preview-wrap .firm-card {
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.wz-preview-placeholder {
  height: 160px;
  background: #e5e7eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* --- Error messages --- */
.wz-error {
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.wz-error::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  font-weight: 700;
  font-size: 0.6875rem;
  flex-shrink: 0;
}
.wz-submit-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 0.875rem 1rem;
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* --- Sticky footer --- */
.wz-footer {
  flex-shrink: 0;
  height: 72px;
  border-top: 1px solid var(--color-border);
  background: #fff;
  display: flex;
  align-items: center;
  z-index: 5;
}
.wz-footer-inner {
  width: 100%;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#wz-back {
  min-width: 100px;
}
#wz-next {
  min-width: 140px;
}

/* --- Uploading state --- */
.wz-uploading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}
@keyframes wz-spin {
  to { transform: rotate(360deg); }
}
.wz-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #e5e7eb;
  border-top-color: #1F4D33;
  border-radius: 50%;
  animation: wz-spin .7s linear infinite;
  flex-shrink: 0;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  body.wz-page { overflow: auto; height: auto; }
  .wz-body { grid-template-columns: 1fr; height: auto; overflow: visible; }
  .wz-left { display: none; }
  .wz-right { padding: 1.5rem 1.25rem 2rem; overflow: visible; }
  .wz-footer {
    position: sticky;
    bottom: 0;
    height: 64px;
  }
  .wz-footer-inner { padding: 0 1.25rem; }
  .wz-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
  .wz-event-grid { grid-template-columns: 1fr; }
  .wz-price-grid { grid-template-columns: repeat(2, 1fr); }
  .wz-step-q { font-size: 1.375rem; }
  .wz-progress { gap: 0; padding: 0 0.5rem; overflow-x: auto; }
  .wz-stage { padding: 0 0.75rem; }
}

.landing-faq {
  max-width: 760px;
  margin: 0 auto;
}
.landing-faq-item {
  border-bottom: 1px solid #ececec;
  padding: 1.25rem 0;
}
.landing-faq-item:first-child { padding-top: 0; }
.landing-faq-item summary {
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
}
.landing-faq-item summary::-webkit-details-marker { display: none; }
.landing-faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: #6b7568;
  font-weight: 400;
  transition: transform 0.2s;
}
.landing-faq-item[open] summary::after { transform: rotate(45deg); }
.landing-faq-item .answer {
  margin-top: 0.75rem;
  color: #4a4a4a;
  line-height: 1.65;
  font-size: 0.9375rem;
}

.landing-cta-banner {
  background: linear-gradient(135deg, #1F4D33 0%, #2d6549 100%);
  color: #fff;
  border-radius: 18px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.landing-cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 166, 48, 0.18), transparent 70%);
}
.landing-cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  color: #fff;
  position: relative;
}
.landing-cta-banner p {
  margin: 0 auto 1.5rem;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
}
.landing-cta-banner .btn-primary {
  background: #E8A630;
  color: #1a1a1a;
  border: 0;
  position: relative;
}
.landing-cta-banner .btn-primary:hover { background: #f4b850; }

.related-cities, .related-events {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1rem;
}
.related-link {
  padding: 0.5rem 1rem;
  border: 1px solid #ececec;
  border-radius: 999px;
  font-size: 0.875rem;
  color: #1a1a1a;
  text-decoration: none;
  background: #fff;
  transition: all 0.15s;
}
.related-link:hover {
  border-color: #1F4D33;
  color: #1F4D33;
}





/* =============================================================
   Portfolio (kayıt formundaki geçmiş işler bölümü)
   ============================================================= */
.portfolio-section {
  background: #faf9f6;
  border: 1px dashed #d4d0c4;
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.25rem;
  margin-top: 1.25rem;
}
.portfolio-label {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text, #1a1a1a);
  margin-bottom: 0.375rem;
}
.portfolio-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}
.portfolio-item {
  background: #fff;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  padding: 1.25rem 1.25rem 0.75rem;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.portfolio-item:hover { border-color: #1F4D33; box-shadow: 0 4px 14px rgba(31,77,51,0.06); }
.portfolio-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f3efe6;
}
.portfolio-item-head strong {
  color: #1F4D33;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}
.portfolio-remove {
  background: #fff5f5;
  color: #c0392b;
  border: 1px solid #f5cdc6;
  border-radius: 8px;
  padding: 0.25rem 0.625rem;
  font-size: 0.875rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.15s;
}
.portfolio-remove:hover {
  background: #c0392b;
  color: #fff;
  border-color: #c0392b;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
@media (max-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .portfolio-section { padding: 1.125rem; }
}


/* === FILTER 2.4: Empty state actions === */
.empty-state .empty-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}


/* === UX/UI 2.6: Readability & Accessibility Audit === */

/* Subtle text: bumped from #9A9A9A (2.85:1) to #737373 (4.95:1) for WCAG AA */
:root {
  --color-text-subtle: #737373;
}

/* Form inputs: prevent iOS zoom-on-focus, ensure consistent readability */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="password"],
textarea,
select {
  font-size: 16px;
  line-height: 1.5;
}

/* Small text: enforce minimum readable size */
.muted-small,
p.muted-small,
.form-hint,
small {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* Focus-visible: keyboard navigation ring (a11y) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
label:focus-visible,
[role="tab"]:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}
/* Suppress focus ring on mouse click */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Hero/landing heading text-shadow when sitting on imagery */
.hero-overlay h1,
.hero-overlay p,
.landing-hero h1,
.landing-hero p,
.city-hero h1,
.city-hero p {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.32);
}

/* Icon button minimum touch target (44x44 ideal, 40 acceptable) */
.firm-card-fav,
.icon-btn,
.btn-icon,
.filter-close,
.city-modal-close,
.modal-close,
button[aria-label] {
  min-width: 40px;
  min-height: 40px;
}

/* Placeholder: stronger contrast */
::placeholder {
  color: #8B8B8B;
  opacity: 1;
}
:-ms-input-placeholder { color: #8B8B8B; }
::-ms-input-placeholder { color: #8B8B8B; }

/* Selection: brand-aligned & visible */
::selection {
  background: var(--color-accent-soft);
  color: var(--color-text);
}

/* Inline links in body text: visually distinct */
p a:not(.btn):not(.nav-link),
.muted a:not(.btn) {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
p a:not(.btn):not(.nav-link):hover,
.muted a:not(.btn):hover {
  text-decoration-thickness: 2px;
}

/* Form labels: bolder, more readable */
label,
.form-group label {
  font-weight: 500;
  color: var(--color-text);
}

/* Disabled state: clear but accessible */
:disabled,
[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Skip link for screen readers (add via JS or HTML if needed) */
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 6px;
  z-index: 10000;
  font-weight: 600;
}


/* === Aşama 2.3: Service-conditional blocks === */
.service-block {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--color-border);
}
.service-block:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.service-block-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-block-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--color-accent);
  border-radius: 2px;
}


/* === Hero search input — rotating placeholder kontrast === */
.hero-search input::placeholder {
  color: rgba(0, 0, 0, 0.55);
  font-style: italic;
}


/* ============= COMPARE FEATURE ============= */

/* Hero on compare page */
.compare-hero {
  padding: 4rem 0 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
}
.compare-hero h1 { margin-top: 0.75rem; }
.compare-hero .lead { max-width: 580px; margin: 1rem auto 0; }

/* Toolbar */
.compare-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.compare-count {
  font-weight: 500;
  color: var(--color-text);
}

/* Comparison table */
.compare-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}
.compare-table th,
.compare-table td {
  padding: 1rem;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  font-size: 0.9375rem;
}
.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-label-cell {
  font-weight: 600;
  color: var(--color-text-muted);
  width: 180px;
  min-width: 160px;
  background: var(--color-bg-alt);
  font-size: 0.875rem;
  position: sticky;
  left: 0;
  z-index: 2;
  box-shadow: 2px 0 6px rgba(0,0,0,0.06);
}

/* Firm head cell */
.compare-firm-head {
  text-align: left;
  position: relative;
  vertical-align: top;
  min-width: 220px;
}
.compare-firm-img {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  position: relative;
}
.compare-remove {
  position: absolute;
  top: 8px; right: 8px;
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
}
.compare-remove:hover {
  background: rgba(199, 82, 42, 0.9);
}
.compare-firm-name {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--color-text);
}
.compare-rating {
  font-weight: 600;
  color: var(--color-text);
}
.compare-chip {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  border-radius: 4px;
  font-size: 0.8125rem;
  margin: 0.125rem 0.125rem 0.125rem 0;
}
.compare-action {
  text-align: left;
}

/* Empty state large */
.empty-state-large {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 560px;
  margin: 0 auto;
}
.empty-state-large svg {
  color: var(--color-text-subtle);
  margin-bottom: 1rem;
}
.empty-state-large h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.empty-state-large p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.empty-state-large .empty-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============= COMPARE BUTTON ON FIRM CARDS ============= */
.firm-card-compare {
  position: absolute;
  top: 12px; right: 56px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.15s, background 0.15s;
  z-index: 2;
}
.firm-card-compare:hover { transform: scale(1.08); }
.firm-card-compare svg {
  width: 18px; height: 18px;
  stroke: var(--color-text-muted);
  stroke-width: 2;
  fill: none;
}
.firm-card-compare.is-active {
  background: #C7522A;
  color: #fff;
}
.firm-card-compare.is-active svg {
  stroke: #fff;
}

/* ============= STICKY COMPARE BAR ============= */
.er-compare-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  z-index: 90;
  padding: 0.875rem 1.25rem;
  animation: erCompareBarSlide 0.25s ease-out;
}
@keyframes erCompareBarSlide {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.er-compare-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.er-compare-bar-info {
  display: flex;
  flex-direction: column;
  min-width: 130px;
}
.er-compare-bar-info strong {
  font-size: 0.9375rem;
  color: var(--color-text);
}
.er-compare-bar-info .muted-small {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.er-compare-bar-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex: 1;
  min-width: 200px;
}
.er-compare-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.5rem 0.375rem 0.75rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  font-size: 0.8125rem;
  color: var(--color-text);
}
.er-compare-chip button {
  width: 20px; height: 20px;
  background: var(--color-border);
  color: var(--color-text-muted);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1;
}
.er-compare-chip button:hover {
  background: #C7522A;
  color: #fff;
}
.er-compare-bar-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .er-compare-bar-inner {
    gap: 0.5rem;
  }
  .er-compare-bar-info { min-width: 0; flex: 1 1 100%; }
  .er-compare-bar-chips { display: none; }
  .er-compare-bar-actions { margin-left: auto; }
}

/* ============= TOAST ============= */
.er-compare-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-text);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.er-compare-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   ADMIN PANEL (yonetim.html)
   ========================================================================== */
.admin-page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5.5rem 1.25rem 3rem;
}
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.admin-header h1 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin: 0;
}
.admin-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.admin-filter-tabs {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}
.admin-filter-tab {
  padding: 0.4375rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  cursor: pointer;
  transition: all 0.15s;
}
.admin-filter-tab:hover { border-color: var(--color-accent); color: var(--color-text); }
.admin-filter-tab.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.admin-filter-select {
  padding: 0.4375rem 0.875rem;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.8125rem;
  background: #fff;
  color: var(--color-text);
  cursor: pointer;
}
.admin-stats-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.admin-stat-chip {
  padding: 0.375rem 0.875rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: #FFF8E8;
  color: #A06000;
  border: 1px solid #F0D890;
}
.admin-stat-chip.green { background: #F0F5F1; color: #1F4D33; border-color: #B8D4C2; }
.admin-stat-chip.red   { background: #FFF0F0; color: #C0392B; border-color: #F5B7B1; }
.admin-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.admin-card {
  background: #fff;
  border: 1.5px solid #E9E6DE;
  border-radius: 14px;
  padding: 1.25rem 1.375rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: border-color 0.15s;
}
.admin-card:hover { border-color: #C9C5BC; }
.admin-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}
.admin-card-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}
.admin-card-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.admin-status-badge {
  display: inline-block;
  padding: 0.1875rem 0.625rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 0.5rem;
}
.admin-status-badge.pending  { background: #FFF8E8; color: #A06000; border: 1px solid #F0D890; }
.admin-status-badge.approved { background: #F0F5F1; color: #1F4D33; border: 1px solid #B8D4C2; }
.admin-status-badge.rejected { background: #FFF0F0; color: #C0392B; border: 1px solid #F5B7B1; }
.admin-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1rem;
  margin-bottom: 0.75rem;
}
.admin-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.admin-meta-item svg { flex-shrink: 0; }
.admin-card-desc {
  font-size: 0.875rem;
  color: #4A4A4A;
  line-height: 1.55;
  margin-bottom: 0.75rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.admin-card-desc.expanded {
  display: block;
  -webkit-line-clamp: unset;
}
.admin-desc-toggle {
  font-size: 0.8125rem;
  color: var(--color-accent);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  margin-bottom: 0.625rem;
}
.admin-card-photos {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  margin-bottom: 0.875rem;
  padding-bottom: 0.25rem;
}
.admin-photo-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  border: 1px solid #E9E6DE;
  cursor: pointer;
}
.admin-card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.admin-btn-approve,
.admin-btn-reject,
.admin-btn-edit {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  min-height: 36px;
}
.admin-btn-approve { background: #1F4D33; color: #fff; }
.admin-btn-approve:hover { background: #174028; }
.admin-btn-reject { background: #C0392B; color: #fff; }
.admin-btn-reject:hover { background: #A93226; }
.admin-btn-edit { background: var(--color-bg-alt); color: var(--color-text); border: 1.5px solid var(--color-border); }
.admin-btn-edit:hover { border-color: #999; }
.admin-btn-approve:disabled,
.admin-btn-reject:disabled,
.admin-btn-edit:disabled { opacity: 0.5; cursor: not-allowed; }

/* Admin modals */
.admin-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.admin-modal-overlay[hidden] { display: none; }
.admin-modal {
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem;
  width: 100%;
  max-width: 540px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.admin-modal h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--color-text);
}
.admin-modal .form-group { margin-bottom: 1rem; }
.admin-modal label { display: block; font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.375rem; }
.admin-modal input,
.admin-modal textarea,
.admin-modal select {
  width: 100%;
  padding: 0.5625rem 0.875rem;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.875rem;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.admin-modal input:focus,
.admin-modal textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(31,77,51,0.08); }
.admin-modal-actions { display: flex; gap: 0.625rem; justify-content: flex-end; margin-top: 1.25rem; }

/* Toast */
.admin-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #1F4D33;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 400;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.2s ease;
  pointer-events: none;
}
.admin-toast.show { opacity: 1; transform: translateY(0); }
.admin-toast.error { background: #C0392B; }

/* Unauthorized */
.admin-unauthorized {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 1rem;
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

@media (max-width: 640px) {
  .admin-page-wrap { padding-top: 4.5rem; }
  .admin-card { padding: 1rem; }
  .admin-card-actions { flex-direction: column; }
  .admin-btn-approve, .admin-btn-reject, .admin-btn-edit { width: 100%; justify-content: center; }
}

/* ==========================================================================
   HESABIM — Başvurularım
   ========================================================================== */
.app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid #F3EEDF;
}
.app-row:last-child { border-bottom: none; }
.app-info { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.app-info strong { font-size: .9375rem; color: var(--color-text); }
.app-status {
  flex-shrink: 0;
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 999px;
}
.app-status--wait { background: #FEF9C3; color: #854D0E; }
.app-status--ok   { background: #DCFCE7; color: #166534; }
.app-status--err  { background: #FEE2E2; color: #991B1B; }

/* ==========================================================================
   HESABIM — Admin Panel (embedded in account page)
   ========================================================================== */
.hbm-admin-tabs {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  margin: 0 -1.5rem;
  padding: 0 1.5rem;
}
.hbm-admin-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.125rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  margin-bottom: -1px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  transition: color 0.15s;
}
.hbm-admin-tab--active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  font-weight: 600;
}
.hbm-admin-tab:hover:not(.hbm-admin-tab--active) { color: var(--color-text); }

.hbm-admin-badge {
  background: #C0392B;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.hbm-admin-tab-panel { padding: 0; }

.hbm-admin-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.hbm-admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.hbm-admin-table th {
  text-align: left;
  padding: 0.625rem 1rem;
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.hbm-admin-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.hbm-admin-table tr:last-child td { border-bottom: none; }
.hbm-admin-table td a { color: var(--color-text); font-weight: 500; text-decoration: none; }
.hbm-admin-table td a:hover { color: var(--color-accent); }

.hbm-admin-status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.hbm-admin-status--ok   { background: #d1fae5; color: #065f46; }
.hbm-admin-status--wait { background: #fef3c7; color: #92400e; }

.hbm-admin-actions { white-space: nowrap; text-align: right; }

/* Support request cards */
.hbm-support-list { display: flex; flex-direction: column; }
.hbm-support-card {
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.hbm-support-card:last-child { border-bottom: none; }
.hbm-support-card--unread {
  background: #fffbeb;
  border-left: 3px solid #f59e0b;
  padding-left: calc(1.5rem - 3px);
}
.hbm-support-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.625rem;
}
.hbm-support-head strong { display: block; font-weight: 600; color: var(--color-text); font-size: 0.9375rem; }
.hbm-support-email { display: block; font-size: 0.8125rem; color: var(--color-text-muted); margin-top: 0.125rem; }
.hbm-support-konu {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  background: #E8F4ED;
  color: #1F4D33;
  border-radius: 4px;
  margin-top: 0.25rem;
  font-weight: 500;
}
.hbm-support-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-align: right;
  flex-wrap: wrap;
}
.hbm-support-date { font-size: 0.8125rem; color: var(--color-text-muted); white-space: nowrap; }
.hbm-support-msg {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
}

@media (max-width: 640px) {
  .hbm-admin-tabs { margin: 0 -1.125rem; padding: 0 1.125rem; }
  .hbm-admin-table th, .hbm-admin-table td { padding: 0.625rem 0.75rem; }
  .hbm-support-head { flex-direction: column; gap: 0.5rem; }
  .hbm-support-meta { text-align: left; }
}

