/* ═══════════════════════════════════════════════════════════════
   Op. Dr. Vedat Ozan Kliniği — site.css
   Vanilla CSS, mobile-first, BEM-style, 8px spacing scale
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. CSS VARIABLES ──────────────────────────────────────────── */
:root {
  /* Palette */
  --primary:       #1a1340;
  --accent:        #7c3aed;
  --accent-light:  #ede9fe;
  --accent-soft:   #c4b5fd;
  --accent-dark:   #5b21b6;
  --erkek:         #1e3a8a;
  --erkek-light:   #dbeafe;
  --estetik:       #4338ca;
  --estetik-light: #e0e7ff;
  --bg:            #fafaf7;
  --white:         #ffffff;
  --text:          #1a1340;
  --text-muted:    #6b5b95;
  --text-light:    #9ca3af;
  --border:        #ede9fe;
  --border-light:  #f3f4f6;
  --shadow-sm:     0 1px 3px rgba(26,19,64,.06), 0 1px 2px rgba(26,19,64,.04);
  --shadow:        0 4px 16px rgba(26,19,64,.08), 0 2px 6px rgba(26,19,64,.06);
  --shadow-md:     0 8px 32px rgba(26,19,64,.12), 0 4px 12px rgba(26,19,64,.08);
  --shadow-lg:     0 16px 48px rgba(26,19,64,.15), 0 8px 20px rgba(26,19,64,.10);

  /* Spacing scale (8px base) */
  --sp-1:  8px;
  --sp-2:  12px;
  --sp-3:  16px;
  --sp-4:  20px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-8:  48px;
  --sp-10: 64px;

  /* Border radius */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  20px;
  --r-2xl: 24px;
  --r-full: 9999px;

  /* Typography */
  --font:        'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif:  Georgia, 'Times New Roman', serif;

  /* Transitions */
  --t-fast:   0.15s ease;
  --t-base:   0.25s ease;
  --t-slow:   0.4s ease;

  /* Layout */
  --max-w:   1200px;
  --max-w-sm: 800px;
  --header-h: 72px;
  --topbar-h: 40px;
}

/* ── 2. RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

ul { list-style: none; }

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

/* ── 3. ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}

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

/* ── 4. UTILITY CLASSES ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.container--sm {
  max-width: var(--max-w-sm);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

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

/* ── 5. BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 12px var(--sp-5);
  border-radius: var(--r-full);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  transition: all var(--t-base);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(124,58,237,.35);
}
.btn--primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(124,58,237,.45);
  transform: translateY(-1px);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}
.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--accent);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.btn--sm {
  padding: 8px var(--sp-3);
  font-size: .875rem;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

/* ── 6. BADGES ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.4;
}

.badge--accent {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.badge--kadin {
  background: rgba(124,58,237,.12);
  color: var(--accent);
}

.badge--erkek {
  background: rgba(30,58,138,.12);
  color: var(--erkek);
}

.badge--estetik {
  background: rgba(67,56,202,.12);
  color: var(--estetik);
}

.badge--trust {
  background: rgba(16,185,129,.1);
  color: #065f46;
  border: 1px solid rgba(16,185,129,.25);
  font-size: .8125rem;
  padding: 6px 14px;
}

/* ── 7. SECTION STRUCTURE ───────────────────────────────────────── */
.section {
  padding: var(--sp-10) 0;
}

.section--sm {
  padding: var(--sp-8) 0;
}

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

.section--dark {
  background: var(--primary);
  color: var(--white);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-2);
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: var(--sp-3);
}

.section__title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--accent);
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section__header {
  margin-bottom: var(--sp-8);
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__subtitle {
  margin: 0 auto;
}

/* ── 8. TOP BAR ─────────────────────────────────────────────────── */
.topbar {
  display: none;
}

@media (min-width: 768px) {
  .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--topbar-h);
    background: var(--primary);
    color: rgba(255,255,255,.8);
    font-size: .8125rem;
    padding: 0 var(--sp-6);
  }

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

  .topbar__right {
    display: flex;
    align-items: center;
    gap: var(--sp-5);
  }

  .topbar a {
    color: rgba(255,255,255,.9);
    transition: color var(--t-fast);
  }

  .topbar a:hover { color: var(--accent-soft); }

  .topbar .ti { font-size: .875rem; color: var(--accent-soft); }
}

/* ── 9. HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 90px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-3);
  gap: var(--sp-3);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  flex-shrink: 0;
}

.logo__mark {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  box-shadow: 0 4px 12px rgba(124,58,237,.35);
  flex-shrink: 0;
}

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

.logo__name {
  font-size: .9375rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
}

.logo__domain {
  font-size: .6875rem;
  color: var(--text-muted);
  letter-spacing: .02em;
}

/* Desktop nav */
.site-nav {
  display: none;
}

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .site-nav a {
    padding: 8px 14px;
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--r-sm);
    transition: all var(--t-fast);
  }

  .site-nav a:hover,
  .site-nav a.active {
    color: var(--primary);
    background: var(--accent-light);
  }
}

/* Header CTA */
.header__cta {
  display: none;
}

@media (min-width: 1024px) {
  .header__cta {
    display: inline-flex;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--accent-light);
  transition: background var(--t-fast);
  flex-shrink: 0;
}

.hamburger:hover {
  background: var(--accent-soft);
}

.hamburger span {
  display: block;
  height: 2px;
  margin: 0 10px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--t-base);
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

/* ── 10. MOBILE MENU DRAWER ─────────────────────────────────────── */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,19,64,.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.mobile-menu-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
}

.mobile-menu__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  background: var(--border-light);
  color: var(--text-muted);
  font-size: 1.25rem;
  transition: all var(--t-fast);
}

.mobile-menu__close:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.mobile-menu__nav {
  flex: 1;
  padding: var(--sp-3) 0;
  overflow-y: auto;
}

.mobile-menu__nav a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 14px var(--sp-5);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-left: 3px solid transparent;
  transition: all var(--t-fast);
}

.mobile-menu__nav a:hover {
  color: var(--accent);
  border-left-color: var(--accent);
  background: var(--accent-light);
}

.mobile-menu__nav a .ti {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.mobile-menu__footer {
  padding: var(--sp-4) var(--sp-5);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.mobile-menu__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-muted);
}

.mobile-menu__contact-item .ti {
  color: var(--accent);
  font-size: 1rem;
}

/* ── 11. HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--sp-10) 0;
  background: var(--bg);
  min-height: 600px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .hero {
    min-height: 700px;
    padding: 96px 0 80px;
  }
}

/* Decorative blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero__blob--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero__blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196,181,253,.25) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
  animation-delay: -4s;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-3);
  display: grid;
  gap: var(--sp-8);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__content {
  animation: fadeInUp .6s ease both;
}

.hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--sp-4);
  animation: fadeInUp .5s ease both;
}

.hero__trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,.2);
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: var(--sp-4);
  animation: fadeInUp .6s .1s ease both;
}

.hero__title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--accent);
  font-weight: 700;
}

.hero__desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: var(--sp-6);
  animation: fadeInUp .6s .2s ease both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  animation: fadeInUp .6s .3s ease both;
}

.hero__doctor-card {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  margin-top: var(--sp-6);
  cursor: pointer;
  transition: all var(--t-base);
  text-decoration: none;
  animation: fadeInUp .6s .4s ease both;
  max-width: 360px;
}

.hero__doctor-card:hover {
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.hero__doctor-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}

.hero__doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__doctor-info {
  flex: 1;
}

.hero__doctor-name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.hero__doctor-title {
  font-size: .8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero__doctor-arrow {
  color: var(--accent);
  font-size: 1.25rem;
}

/* ── 12. STATS STRIP ────────────────────────────────────────────── */
.stats {
  padding: var(--sp-6) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stats__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5) var(--sp-3);
  background: var(--white);
  text-align: center;
  transition: background var(--t-fast);
}

.stats__card--featured {
  background: var(--primary);
}

.stats__icon {
  font-size: 1.375rem;
  color: var(--accent);
  margin-bottom: var(--sp-1);
}

.stats__card--featured .stats__icon {
  color: var(--accent-soft);
}

.stats__number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 4px;
}

.stats__card--featured .stats__number {
  color: var(--white);
}

.stats__label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stats__card--featured .stats__label {
  color: rgba(255,255,255,.6);
}

/* ── 13. KATEGORİ FEATURE CARDS ─────────────────────────────────── */
.categories__grid {
  display: grid;
  gap: var(--sp-3);
}

@media (min-width: 768px) {
  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  border-left: 4px solid transparent;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: all var(--t-base);
  overflow: hidden;
  position: relative;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(124,58,237,.03) 100%);
  pointer-events: none;
}

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

.category-card--kadin  { border-left-color: var(--accent); }
.category-card--erkek  { border-left-color: var(--erkek); }
.category-card--estetik { border-left-color: var(--estetik); }

.category-card:hover { border-left-width: 6px; }

.category-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  font-size: 1.625rem;
  flex-shrink: 0;
}

.category-card--kadin .category-card__icon-wrap {
  background: linear-gradient(135deg, rgba(124,58,237,.15) 0%, rgba(196,181,253,.25) 100%);
  color: var(--accent);
}

.category-card--erkek .category-card__icon-wrap {
  background: linear-gradient(135deg, rgba(30,58,138,.15) 0%, rgba(147,197,253,.25) 100%);
  color: var(--erkek);
}

.category-card--estetik .category-card__icon-wrap {
  background: linear-gradient(135deg, rgba(67,56,202,.15) 0%, rgba(165,180,252,.25) 100%);
  color: var(--estetik);
}

.category-card__title {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--sp-1);
  line-height: 1.3;
}

.category-card__desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
  flex: 1;
}

.category-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 700;
  margin-top: auto;
  transition: gap var(--t-fast);
}

.category-card--kadin .category-card__link   { color: var(--accent); }
.category-card--erkek .category-card__link   { color: var(--erkek); }
.category-card--estetik .category-card__link { color: var(--estetik); }

.category-card:hover .category-card__link { gap: 10px; }

/* ── 14. "NEDEN BİZ" CARDS ──────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

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

@media (min-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.why-card {
  padding: var(--sp-4);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
}

.why-card:hover {
  border-color: var(--accent-soft);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.why-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}

.why-card__title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.why-card__desc {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── 15. HİZMET CARDS ───────────────────────────────────────────── */
.service-grid {
  display: grid;
  gap: var(--sp-4);
}

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

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--accent-soft);
}

.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,.7);
}

.service-card__placeholder--kadin   { background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); }
.service-card__placeholder--erkek   { background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%); }
.service-card__placeholder--estetik { background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%); }

.service-card__badge {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
}

.service-card__body {
  padding: var(--sp-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--sp-1);
  line-height: 1.35;
}

.service-card__desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--sp-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--t-fast);
}

.service-card:hover .service-card__link { gap: 10px; }

/* ── 16. HEKİM TANITIM ──────────────────────────────────────────── */
.doctor-section {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
}

@media (min-width: 768px) {
  .doctor-section {
    grid-template-columns: 1fr 1.5fr;
    gap: var(--sp-10);
  }
}

.doctor-visual__card {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: var(--r-2xl);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  box-shadow: var(--shadow-lg);
}

.doctor-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.3);
  overflow: hidden;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.05em;
}

.doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-visual__name {
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.doctor-visual__spec {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  text-align: center;
}

.doctor-content .section__eyebrow { margin-bottom: var(--sp-2); }

.doctor-content__bio {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-2);
}

.doctor-content__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin: var(--sp-4) 0;
}

/* ── 17. TESTIMONIALS ───────────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  gap: var(--sp-4);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow var(--t-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 1rem;
}

.testimonial-card__text {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.testimonial-card__name {
  font-size: .875rem;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-card__date {
  font-size: .75rem;
  color: var(--text-light);
}

.testimonials__note {
  text-align: center;
  margin-top: var(--sp-5);
  font-size: .8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── 18. ACCORDION / FAQ ────────────────────────────────────────── */
.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base);
}

.accordion-item.is-open {
  box-shadow: var(--shadow);
  border-color: var(--accent-soft);
}

.accordion-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background var(--t-fast);
  background: transparent;
  font: inherit;
  color: inherit;
  border: none;
}

.accordion-item__trigger:hover {
  background: var(--accent-light);
}

.accordion-item.is-open .accordion-item__trigger {
  background: var(--accent-light);
}

.accordion-item__title {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  flex: 1;
  padding-right: var(--sp-3);
}

.accordion-item__icon {
  font-size: 1.125rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--t-base);
}

.accordion-item.is-open .accordion-item__icon {
  transform: rotate(45deg);
}

.accordion-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.is-open .accordion-item__body {
  max-height: 600px;
}

.accordion-item__content {
  padding: var(--sp-3) var(--sp-5) var(--sp-5);
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ── 19. CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--erkek) 100%);
  border-radius: var(--r-2xl);
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-band__inner {
  position: relative;
  z-index: 1;
}

.cta-band__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: var(--sp-3);
}

.cta-band__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-6);
  line-height: 1.2;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}

/* ── 20. FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,.75);
  padding: var(--sp-10) 0 0;
}

.footer__grid {
  display: grid;
  gap: var(--sp-6);
}

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

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--sp-8);
  }
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.footer__logo-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--accent) 0%, rgba(255,255,255,.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

.footer__brand-name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.footer__brand-domain {
  font-size: .6875rem;
  color: rgba(255,255,255,.5);
}

.footer__tagline {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--sp-4);
}

.footer__social {
  display: flex;
  gap: var(--sp-2);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1.0625rem;
  transition: all var(--t-fast);
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--accent);
  color: var(--white);
}

.footer__col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t-fast);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  align-items: flex-start;
}

.footer__contact-icon {
  font-size: 1rem;
  color: var(--accent-soft);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer__contact-item-text {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

.footer__contact-item-text a {
  color: rgba(255,255,255,.75);
  transition: color var(--t-fast);
}

.footer__contact-item-text a:hover {
  color: var(--white);
}

.footer__bottom {
  margin-top: var(--sp-8);
  padding: var(--sp-4) 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.footer__bottom-text {
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}

/* ── 21. BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: .8125rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--t-fast);
}

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

.breadcrumb__sep { color: var(--text-light); }

/* ── 22. HİZMET DETAY ───────────────────────────────────────────── */
.hizmet-detay__hero {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg) 100%);
  padding: var(--sp-8) 0 var(--sp-6);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-6);
}

.hizmet-detay__hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.hizmet-detay__grid {
  display: grid;
  gap: var(--sp-6);
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-3) var(--sp-10);
}

@media (min-width: 1024px) {
  .hizmet-detay__grid {
    grid-template-columns: 1fr 380px;
  }
}

.hizmet-detay__main h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: var(--sp-3);
}

.hizmet-detay__kisa-aciklama {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.hizmet-detay__gorsel {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-6);
}

/* Rich content area */
.hizmet-icerik-html {
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--text);
}

.hizmet-icerik-html h2 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
  margin: var(--sp-6) 0 var(--sp-3);
  padding-left: var(--sp-3);
  border-left: 3px solid var(--accent);
  line-height: 1.3;
}

.hizmet-icerik-html h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin: var(--sp-5) 0 var(--sp-2);
}

.hizmet-icerik-html p {
  margin-bottom: var(--sp-3);
  color: var(--text-muted);
}

.hizmet-icerik-html ul,
.hizmet-icerik-html ol {
  margin: var(--sp-3) 0 var(--sp-3) var(--sp-5);
  color: var(--text-muted);
}

.hizmet-icerik-html li {
  margin-bottom: var(--sp-1);
  list-style: disc;
}

.hizmet-icerik-html ol li { list-style: decimal; }

.hizmet-icerik-html strong { color: var(--primary); font-weight: 700; }

.hizmet-icerik-html blockquote {
  border-left: 3px solid var(--accent);
  padding: var(--sp-3) var(--sp-4);
  background: var(--accent-light);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: var(--sp-4) 0;
  font-style: italic;
  color: var(--text-muted);
}

/* Sidebar */
.hizmet-detay__sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

@media (min-width: 1024px) {
  .hizmet-detay__sidebar {
    position: sticky;
    top: calc(var(--header-h) + var(--sp-4));
  }
}

.randevu-kutu {
  background: linear-gradient(150deg, var(--primary) 0%, #2d1b69 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.randevu-kutu h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.randevu-kutu > p {
  font-size: .8125rem;
  color: rgba(255,255,255,.7);
  margin-bottom: var(--sp-4);
  line-height: 1.5;
}

.randevu-kutu .form-grup { margin-bottom: var(--sp-3); }

.randevu-kutu label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.randevu-kutu input,
.randevu-kutu textarea,
.randevu-kutu select {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-md);
  color: var(--white);
  font: inherit;
  font-size: .875rem;
  transition: border-color var(--t-fast), background var(--t-fast);
  outline: none;
}

.randevu-kutu input::placeholder,
.randevu-kutu textarea::placeholder { color: rgba(255,255,255,.4); }

.randevu-kutu input:focus,
.randevu-kutu textarea:focus {
  border-color: var(--accent-soft);
  background: rgba(255,255,255,.15);
}

.randevu-kutu textarea {
  resize: vertical;
  min-height: 80px;
}

/*
 * FIX: .form-grup input (0,1,1) genel kuralı sonra geldiği için
 * .randevu-kutu input (0,1,1) kuralını eziyor ve background:white,
 * color:dark yapıyor. Ama .randevu-kutu input::placeholder (0,1,2)
 * hâlâ rgba(255,255,255,.4) → beyaz bg üzerinde görünmez placeholder.
 * Çözüm: (0,2,1) specificity ile her iki kuralı da ez, dark kart stilini koru.
 */
.randevu-kutu .form-grup input,
.randevu-kutu .form-grup textarea,
.randevu-kutu .form-grup select {
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  color: #ffffff !important;
}

.randevu-kutu .form-grup input::placeholder,
.randevu-kutu .form-grup textarea::placeholder {
  color: rgba(255,255,255,.55) !important;
  opacity: 1;
}

.randevu-kutu .form-grup input:focus,
.randevu-kutu .form-grup textarea:focus {
  background: rgba(255,255,255,.2) !important;
  border-color: var(--accent-soft) !important;
  box-shadow: 0 0 0 3px rgba(196,181,253,.2);
  outline: none;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
}

.sidebar-card__title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}

.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border-light);
  font-size: .875rem;
  color: var(--text-muted);
}

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

.sidebar-contact-item .ti { font-size: 1rem; color: var(--accent); }

.sidebar-contact-item a { color: var(--primary); font-weight: 600; }

/* Related services */
.ilgili-hizmetler {
  padding: var(--sp-8) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.ilgili-grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.ilgili-kart {
  display: block;
  padding: var(--sp-4);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: all var(--t-base);
}

.ilgili-kart:hover {
  border-color: var(--accent-soft);
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.ilgili-kart__name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.ilgili-kart__desc {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── 23. KATEGORİ SAYFASI ───────────────────────────────────────── */
.kategori-hero {
  padding: var(--sp-8) 0;
  position: relative;
  overflow: hidden;
}

.kategori-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.kategori-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: var(--sp-3);
}

.kategori-hero__desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

/* ── 24. FORM ORTAK ─────────────────────────────────────────────── */
.form-grup { margin-bottom: var(--sp-4); }

.form-grup label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-grup input,
.form-grup textarea,
.form-grup select {
  width: 100%;
  padding: 11px 14px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font: inherit;
  font-size: .9375rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}

.form-grup input:focus,
.form-grup textarea:focus,
.form-grup select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,58,237,.1);
}

.form-grup textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  display: block;
  font-size: .75rem;
  color: #ef4444;
  margin-top: 4px;
}

/* ── 25. FLASH MESSAGES ─────────────────────────────────────────── */
.flash-mesaj {
  padding: 12px var(--sp-4);
  border-radius: var(--r-md);
  font-size: .875rem;
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.flash-mesaj--basari {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.flash-mesaj--hata {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.flash-mesaj--bilgi {
  background: var(--accent-light);
  border: 1px solid var(--accent-soft);
  color: var(--accent-dark);
}

/* backward compat aliases */
.flash-mesaj.basari { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.flash-mesaj.hata   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* ── 26. HAKKIMIZDA ─────────────────────────────────────────────── */
.sayfa-hero {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg) 100%);
  padding: var(--sp-8) 0;
  border-bottom: 1px solid var(--border);
}

.sayfa-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.sayfa-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: var(--sp-2);
}

.sayfa-hero__desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 540px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: var(--sp-6);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent) 0%, var(--erkek) 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: var(--sp-5);
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-6));
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-item__year {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.timeline-item__title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.timeline-item__desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── 27. İLETİŞİM ───────────────────────────────────────────────── */
.iletisim-grid {
  display: grid;
  gap: var(--sp-6);
  max-width: var(--max-w);
  margin: var(--sp-8) auto;
  padding: 0 var(--sp-3);
}

@media (min-width: 768px) {
  .iletisim-grid {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }
}

.iletisim-bilgi-kutu {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
}

.iletisim-bilgi-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border-light);
}

.iletisim-bilgi-item:last-of-type { border-bottom: none; }

.iletisim-ikon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.iletisim-bilgi-item > div strong {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.iletisim-bilgi-item > div a { color: var(--primary); font-weight: 600; }

.randevu-form-genis {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
}

.maps-placeholder {
  width: 100%;
  height: 200px;
  background: var(--border-light);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .875rem;
  margin-top: var(--sp-4);
  overflow: hidden;
}

.maps-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── 28. WHATSAPP BUTTON ────────────────────────────────────────── */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 20px;
  background: #25d366;
  color: var(--white) !important;
  border-radius: var(--r-full);
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--t-base);
  box-shadow: 0 4px 12px rgba(37,211,102,.3);
}

.whatsapp-btn:hover {
  background: #1ebe5b;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37,211,102,.4);
}

/* ── 29. RESPONSIVE ADJUSTMENTS ─────────────────────────────────── */
@media (max-width: 767px) {
  .section { padding: var(--sp-8) 0; }

  .hero {
    min-height: auto;
    padding: var(--sp-8) 0;
  }

  .cta-band {
    border-radius: var(--r-lg);
    padding: var(--sp-6) var(--sp-4);
  }

  .doctor-section { gap: var(--sp-5); }

  .doctor-visual__card {
    padding: var(--sp-6) var(--sp-4);
  }

  .doctor-avatar {
    width: 120px;
    height: 120px;
  }
}

/* Tablet: show hamburger (desktop nav not yet visible) */
@media (min-width: 768px) and (max-width: 1023px) {
  .hamburger { display: flex; }
  .header__cta { display: none; }
}

/* ── 30. PRINT ───────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .topbar, .mobile-menu,
  .mobile-menu-overlay, .cta-band, .randevu-kutu { display: none !important; }

  .hizmet-detay__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   31. MASAÜSTÜ DROPDOWN MENÜ (.main-nav)
   ═══════════════════════════════════════════════════════════════ */

.main-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav__list > li > a,
.main-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}

.main-nav__list > li > a:hover,
.main-nav__link:hover,
.has-dropdown:hover > .main-nav__link {
  background: var(--accent-light);
  color: var(--accent);
}

/* Chevron rotate on hover */
.main-nav__link .ti-chevron-down {
  font-size: .8125rem;
  transition: transform 0.2s ease;
  margin-left: 1px;
}

.has-dropdown:hover .ti-chevron-down {
  transform: rotate(180deg);
}

/* ── Dropdown panel ───────────────────────────────────────────── */
.has-dropdown {
  position: relative;
}

/* Hover bridge — trigger ile panel arasındaki boşluğu kapatır */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
}

.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
  box-shadow: 0 12px 40px -8px rgba(26,19,64,.14);
}

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

.dropdown li a {
  display: block;
  padding: 9px 12px;
  font-size: .8125rem;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: background var(--t-fast);
  line-height: 1.4;
}

.dropdown li a:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.dropdown__footer {
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 4px;
}

.dropdown__footer a {
  font-weight: 600 !important;
  color: var(--accent) !important;
  text-align: center;
  justify-content: center;
}

/* Responsive: masaüstü nav sadece ≥1024px'de görünür */
@media (max-width: 1023px) {
  .desktop-only { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   32. MOBİL DRAWER İÇERİK (.mobile-nav)
   ═══════════════════════════════════════════════════════════════ */

/* Drawer logotype */
.mobile-drawer__logo {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.01em;
}

/* Scroll alanı */
.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0 8px;
}

.mobile-nav__group {
  margin-bottom: 20px;
}

.mobile-nav__group:last-child {
  margin-bottom: 0;
}

/* Kategori başlığı (tıklanabilir link) */
.mobile-nav__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  transition: background var(--t-fast);
}

.mobile-nav__category:hover,
.mobile-nav__category:active {
  background: #ddd6fe;
}

.mobile-nav__category .ti-arrow-right {
  font-size: .9375rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* Hizmet alt listesi */
.mobile-nav__sublist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav__sublist li a {
  display: block;
  padding: 11px 20px 11px 30px;
  font-size: .8125rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--t-fast);
}

.mobile-nav__sublist li:last-child a {
  border-bottom: none;
}

.mobile-nav__sublist li a:hover,
.mobile-nav__sublist li a:active {
  background: var(--accent-light);
  color: var(--accent);
}

/* Alt footer (WhatsApp butonu) */
.mobile-drawer__footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.btn--full {
  width: 100%;
  justify-content: center;
}
