/* ═══════════════════════════════════════════════════════════════
   Vatan Diş Kliniği — Ana Stil Dosyası
   Font: Inter (body) + Fraunces (display)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --primary: #1565C0;
  --primary-dark: #0D47A1;
  --cyan: #00C9D4;
  --cyan-light: #4DD9E1;
  --dark: #05101F;
  --dark-2: #091929;
  --dark-card: rgba(9,25,41,0.85);
  --white: #FFFFFF;
  --gray: #F0F4FA;
  --gray-2: #E4EBF5;
  --text-muted: #8FA5C0;
  --gradient: linear-gradient(135deg, #00C9D4, #1565C0);
  --gradient-hero: linear-gradient(135deg, #00BCD4 0%, #1565C0 50%, #0D47A1 100%);
  --nav-h: 80px;
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --font-sans: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "ss03", "cv11";
  background: #ffffff;
  color: #1a2535;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-feature-settings: "ss01", "ss03", "cv11", "tnum";
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.15;
}

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

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ─── NAVBAR ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
  padding: 0 40px;
}

#navbar.scrolled {
  background: rgba(5,16,31,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,201,212,0.15);
  height: 68px;
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo — Orijinal PNG, dark navbar için beyaza dönüştürülür */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity 0.25s;
}
.logo-wrap:hover { opacity: 0.85; }

.logo-img {
  height: 46px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  transition: height 0.4s ease;
}

#navbar.scrolled .logo-img { height: 38px; }

/* Footer logo — biraz daha büyük */
.footer-brand .logo-img { height: 56px; max-width: 230px; }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links > li { position: relative; }

/* Görünmez köprü — gap'i hoverable yapar (dropdown'lar için) */
.nav-links > li.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  pointer-events: auto;
}

.nav-links > li > a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.nav-links > li > a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-links > li > a.active { color: var(--cyan); background: rgba(0,201,212,0.08); }

.nav-links > li > a .chevron {
  font-size: 10px;
  transition: transform 0.3s;
  opacity: 0.6;
}

.nav-links > li:hover > a .chevron { transform: rotate(180deg); }

/* ─── Dropdown — Base ──────────────────────────────────── */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  background: rgba(9,25,41,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0,201,212,0.18);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04) inset;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.28s, transform 0.28s;
}

.nav-links > li:hover > .dropdown,
.nav-links > li:focus-within > .dropdown,
.nav-links > li > .dropdown:hover {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* ─── Simple Dropdown (Vatan Diş) ──────────────────────── */
.dropdown-simple {
  min-width: 230px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: all 0.2s;
  text-decoration: none;
}
.dropdown-item:hover {
  color: var(--cyan);
  background: rgba(0,201,212,0.08);
  transform: translateX(2px);
}
.dropdown-item .di-icon {
  color: var(--cyan);
  opacity: 0.7;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.dropdown-item:hover .di-icon { opacity: 1; }

/* ─── Mega Menu (Tedaviler) ────────────────────────────── */
.dropdown.mega-menu {
  width: min(820px, calc(100vw - 40px));
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mega-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 6px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mega-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}
.mega-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1.2;
  margin-bottom: 6px;
}
.mega-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: 380px;
  line-height: 1.45;
}
.mega-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(0,201,212,0.1);
  border: 1px solid rgba(0,201,212,0.25);
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cyan);
  white-space: nowrap;
  transition: all 0.25s;
  flex-shrink: 0;
}
.mega-all-link:hover {
  background: rgba(0,201,212,0.18);
  border-color: var(--cyan);
  transform: translateX(2px);
}
.mega-all-link .arr { transition: transform 0.25s; }
.mega-all-link:hover .arr { transform: translateX(3px); }

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 11px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.23,1,0.32,1);
  border: 1px solid transparent;
}
.mega-item:hover {
  background: rgba(0,201,212,0.06);
  border-color: rgba(0,201,212,0.15);
  transform: translateY(-1px);
}

.mega-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,201,212,0.16), rgba(21,101,192,0.16));
  border: 1px solid rgba(0,201,212,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  transition: all 0.3s;
}
.mega-item:hover .mega-item-icon {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  transform: rotate(-4deg) scale(1.05);
}
.mega-item-icon .ti { display: block; }

.mega-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mega-item-title {
  font-size: 13.5px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.mega-item-desc {
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Lang Switcher */
.lang-switcher { position: relative; }

/* Görünmez köprü: button ile dropdown arasındaki boşluğu hoverable yapar */
.lang-switcher::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
  pointer-events: auto;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-sans);
  text-decoration: none;
}
.lang-btn:hover { background: rgba(255,255,255,0.13); }

.lang-btn .flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 1px 3px rgba(0,0,0,0.2);
  display: block;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(9,25,41,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,201,212,0.2);
  border-radius: 12px;
  padding: 6px;
  min-width: 140px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.3s;
}
.lang-switcher:hover .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown,
.lang-dropdown:hover,
.lang-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: all 0.25s;
  font-family: var(--font-sans);
  text-decoration: none;
}
.lang-option:hover { color: white; background: rgba(0,201,212,0.1); }
.lang-option.active { color: var(--cyan); }
.lang-option .flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
  display: block;
  flex-shrink: 0;
}

/* CTA Button */
.btn-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gradient);
  color: white;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,201,212,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(5,16,31,0.98);
  backdrop-filter: blur(20px);
  padding: 20px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s;
  z-index: 999;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.8);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s;
}
.mobile-menu a:hover { color: var(--cyan); background: rgba(0,201,212,0.08); }
.mobile-menu .mobile-section {
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 16px 16px 4px;
}
.mobile-lang-row {
  display: flex;
  gap: 8px;
  padding: 16px;
  flex-wrap: wrap;
}
.mobile-lang-btn {
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.mobile-lang-btn:hover,
.mobile-lang-btn.active { border-color: var(--cyan); color: var(--cyan); background: rgba(0,201,212,0.08); }
.mobile-lang-btn .flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
  display: block;
}


/* ─── Tabler Icon Utilities ──────────────────────────── */
.icon, .icon-tabler {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon-treatment { color: var(--cyan); }


/* ═════════════════════════════════════════════════════════
   GOOGLE REVIEWS — Trust Strip + Cards + Reviews Page
   ═════════════════════════════════════════════════════════ */

/* ── Trust Strip (hero altı banner) ─────────────────── */
.trust-strip {
  display: block;
  background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(248,250,254,0.97));
  border-top: 1px solid rgba(21,101,192,0.1);
  border-bottom: 1px solid rgba(21,101,192,0.1);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.trust-strip:hover { background: linear-gradient(135deg, white, #f7faff); }
.ts-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.ts-google {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #4a5568;
  letter-spacing: -0.01em;
}
.ts-rating { display: flex; align-items: center; gap: 10px; }
.ts-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #0A1628;
  letter-spacing: -0.03em;
  line-height: 1;
}
.ts-stars { display: inline-flex; gap: 1px; color: #fbbc04; font-size: 18px; line-height: 1; }
.ts-text { display: flex; flex-direction: column; gap: 2px; }
.ts-text strong { font-size: 14px; color: #0A1628; font-weight: 700; }
.ts-text span { font-size: 12.5px; color: var(--primary); font-weight: 600; }


/* ── Star common ────────────────────────────────────── */
.rev-stars { display: inline-flex; gap: 1px; line-height: 1; color: #e4e9f0; }
.rev-star { font-size: 14px; }
.rev-star.on { color: #fbbc04; }
.rev-star.half { background: linear-gradient(90deg, #fbbc04 50%, #e4e9f0 50%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.rev-stars-lg .rev-star { font-size: 20px; }


/* ── Review Card (reusable) ─────────────────────────── */
.rev-card {
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(21,101,192,0.08);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 14px rgba(21,101,192,0.04);
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  break-inside: avoid;
}
.rev-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(21,101,192,0.1);
  border-color: rgba(0,201,212,0.18);
}
.rev-head { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}
.rev-meta { flex-grow: 1; min-width: 0; }
.rev-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0A1628;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rev-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #718096;
  margin-top: 3px;
}
.rev-sep { color: #cbd5e0; }
.rev-google {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(21,101,192,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rev-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: #2d3748;
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-style: normal;
}

.rev-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(21,101,192,0.08);
}
.rev-treat, .rev-lang {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(0,201,212,0.06);
  border-radius: 50px;
  font-size: 11.5px;
  color: var(--primary);
  font-weight: 600;
}
.rev-treat svg { color: var(--cyan); }
.rev-lang img { border-radius: 2px; }

.rev-compact { padding: 18px; }
.rev-compact .rev-body { font-size: 13.5px; }


/* ── Anasayfa "home-reviews" section ─────────────────── */
#home-reviews {
  padding: 100px 0;
  background: linear-gradient(180deg, white 0%, #f7faff 100%);
}
.hr-summary-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(21,101,192,0.1);
  box-shadow: 0 4px 14px rgba(21,101,192,0.05);
}
.hr-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0A1628;
  line-height: 1;
}
.hr-summary-mini small {
  display: block;
  font-size: 12px;
  color: #718096;
  margin-top: 3px;
}

.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.home-reviews-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ── Reviews Page — Summary card ─────────────────────── */
.reviews-summary-section {
  padding: 56px 0 32px;
  background: white;
}
.rev-summary-card {
  background: white;
  border-radius: 22px;
  padding: 36px 40px;
  border: 1px solid rgba(21,101,192,0.1);
  box-shadow: 0 14px 40px rgba(21,101,192,0.08);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
.rev-sum-left {
  text-align: center;
  border-right: 1px solid rgba(21,101,192,0.08);
  padding-right: 32px;
}
.rev-sum-avg strong {
  display: block;
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  font-feature-settings: "tnum";
}
.rev-sum-avg .rev-stars-lg { font-size: 24px; margin-bottom: 8px; }
.rev-sum-avg small {
  display: block;
  font-size: 13px;
  color: #718096;
  margin-top: 8px;
}
.rev-google-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 18px;
  background: white;
  border: 1.5px solid rgba(66,133,244,0.3);
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  color: #4285F4;
  text-decoration: none;
  transition: all 0.3s;
}
.rev-google-cta:hover {
  background: #4285F4;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(66,133,244,0.3);
}
.rev-google-cta:hover svg path { fill: white !important; }

.rev-sum-right { display: flex; flex-direction: column; gap: 8px; }
.rev-dist-label {
  font-size: 12px;
  font-weight: 700;
  color: #718096;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.rev-dist-row {
  display: grid;
  grid-template-columns: 36px 1fr 50px;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.rev-dist-star { font-weight: 600; color: #4a5568; }
.rev-dist-bar {
  height: 8px;
  background: #f0f4fa;
  border-radius: 4px;
  overflow: hidden;
}
.rev-dist-fill {
  height: 100%;
  background: linear-gradient(90deg, #fbbc04, #f59e0b);
  border-radius: 4px;
  transition: width 0.6s ease;
}
.rev-dist-count {
  text-align: right;
  font-size: 12.5px;
  color: #718096;
  font-weight: 600;
  font-feature-settings: "tnum";
}


/* ── Reviews Page — Grid ─────────────────────────────── */
.reviews-grid-section {
  padding: 32px 0 100px;
  background: white;
}
.reviews-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.rev-filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.rev-chip {
  padding: 8px 18px;
  background: white;
  border: 1.5px solid rgba(21,101,192,0.15);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.25s;
}
.rev-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.rev-chip.is-active {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 12px rgba(21,101,192,0.2);
}

.reviews-masonry {
  columns: 3;
  column-gap: 18px;
}
.reviews-masonry .rev-item {
  break-inside: avoid;
  margin-bottom: 18px;
}
.rev-empty {
  text-align: center;
  padding: 60px 20px;
  color: #718096;
  font-size: 14px;
}


/* ── Footer rating badge ─────────────────────────────── */
.footer-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  padding: 12px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.footer-rating-badge:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0,201,212,0.25);
  transform: translateY(-2px);
}
.frb-rating { display: flex; align-items: center; gap: 8px; }
.frb-rating strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}
.frb-stars { display: inline-flex; gap: 1px; color: #fbbc04; font-size: 14px; }
.frb-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
}


/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .home-reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-masonry { columns: 2; }
  .rev-summary-card { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
  .rev-sum-left { border-right: none; border-bottom: 1px solid rgba(21,101,192,0.08); padding-right: 0; padding-bottom: 28px; }
}
@media (max-width: 768px) {
  #home-reviews { padding: 72px 0; }
  .home-reviews-grid { grid-template-columns: 1fr; }
  .reviews-masonry { columns: 1; }
  .ts-inner { gap: 16px; padding: 14px 0; }
  .ts-num { font-size: 24px; }
  .ts-stars { font-size: 15px; }
  .ts-text strong { font-size: 13px; }
  .rev-sum-avg strong { font-size: 64px; }
  .reviews-toolbar { flex-direction: column; align-items: stretch; }
  .footer-rating-badge { flex-direction: column; align-items: flex-start; gap: 6px; }
}


/* ═════════════════════════════════════════════════════════
   HEALTH TOURISM — Anasayfa Teaser + Sayfa + Video Modal
   ═════════════════════════════════════════════════════════ */

/* ── Anasayfa Teaser ────────────────────────────────── */
.ht-teaser {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(0,201,212,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(21,101,192,0.16) 0%, transparent 50%),
    var(--dark);
  position: relative;
  overflow: hidden;
  color: white;
}
.ht-teaser::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='none' fill-rule='evenodd'%3E%3Cg fill='%2300C9D4' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.ht-teaser > .container { position: relative; z-index: 1; }

.ht-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ht-teaser-text .section-title { color: white; margin-bottom: 20px; }
.ht-teaser-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}
.ht-teaser-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.ht-teaser-pills svg { color: var(--cyan); }
.ht-teaser-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.ht-video-trigger {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  cursor: pointer;
  color: white;
  font-family: var(--font-sans);
  transition: all 0.3s;
}
.ht-video-trigger:hover {
  background: rgba(0,201,212,0.12);
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.ht-vt-play {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.ht-vt-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}
.ht-vt-text strong { font-size: 14px; font-weight: 600; }
.ht-vt-text small { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 3px; }

/* Poster button (right column) */
.ht-poster-btn {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
.ht-poster-btn:hover { transform: translateY(-6px) scale(1.01); }
.ht-poster-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/10;
  transition: transform 0.8s;
}
.ht-poster-btn:hover img { transform: scale(1.04); }
.ht-poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,16,31,0.7) 100%);
}
.ht-poster-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 86px; height: 86px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 0 rgba(255,255,255,0.4);
  animation: vmPulse 2.2s ease-in-out infinite;
}
@keyframes vmPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 0 rgba(0,201,212,0.5); }
  50% { box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 18px rgba(0,201,212,0); }
}
.ht-poster-btn:hover .ht-poster-play { transform: translate(-50%, -50%) scale(1.08); }
.ht-poster-label {
  position: absolute;
  bottom: 20px; left: 24px; right: 24px;
  display: flex;
  flex-direction: column;
  text-align: left;
  color: white;
  z-index: 2;
}
.ht-poster-label strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.ht-poster-label small {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}


/* ── Video Modal ────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal[hidden] { display: none; }
.video-modal .vm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,16,31,0.92);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.video-modal.is-open .vm-backdrop { opacity: 1; }

.video-modal .vm-dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.23,1,0.32,1);
}
.video-modal.is-open .vm-dialog { opacity: 1; transform: scale(1) translateY(0); }

.vm-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.25s;
}
.vm-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

.vm-video-wrap {
  border-radius: 18px;
  overflow: hidden;
  background: black;
  aspect-ratio: 16/9;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.vm-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: black;
}
.vm-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-align: center;
  margin: 0;
  letter-spacing: -0.01em;
}


/* ══════════════════════════════════════════════════════
   HEALTH TOURISM — SAYFA
   ══════════════════════════════════════════════════════ */

/* ── HT Hero ────────────────────────────────────────── */
.ht-hero {
  padding: calc(var(--nav-h) + 64px) 0 80px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0,201,212,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(21,101,192,0.24) 0%, transparent 55%),
    var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}
.ht-hero-bg {
  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='none' fill-rule='evenodd'%3E%3Cg fill='%2300C9D4' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.ht-hero > .container { position: relative; z-index: 1; }
.ht-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.ht-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 8px 0 18px;
}
.ht-hero-text h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ht-badge {
  background: rgba(0,201,212,0.12) !important;
  border-color: rgba(0,201,212,0.3) !important;
  color: var(--cyan) !important;
  gap: 6px;
}
.ht-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 540px;
}

.ht-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 22px 0;
  margin-bottom: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ht-hero-stats > div { display: flex; flex-direction: column; gap: 2px; }
.ht-hero-stats strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
}
.ht-hero-stats span {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}
.ht-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.ht-hero-video {
  border-radius: 24px;
  overflow: hidden;
  background: black;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
}
.ht-hero-video video {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: black;
}
.ht-video-caption {
  padding: 16px 20px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ht-video-caption strong { font-size: 14px; font-weight: 600; }
.ht-video-caption span { font-size: 12px; color: rgba(255,255,255,0.7); }


/* ── Generic Section Head ──────────────────────────── */
.ht-section { padding: 100px 0; }
.ht-section.ht-features { background: white; }
.ht-section.ht-process { background: #f7faff; }
.ht-section.ht-treatments { background: white; }
.ht-section.ht-turkey { background: #f7faff; }
.ht-section.ht-pricing { background: white; }
.ht-section.ht-trust { background: var(--dark); color: white; position: relative; overflow: hidden; }
.ht-section.ht-trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,201,212,0.1), transparent 60%);
}
.ht-section.ht-trust > .container { position: relative; z-index: 1; }
.ht-section.ht-testimonials { background: #f7faff; }
.ht-section.ht-consult { background: var(--dark); color: white; position: relative; overflow: hidden; }
.ht-section.ht-consult::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(0,201,212,0.15), transparent 50%);
}
.ht-section.ht-consult > .container { position: relative; z-index: 1; }

.ht-section-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.ht-section-head .section-desc { font-size: 16px; color: #718096; line-height: 1.7; margin-top: 14px; }


/* ── Features (6 box grid) ─────────────────────────── */
.ht-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ht-feature {
  padding: 32px 26px;
  background: white;
  border: 1px solid rgba(21,101,192,0.08);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
.ht-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(0,201,212,0.25);
  box-shadow: 0 24px 56px rgba(21,101,192,0.12);
}
.ht-feat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,201,212,0.15), rgba(21,101,192,0.15));
  border: 1px solid rgba(0,201,212,0.2);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s;
}
.ht-feature:hover .ht-feat-icon {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  transform: rotate(-4deg);
}
.ht-feature h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.ht-feature p {
  font-size: 14.5px;
  color: #4a5568;
  line-height: 1.65;
}


/* ── Process (5-step) ──────────────────────────────── */
.ht-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  position: relative;
}
.ht-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, var(--cyan), var(--primary));
  opacity: 0.2;
  z-index: 0;
}
.ht-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ht-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(21,101,192,0.25), 0 0 0 6px white;
}
.ht-step-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.ht-step-body p {
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.6;
}


/* ── Treatments (popular for tourism) ──────────────── */
.ht-treats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ht-treat-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(21,101,192,0.08);
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
.ht-treat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(21,101,192,0.14);
  border-color: rgba(0,201,212,0.2);
}
.ht-treat-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.ht-treat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.ht-treat-card:hover .ht-treat-img img { transform: scale(1.06); }
.ht-treat-icon {
  position: absolute;
  bottom: 14px; left: 14px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: white;
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.ht-treat-body { padding: 22px 22px 24px; flex-grow: 1; display: flex; flex-direction: column; }
.ht-treat-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0A1628;
  margin-bottom: 8px;
}
.ht-treat-body p {
  font-size: 13.5px;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 14px;
  flex-grow: 1;
}
.ht-treat-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(21,101,192,0.08);
  font-size: 12.5px;
  color: #4a5568;
}
.ht-treat-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ht-treat-meta strong { color: var(--primary); font-weight: 700; margin-left: 2px; }
.ht-treat-meta svg { color: var(--cyan); }


/* ── Why Turkey / Sapanca ──────────────────────────── */
.ht-turkey-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ht-loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.ht-loc {
  display: flex;
  gap: 12px;
  padding: 18px;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(21,101,192,0.08);
  align-items: flex-start;
  box-shadow: 0 4px 12px rgba(21,101,192,0.04);
}
.ht-loc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ht-loc strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 4px;
}
.ht-loc span { font-size: 13px; color: #4a5568; line-height: 1.55; }

.ht-turkey-photos {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 520px;
}
.ht-photo { border-radius: 18px; overflow: hidden; box-shadow: 0 14px 36px rgba(21,101,192,0.1); }
.ht-photo img { width: 100%; height: 100%; object-fit: cover; }
.ht-photo-1 { grid-row: 1 / 3; }
.ht-photo-2 { grid-column: 2; grid-row: 1; }
.ht-photo-3 { grid-column: 2; grid-row: 2; }


/* ── Pricing Table ─────────────────────────────────── */
.ht-price-table-wrap {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(21,101,192,0.08);
  border: 1px solid rgba(21,101,192,0.08);
}
.ht-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ht-price-table thead th {
  background: #f7faff;
  padding: 16px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: #718096;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(21,101,192,0.1);
}
.ht-price-table thead th.hl {
  background: linear-gradient(135deg, var(--cyan), var(--primary));
  color: white;
}
.ht-price-table tbody td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(21,101,192,0.06);
  color: #4a5568;
}
.ht-price-table tbody tr:last-child td { border-bottom: none; }
.ht-price-table tbody tr:hover { background: rgba(0,201,212,0.03); }
.ht-price-table td.hl {
  background: rgba(0,201,212,0.06);
  color: var(--primary);
  font-weight: 600;
}
.ht-price-table td.save {
  color: #10b981;
  font-weight: 700;
}
.ht-price-table tbody td strong { color: #0A1628; font-weight: 600; }
.ht-price-note {
  padding: 16px 20px;
  font-size: 12.5px;
  color: #718096;
  background: #fafbfc;
  border-top: 1px solid rgba(21,101,192,0.06);
  margin: 0;
}


/* ── Trust stats (dark band) ───────────────────────── */
.ht-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ht-trust-stat {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  transition: all 0.4s;
}
.ht-trust-stat:hover {
  background: rgba(0,201,212,0.07);
  border-color: rgba(0,201,212,0.25);
  transform: translateY(-4px);
}
.ht-ts-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.ht-trust-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  background: linear-gradient(135deg, #4DD9E1, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.04em;
}
.ht-trust-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  display: block;
}


/* ── Testimonials ──────────────────────────────────── */
.ht-test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ht-test {
  background: white;
  border-radius: 20px;
  padding: 28px 26px;
  border: 1px solid rgba(21,101,192,0.08);
  box-shadow: 0 8px 24px rgba(21,101,192,0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ht-test-stars { display: flex; gap: 2px; color: #f59e0b; }
.ht-test blockquote {
  font-family: var(--font-display);
  font-size: 16.5px;
  line-height: 1.55;
  color: #1a2535;
  font-style: italic;
  font-weight: 500;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}
.ht-test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(21,101,192,0.08);
}
.ht-test-flag {
  width: 32px; height: 22px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.ht-test-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0A1628;
}
.ht-test-author span { font-size: 12.5px; color: #718096; }


/* ── Consultation (dark CTA + form) ────────────────── */
.ht-consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ht-consult-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.ht-consult-perks > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.ht-consult-perks svg { color: var(--cyan); flex-shrink: 0; }


/* ── Navbar — tourism link styling ─────────────────── */
.nav-links > li > a.nav-tourism {
  background: linear-gradient(135deg, rgba(0,201,212,0.15), rgba(21,101,192,0.15));
  border: 1px solid rgba(0,201,212,0.3);
  color: var(--cyan);
}
.nav-links > li > a.nav-tourism:hover {
  background: linear-gradient(135deg, rgba(0,201,212,0.25), rgba(21,101,192,0.25));
  color: white;
}
.nav-links > li > a.nav-tourism .nav-icon { color: currentColor; }


/* ── HT Responsive ─────────────────────────────────── */
@media (max-width: 1100px) {
  .ht-teaser-grid,
  .ht-hero-grid,
  .ht-turkey-grid,
  .ht-consult-grid { grid-template-columns: 1fr; gap: 36px; }
  .ht-features-grid { grid-template-columns: 1fr 1fr; }
  .ht-treats-grid { grid-template-columns: 1fr 1fr; }
  .ht-test-grid { grid-template-columns: 1fr; }
  .ht-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .ht-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ht-steps::before { display: none; }
  .ht-turkey-photos { height: 380px; }
}

@media (max-width: 768px) {
  .ht-teaser { padding: 72px 0; }
  .ht-section { padding: 72px 0; }
  .ht-section-head { margin-bottom: 40px; }
  .ht-features-grid,
  .ht-treats-grid,
  .ht-trust-grid { grid-template-columns: 1fr; }
  .ht-steps { grid-template-columns: 1fr; }
  .ht-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ht-hero-stats strong { font-size: 24px; }
  .ht-loc-grid { grid-template-columns: 1fr; }
  .ht-turkey-photos { height: 420px; }
  .ht-consult-perks { grid-template-columns: 1fr; }

  /* Mobile pricing — horizontal scroll, "swipe →" hint */
  .ht-price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ht-price-table { min-width: 540px; }
  .ht-price-table thead th { padding: 12px 14px; font-size: 11px; letter-spacing: 0.8px; }
  .ht-price-table tbody td { padding: 14px; font-size: 13px; }

  /* Modal mobile */
  .video-modal { padding: 12px; }
  .vm-close { top: 8px; right: 8px; width: 36px; height: 36px; font-size: 22px; }
  .vm-dialog { max-height: 96vh; }

  /* Poster button mobile */
  .ht-poster-play { width: 64px; height: 64px; }
  .ht-poster-play svg { width: 24px; height: 24px; }
  .ht-poster-label { bottom: 14px; left: 16px; right: 16px; }
  .ht-poster-label strong { font-size: 15px; }
}


/* ─── Mega Menu — Branches (foto + info) ─────────────── */
.mega-menu.mega-branches { width: min(780px, calc(100vw - 40px)); }

.mega-branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mega-branch-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}
.mega-branch-card:hover {
  background: rgba(0,201,212,0.06);
  border-color: rgba(0,201,212,0.25);
  transform: translateY(-2px);
}

.mb-photo {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.mb-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.mega-branch-card:hover .mb-photo img { transform: scale(1.05); }

.mb-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(0,201,212,0.95);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,201,212,0.4);
}
.mb-badge-main { background: linear-gradient(135deg, #00C9D4, #1565C0); }
.mb-badge-new { background: linear-gradient(135deg, #ffa500, #ff6b6b); box-shadow: 0 4px 12px rgba(255,107,107,0.4); }

.mb-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mb-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mb-name {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: white;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.mb-arrow {
  color: var(--cyan);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.mega-branch-card:hover .mb-arrow { transform: translateX(3px); }
.mb-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.4;
}
.mb-info {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mb-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.mb-info .mb-i {
  color: var(--cyan);
  opacity: 0.75;
  flex-shrink: 0;
}


/* ─── Anasayfa — Şubelerimiz Section ─────────────────── */
#branches {
  padding: 100px 0;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}
.branches-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.branches-header .section-desc {
  font-size: 16px;
  color: #718096;
  line-height: 1.7;
  margin-top: 16px;
}

.branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.branch-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(21,101,192,0.08);
  box-shadow: 0 10px 30px rgba(21,101,192,0.06);
  transition: all 0.45s cubic-bezier(0.23,1,0.32,1);
  display: flex;
  flex-direction: column;
}
.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(21,101,192,0.14);
  border-color: rgba(0,201,212,0.2);
}

.bc-photo-link { display: block; position: relative; overflow: hidden; }

.bc-photo {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.bc-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
.branch-card:hover .bc-photo img { transform: scale(1.07); }

.bc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: white;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.bc-badge-main { background: linear-gradient(135deg, #00C9D4, #1565C0); color: white; }
.bc-badge-new { background: linear-gradient(135deg, #ffa500, #ff6b6b); color: white; }
.bc-badge-icon { flex-shrink: 0; }

.bc-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(5,16,31,0.78));
  display: flex;
  gap: 20px;
  z-index: 2;
}
.bc-stat-mini {
  color: white;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.bc-stat-mini strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #4DD9E1, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bc-stat-mini span {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.bc-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-grow: 1;
}
.bc-header { display: flex; flex-direction: column; gap: 6px; }
.bc-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #0A1628;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}
.bc-tagline {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  margin: 0;
}

.bc-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--gray);
  border-radius: 14px;
  margin: 0;
}
.bc-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.5;
}
.bc-info li > div { display: flex; flex-direction: column; gap: 2px; }
.bc-info li strong {
  font-size: 11px;
  color: #718096;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.bc-info li span, .bc-info li a {
  color: #1a2535;
  font-weight: 500;
  text-decoration: none;
}
.bc-info li a:hover { color: var(--primary); }
.bc-i-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(21,101,192,0.08);
}

.bc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bc-feat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(0,201,212,0.08);
  border: 1px solid rgba(0,201,212,0.18);
  border-radius: 50px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
}
.bc-feat svg { color: var(--cyan); }

.bc-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.bc-btn-primary {
  flex-grow: 1;
  justify-content: center;
  padding: 12px 18px !important;
  font-size: 13.5px !important;
}
.bc-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1.5px solid rgba(21,101,192,0.18);
  color: var(--primary);
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  flex-grow: 1;
  justify-content: center;
}
.bc-btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,201,212,0.05);
}
.bc-btn-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(37,211,102,0.1);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.bc-btn-icon:hover {
  background: #25D366;
  color: white;
  transform: scale(1.08);
}


/* ─── Branch Detail Page ─────────────────────────────── */
.branches-page { padding: 80px 0; background: white; }

.branch-detail-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
}
.branch-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bd-photo-main, .bd-photo-side {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 14px 40px rgba(21,101,192,0.1);
}
.bd-photo-side { aspect-ratio: 8/9; }

.bd-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 12px 0 36px;
}
.bd-contact-card {
  background: var(--gray);
  border: 1px solid rgba(21,101,192,0.06);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bd-contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.bd-contact-card strong {
  font-size: 11px;
  color: #718096;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bd-contact-card span, .bd-contact-card a {
  font-size: 15px;
  color: #1a2535;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.4;
}
.bd-contact-card a:hover { color: var(--primary); }
.bd-contact-card em {
  font-size: 12px;
  color: #718096;
  font-style: normal;
  margin-top: 4px;
}

.bd-map { margin-top: 16px; }


/* ─── HERO ────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0,201,212,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(21,101,192,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 60% 80%, rgba(13,71,161,0.15) 0%, transparent 60%);
  animation: meshAnim 10s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes meshAnim {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.06) rotate(1.5deg); }
}

.hero-bg::after {
  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='none' fill-rule='evenodd'%3E%3Cg fill='%2300C9D4' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,16,31,0.85) 0%, rgba(5,16,31,0.6) 50%, rgba(9,25,41,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0,201,212,0.1);
  border: 1px solid rgba(0,201,212,0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
  animation: fadeInUp 0.9s 0.1s ease both;
}

.hero-title-slide {
  display: block;
  font-size: clamp(38px, 5vw, 68px);
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: -0.035em;
  position: relative;
  overflow: hidden;
  min-height: 1.1em;
}

.hero-title-slide span {
  display: inline-block;
  animation: slideText 9s ease-in-out infinite;
}

@keyframes slideText {
  0%, 28% { transform: translateY(0); opacity: 1; }
  33% { transform: translateY(-110%); opacity: 0; }
  34% { transform: translateY(110%); opacity: 0; }
  38%, 60% { transform: translateY(0); opacity: 1; }
  65% { transform: translateY(-110%); opacity: 0; }
  66% { transform: translateY(110%); opacity: 0; }
  70%, 95% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-110%); opacity: 0; }
}

.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 20px 0 36px;
  animation: fadeInUp 1s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 1s 0.3s ease both;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--gradient);
  color: white;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.35s;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,201,212,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: white;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.35s;
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,201,212,0.05);
}

.hero-services {
  display: flex;
  gap: 8px;
  margin-top: 44px;
  animation: fadeInUp 1s 0.4s ease both;
  flex-wrap: wrap;
}

.hero-service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  transition: all 0.3s;
  cursor: pointer;
  font-weight: 500;
}
.hero-service-item i { color: var(--cyan); font-size: 14px; }
.hero-service-item .hsi-icon { color: var(--cyan); }
.hero-service-item:hover {
  border-color: rgba(0,201,212,0.4);
  color: white;
  background: rgba(0,201,212,0.08);
}

/* Hero Card */
.hero-card {
  background: rgba(9,25,41,0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0,201,212,0.2);
  border-radius: 20px;
  padding: 30px;
  animation: fadeInUp 1s 0.2s ease both;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: white;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-stat {
  text-align: center;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.045em;
  font-feature-settings: "tnum";
}
.hero-stat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.hero-treatments {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.hero-treat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  transition: all 0.25s;
  cursor: pointer;
}
.hero-treat-row:hover { background: rgba(0,201,212,0.07); }
.hero-treat-name {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-treat-name i { color: var(--cyan); font-size: 13px; }
.hero-treat-name .htr-icon { color: var(--cyan); flex-shrink: 0; }
.hero-treat-arrow { color: rgba(0,201,212,0.5); font-size: 11px; flex-shrink: 0; }

.hero-card-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: var(--gradient);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}
.hero-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,201,212,0.35);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s 0.6s ease both;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(0,201,212,0.5), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


/* ─── STATS BAND ─────────────────────────────────────── */
.stats-band {
  background: var(--dark);
  padding: 64px 0;
}

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

.stat-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item.visible { opacity: 1; transform: translateY(0); }

.stat-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.05em;
  font-feature-settings: "tnum";
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,201,212,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  color: var(--cyan);
}


/* ─── ABOUT ─────────────────────────────────────────── */
#about {
  padding: 100px 0;
  background: white;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,201,212,0.08);
  border: 1px solid rgba(0,201,212,0.2);
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
  color: #0A1628;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-title em {
  font-style: normal;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

/* ── About — Bento Photo Mosaic (3×3 grid, 6 cells) ─── */
.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 175px 175px 130px;
  gap: 14px;
  margin: 0 0 32px;
  padding: 0;
}

.photo-cell {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,201,212,0.08), rgba(21,101,192,0.12));
  box-shadow: 0 8px 24px rgba(21,101,192,0.08), 0 2px 6px rgba(21,101,192,0.04);
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s;
  margin: 0;
  cursor: zoom-in;
}

.photo-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,16,31,0.45) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.photo-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(21,101,192,0.18), 0 4px 12px rgba(21,101,192,0.08);
}
.photo-cell:hover::after { opacity: 1; }
.photo-cell:hover img { transform: scale(1.06); }

.photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}

/* Grid placement — Bento style */
.cell-1 {
  grid-column: 1 / 3;    /* Sol 2 sütun */
  grid-row: 1 / 3;       /* Üst 2 satır = büyük hero */
}
.cell-2 { grid-column: 3 / 4; grid-row: 1 / 2; }  /* Sağ üst */
.cell-3 { grid-column: 3 / 4; grid-row: 2 / 3; }  /* Sağ orta */
.cell-4 { grid-column: 1 / 2; grid-row: 3 / 4; }  /* Alt sol */
.cell-5 { grid-column: 2 / 3; grid-row: 3 / 4; }  /* Alt orta */
.cell-6 { grid-column: 3 / 4; grid-row: 3 / 4; }  /* Alt sağ */

/* Hero hücresinin üzerine konan etiket */
.photo-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.photo-cell:hover .photo-caption {
  opacity: 1;
  transform: translateY(0);
}
.photo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.photo-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.about-award {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark);
  border: 1px solid rgba(0,201,212,0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.award-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  flex-shrink: 0;
}
.award-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: white;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.award-text span { font-size: 12px; color: rgba(255,255,255,0.55); }

.about-content { padding: 0; }
.about-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  margin: 20px 0 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray);
  border-radius: 12px;
  transition: all 0.3s;
}
.feature-item:hover { background: rgba(0,201,212,0.06); }
.feature-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
}
.feature-text strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #0A1628;
  margin-bottom: 3px;
}
.feature-text span { font-size: 12px; color: #718096; }


/* ─── TREATMENTS ─────────────────────────────────────── */
#treatments {
  padding: 100px 0;
  background: #f7faff;
}

.treatments-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.treatments-header .section-desc,
.section-desc {
  font-size: 16px;
  color: #718096;
  line-height: 1.7;
  margin-top: 16px;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.treatment-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(21,101,192,0.08);
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.treatment-card.visible { opacity: 1; transform: translateY(0); }

.treatment-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.treatment-card:hover {
  border-color: rgba(21,101,192,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(21,101,192,0.12);
}
.treatment-card:hover::before { transform: scaleX(1); }

.treatment-card.featured {
  background: var(--dark);
  border-color: rgba(0,201,212,0.2);
  grid-row: span 2;
}
.treatment-card.featured .treat-title { color: white; }
.treatment-card.featured .treat-desc { color: rgba(255,255,255,0.6); }
.treatment-card.featured .treat-list li { color: rgba(255,255,255,0.65); }
.treatment-card.featured .treat-icon-wrap { background: rgba(0,201,212,0.15); }

.treat-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(21,101,192,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.treatment-card:hover .treat-icon-wrap { background: var(--gradient); color: white; }
.treatment-card.featured .treat-icon-wrap { color: var(--cyan); }
.treatment-card.featured:hover .treat-icon-wrap { background: rgba(0,201,212,0.2); }

.treat-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 16/9;
}
.treat-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.4s;
}
.treatment-card:hover .treat-image img { transform: scale(1.04); }

.treat-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.treat-desc {
  font-size: 13.5px;
  color: #718096;
  line-height: 1.65;
  margin-bottom: 16px;
  flex-grow: 1;
}

.treat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.treat-list li {
  font-size: 13px;
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 8px;
}
.treat-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.treat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: gap 0.25s;
  margin-top: auto;
}
.treat-link:hover { gap: 10px; }
.treat-link-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  flex-shrink: 0;
  -webkit-text-fill-color: white;
}


/* ─── WHY US ─────────────────────────────────────────── */
#why-us {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,201,212,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content .section-title { color: white; }
.why-content .section-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 20px 0 40px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  transition: all 0.35s;
}
.why-item:hover {
  background: rgba(0,201,212,0.05);
  border-color: rgba(0,201,212,0.2);
  transform: translateX(6px);
}
.why-item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}
.why-item-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}
.why-item-text span { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-vis-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s;
}
.why-vis-card:hover {
  background: rgba(0,201,212,0.06);
  border-color: rgba(0,201,212,0.2);
  transform: translateY(-4px);
}
.why-vis-card.tall { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }

.why-vis-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.05em;
  font-feature-settings: "tnum";
}
.why-vis-label { font-size: 12.5px; color: rgba(255,255,255,0.5); font-weight: 500; }
.why-vis-icon { font-size: 32px; color: var(--cyan); margin-bottom: 16px; opacity: 0.75; }


/* ─── MARQUEE ─────────────────────────────────────────── */
.marquee-section {
  padding: 60px 0;
  background: white;
  overflow: hidden;
}
.marquee-section.partners-section { background: #f7faff; padding: 48px 0; }

.marquee-title { text-align: center; margin-bottom: 40px; }

/* Marquee viewport — overflow gizli, kenarlarda fade mask */
.marquee-wrap {
  overflow: hidden;
  padding: 12px 0;
  /* Sol/sağ kenarlarda yumuşak fade (gradient mask) — daha premium görünüm */
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}

.marquee-track,
.partners-track {
  display: flex;
  gap: 0;
  width: max-content;
  min-width: 200%;   /* Track her zaman parent'tan en az 2× geniş → kesintisiz loop */
  will-change: transform;
}
.marquee-track {
  animation: marqueeScroll 40s linear infinite;
}
.partners-track {
  animation: marqueeScroll 35s linear infinite reverse;
}
.marquee-track:hover,
.partners-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.cert-thumb {
  width: 140px;
  height: 95px;
  border-radius: 8px;
  background: white;
  border: 1px solid rgba(21,101,192,0.15);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #1565C0;
  margin: 0 10px;
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.cert-thumb i { font-size: 22px; color: #00C9D4; }
.cert-thumb:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,101,192,0.12);
}

.partner-logo {
  padding: 12px 32px;
  background: #f0f4fa;
  border-radius: 8px;
  margin: 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: #4a5568;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.partner-logo:hover {
  background: white;
  box-shadow: 0 4px 16px rgba(21,101,192,0.08);
  color: var(--primary);
}
.partner-logo i { color: var(--primary); }

/* Mobile: fade mask'i biraz daha dar yap, hız da düşür */
@media (max-width: 768px) {
  .marquee-wrap {
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 32px, black calc(100% - 32px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 32px, black calc(100% - 32px), transparent 100%);
  }
  .marquee-track { animation-duration: 30s; }
  .partners-track { animation-duration: 28s; }
}


/* ─── NEWS ────────────────────────────────────────────── */
#news {
  padding: 100px 0;
  background: #f7faff;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.news-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(21,101,192,0.08);
  transition: all 0.35s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(21,101,192,0.1);
}

.news-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(0,201,212,0.15), rgba(21,101,192,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: rgba(21,101,192,0.3);
  overflow: hidden;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card.featured .news-card-img { aspect-ratio: 3/2; }

.news-body { padding: 20px; }
.news-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0,201,212,0.08);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news-ttl {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #0A1628;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.news-card.featured .news-ttl { font-size: 26px; letter-spacing: -0.025em; }
.news-excerpt {
  font-size: 13.5px;
  color: #718096;
  line-height: 1.65;
}


/* ─── CONTACT ─────────────────────────────────────────── */
#contact {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#contact::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(0,201,212,0.08);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info { color: white; }
.contact-info .section-title { color: white; margin-bottom: 20px; }
.contact-info .section-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-detail-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-detail-text span,
.contact-detail-text a { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5; text-decoration: none; }
.contact-detail-text a:hover { color: var(--cyan); }

.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: #25D366;
  border-radius: 14px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.35s;
}
.contact-wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.35);
}

/* ── İletişim kartı (randevu formunun yerini alır) ───────────── */
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
}
.contact-card-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.contact-card-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.contact-card-wa {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 18px 28px;
  font-size: 16px;
}
.contact-card-sep {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 18px;
}
.contact-card-sep::before,
.contact-card-sep::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.contact-card-sep span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.contact-card-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
}
.contact-card-row + .contact-card-row { margin-top: 10px; }
a.contact-card-row:hover {
  border-color: rgba(0,201,212,0.35);
  background: rgba(0,201,212,0.07);
  transform: translateX(4px);
}
.contact-card-row-static { opacity: 0.8; }
.contact-card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0,201,212,0.1);
  color: var(--cyan);
  font-size: 16px;
}
.contact-card-text { display: flex; flex-direction: column; min-width: 0; }
.contact-card-text strong {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 3px;
}
.contact-card-text span {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .contact-card { padding: 26px 20px; }
  .contact-card-title { font-size: 22px; }
  .contact-card-row { padding: 12px 13px; gap: 12px; }
  .contact-card-icon { width: 38px; height: 38px; font-size: 15px; }
  .contact-card-text span { font-size: 14px; }
}



/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: #030C18;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

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

.footer-brand .logo-name { font-size: 28px; }
.footer-brand .logo-sub { font-size: 9px; letter-spacing: 3px; }

.footer-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin: 20px 0 24px;
  max-width: 280px;
}

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--cyan); padding-left: 4px; }
.footer-col ul li a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(0,201,212,0.4);
  flex-shrink: 0;
}

/* Footer şube stripi — internal linking */
.footer-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-branch {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-branch:hover {
  background: rgba(0,201,212,0.06);
  border-color: rgba(0,201,212,0.18);
  transform: translateX(2px);
}
.footer-branch-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(0,201,212,0.12);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-branch-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}
.footer-branch-info strong {
  color: white;
  font-weight: 600;
  font-size: 14px;
}
.footer-branch-info > span { color: rgba(255,255,255,0.5); line-height: 1.4; }
.footer-branch-meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.4) !important;
  margin-top: 2px;
}
.footer-branch-meta .fbm-i { color: var(--cyan); opacity: 0.7; }

@media (max-width: 768px) {
  .footer-branches { grid-template-columns: 1fr; }
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 12.5px; }
.footer-bottom a { color: var(--cyan); }


/* ─── WHATSAPP FLOAT ─────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-bubble {
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  font-size: 13px;
  color: #333;
  font-weight: 500;
  max-width: 180px;
  text-align: right;
  opacity: 0;
  transform: translateY(8px);
  animation: bubbleIn 0.5s 2s ease both;
}
@keyframes bubbleIn { to { opacity: 1; transform: translateY(0); } }

.wa-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: all 0.35s;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}


/* ─── REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: all 0.75s cubic-bezier(0.23,1,0.32,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ═══════════════════════════════════════════════════════════════
   YENİ — Treatment Detail Sayfaları, Breadcrumb, FAQ
   ═══════════════════════════════════════════════════════════════ */

/* ─── PAGE HEADER (alt sayfa hero) ─────────────────────── */
.page-header {
  background: var(--dark);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0,201,212,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(21,101,192,0.22) 0%, transparent 60%);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
  color: white;
}

.page-header::after {
  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='none' fill-rule='evenodd'%3E%3Cg fill='%2300C9D4' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.page-header > .container { position: relative; z-index: 2; }

.page-header .section-tag { color: var(--cyan); background: rgba(0,201,212,0.1); border-color: rgba(0,201,212,0.25); }

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.page-header .page-subtitle {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 22px);
  color: var(--cyan);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.page-header .page-lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 700px;
}

/* ─── BREADCRUMBS ─────────────────────────────────────── */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--cyan); }
.breadcrumbs .sep { color: rgba(255,255,255,0.3); font-size: 11px; }
.breadcrumbs .current { color: var(--cyan); }

/* ─── TREATMENT DETAIL ────────────────────────────────── */
.treatment-detail {
  padding: 80px 0;
  background: white;
}

.treatment-hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 24px 60px rgba(21,101,192,0.12);
}
.treatment-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.treatment-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

.treatment-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: #0A1628;
  margin: 56px 0 20px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.treatment-prose h2:first-child { margin-top: 0; }
.treatment-prose h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: #0A1628;
  margin: 28px 0 12px;
  letter-spacing: -0.02em;
}
.treatment-prose p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 18px;
}
.treatment-prose strong { color: #0A1628; font-weight: 600; }

/* Procedure cards within detail */
.procedure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 12px;
}
.procedure-item {
  padding: 22px;
  background: var(--gray);
  border-radius: 14px;
  border: 1px solid rgba(21,101,192,0.06);
  transition: all 0.3s;
}
.procedure-item:hover {
  background: white;
  border-color: rgba(0,201,212,0.2);
  box-shadow: 0 12px 32px rgba(21,101,192,0.08);
}
.procedure-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.procedure-item p {
  font-size: 14px;
  line-height: 1.65;
  color: #4a5568;
  margin: 0;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.faq-item {
  background: var(--gray);
  border-radius: 14px;
  border: 1px solid rgba(21,101,192,0.06);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item[open] { background: white; border-color: rgba(0,201,212,0.25); box-shadow: 0 12px 32px rgba(21,101,192,0.06); }
.faq-question {
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 600;
  color: #0A1628;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px 22px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #4a5568;
}

/* Sidebar */
.treatment-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: var(--dark);
  color: white;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(0,201,212,0.2);
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  color: white;
}
.sidebar-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.sidebar-card .btn-primary { width: 100%; justify-content: center; }
.sidebar-card .btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background: #25D366;
  border-radius: 12px;
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.sidebar-list {
  background: white;
  border: 1px solid rgba(21,101,192,0.1);
  border-radius: 18px;
  padding: 24px;
}
.sidebar-list h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0A1628;
  margin-bottom: 16px;
}
.sidebar-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #4a5568;
  transition: all 0.2s;
}
.sidebar-list a:hover { color: var(--primary); background: var(--gray); }
.sidebar-list a.active { color: var(--primary); background: rgba(0,201,212,0.08); font-weight: 600; }
.sidebar-list a i { color: var(--cyan); width: 16px; }
.sidebar-list a svg { color: var(--cyan); flex-shrink: 0; }

/* Sidebar branches widget */
.sidebar-branches { padding: 22px; }
.sidebar-branches h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  margin-bottom: 6px;
}
.sb-branch-pick {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  margin-top: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s;
}
.sb-branch-pick:hover {
  background: rgba(0,201,212,0.08);
  border-color: rgba(0,201,212,0.25);
  transform: translateX(2px);
}
.sb-bp-thumb {
  width: 56px; height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.sb-bp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sb-bp-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
  min-width: 0;
}
.sb-bp-text strong {
  font-size: 13px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sb-bp-text span {
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
}
.sb-bp-arr { color: var(--cyan); flex-shrink: 0; }

/* ─── 404 ─────────────────────────────────────────────── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding: 40px;
  text-align: center;
  color: white;
}
.error-page h1 {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 16px;
  font-feature-settings: "tnum";
}
.error-page p { font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }


/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-inner { max-width: 700px; }

  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .treatment-card.featured { grid-row: span 1; }

  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: grid; grid-template-columns: repeat(2, 1fr); }
  .why-vis-card.tall { grid-row: span 1; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-award { display: none; }

  /* Bento daha kompakt — 2 sütun mosaic */
  .about-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 120px 120px;
  }
  .cell-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
  .cell-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .cell-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
  .cell-4 { grid-column: 1 / 2; grid-row: 3 / 4; }
  .cell-5 { grid-column: 2 / 3; grid-row: 3 / 4; }
  .cell-6 { grid-column: 1 / 3; grid-row: 4 / 5; }

  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .treatment-content { grid-template-columns: 1fr; }
  .treatment-sidebar { position: static; }

  /* Şubeler — tablet */
  .branches-grid { grid-template-columns: 1fr; gap: 20px; }
  .mega-branches-grid { grid-template-columns: 1fr; }
  .branch-detail-hero { grid-template-columns: 1fr; }
  .bd-photo-side { aspect-ratio: 16/9; }
  .bd-contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  #navbar { padding: 0 20px; }

  .nav-links,
  .nav-right .btn-cta { display: none; }
  .lang-switcher { display: none; }
  .hamburger { display: flex; }

  .hero-inner { padding: 0 20px; padding-top: 64px; }
  .hero-services { gap: 6px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .treatments-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .about-features { grid-template-columns: 1fr; }
  .procedure-grid { grid-template-columns: 1fr; }

  /* Mobile: tek sütun, hero büyük, diğerleri 2 column */
  .about-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px repeat(3, 110px);
  }
  .cell-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
  .cell-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .cell-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
  .cell-4 { grid-column: 1 / 2; grid-row: 3 / 4; }
  .cell-5 { grid-column: 2 / 3; grid-row: 3 / 4; }
  .cell-6 { grid-column: 1 / 3; grid-row: 4 / 5; }

  .container { padding: 0 16px; }
  #about, #treatments, #why-us, #contact, #news, #branches { padding: 72px 0; }
  .treatment-detail { padding: 56px 0; }
  .page-header { padding: calc(var(--nav-h) + 56px) 0 56px; }

  /* Branch detay — mobile contact grid tek kolon */
  .bd-contact-grid { grid-template-columns: 1fr; }
  .bc-photo-overlay { padding: 18px 14px 12px; gap: 14px; }
  .bc-stat-mini strong { font-size: 22px; }
  .bc-body { padding: 20px; gap: 14px; }
  .bc-name { font-size: 20px; }
  /* Mobil aksiyon butonları: ilk satır primary tam genişlik, alt satır outline+icon */
  .bc-actions { flex-wrap: wrap; }
  .bc-btn-primary { flex-basis: 100%; }
  .bc-btn-outline { flex-basis: calc(100% - 56px); flex-grow: 0; }
  .bc-btn-icon { width: 48px; height: 48px; }

  /* Branch detay sidebar (sticky kapalı, içerikle dikey akıyor) */
  .branch-detail-hero { gap: 10px; margin-bottom: 32px; }

  /* Hero badge ve subtitle daha kompakt */
  .hero-badge { padding: 6px 14px; font-size: 11px; letter-spacing: 1.2px; }
  .hero-desc { font-size: 15px; line-height: 1.7; margin: 16px 0 28px; }

  /* Page header daha kompakt mobile'da */
  .page-header h1 { font-size: clamp(34px, 8.5vw, 56px); }
  .page-header .page-subtitle { font-size: clamp(15px, 4vw, 20px); }
  .page-header .page-lead { font-size: 14.5px; }

  /* Treatment prose font biraz küçültülmeli */
  .treatment-prose p { font-size: 15.5px; line-height: 1.75; }
  .treatment-prose h2 { font-size: clamp(24px, 6.5vw, 32px); margin: 40px 0 16px; }

  /* Hero scroll indicator — küçük ekranlarda gizle (hero zaten kısa) */
  .hero-scroll { display: none; }

  .wa-float { bottom: 16px; right: 16px; }
  .wa-bubble { display: none; }
  .wa-btn { width: 52px; height: 52px; font-size: 22px; }
}

/* ─── Küçük telefonlar (≤480px) ─────────────────────── */
@media (max-width: 480px) {
  /* Daha sıkı padding/spacing */
  .container { padding: 0 14px; }
  #about, #treatments, #why-us, #contact, #branches { padding: 60px 0; }
  .treatment-detail, .branches-page { padding: 48px 0; }

  /* Hero başlığı daha küçük */
  .hero-title { font-size: clamp(36px, 11vw, 56px); letter-spacing: -0.035em; }
  .hero-title-slide { font-size: clamp(30px, 9vw, 48px); }
  .hero-inner { padding-top: 80px; }

  /* Section title biraz daha kompakt */
  .section-title { font-size: clamp(28px, 8vw, 40px); }

  /* Stats — tek satırda 2x2 kalsın ama padding düşür */
  .stats-band { padding: 48px 0; }
  .stat-item { padding: 22px 14px; }
  .stat-num { font-size: 44px; }

  /* Treatment card padding küçük */
  .treatment-card { padding: 24px 22px; }
  .treat-title { font-size: 19px; }

  /* About bento — biraz daha düşük yükseklik */
  .about-photo-grid {
    grid-template-rows: 180px repeat(3, 95px);
  }

  /* Mobile menüde daha kompakt */
  .mobile-menu { padding: 14px; }
  .mobile-menu a { font-size: 14px; padding: 11px 14px; }
  .mobile-menu .mobile-section { font-size: 10px; margin: 12px 14px 4px; }

  /* Logo — küçük telefonlarda biraz daha küçük */
  .logo-img { height: 38px; max-width: 160px; }
  #navbar.scrolled .logo-img { height: 32px; }

  /* Branch kart başlığı */
  .bc-name { font-size: 18px; }
  .bc-tagline { font-size: 13px; }

  /* Footer şube info kompakt */
  .footer-branch { padding: 14px; gap: 10px; }
  .footer-branch-info strong { font-size: 13px; }

}

/* ═══════════════════════════════════════════════════════════════
   TESİS GALERİSİ
   ═══════════════════════════════════════════════════════════════ */
.gallery-section { padding: 72px 0 88px; background: #f7faff; }

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.gal-filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.gal-chip {
  padding: 9px 18px;
  border-radius: 50px;
  border: 1px solid var(--gray-2);
  background: white;
  color: #43536b;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.25s;
}
.gal-chip:hover { border-color: var(--primary); color: var(--primary); }
.gal-chip.is-active {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  box-shadow: 0 6px 18px rgba(21,101,192,0.28);
}
.gal-count {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.gal-count svg { color: var(--primary); }

/* Masonry grid */
.gallery-grid { column-count: 4; column-gap: 16px; }
.gal-item {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--gray-2);
  break-inside: avoid;
  box-shadow: 0 4px 18px rgba(13,71,161,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}
.gal-item:hover { box-shadow: 0 14px 36px rgba(13,71,161,0.18); transform: translateY(-3px); }
.gal-item img { width: 100%; height: auto; display: block; transition: transform 0.55s cubic-bezier(0.23,1,0.32,1); }
.gal-item:hover img { transform: scale(1.07); }
.gal-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(5,16,31,0.72) 0%, rgba(5,16,31,0.05) 45%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-cap { color: white; font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em; }
.gal-zoom {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  color: white;
  transform: scale(0.8);
  transition: transform 0.3s;
}
.gal-item:hover .gal-zoom { transform: scale(1); }
.gal-empty { text-align: center; color: var(--text-muted); padding: 40px 0; font-size: 15px; }

/* Video kartları */
.gallery-videos-head { margin: 56px 0 22px; }
.gallery-videos-head h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0d1b2e;
}
.gallery-videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.gal-video {
  position: relative;
  display: block;
  padding: 0;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 9 / 16;
  background: var(--dark);
  box-shadow: 0 8px 26px rgba(13,71,161,0.14);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gal-video:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(13,71,161,0.26); }
.gal-video img { width: 100%; height: 100%; object-fit: cover; }
.gal-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,16,31,0.85) 0%, rgba(5,16,31,0.15) 50%, rgba(5,16,31,0.25) 100%);
}
.gal-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: all 0.3s;
}
.gal-video:hover .gal-video-play { background: var(--gradient); border-color: transparent; transform: translate(-50%,-50%) scale(1.08); }
.gal-video-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.gal-video-meta strong { color: white; font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; }
.gal-video-meta small { color: rgba(255,255,255,0.75); font-size: 12px; display: inline-flex; align-items: center; gap: 5px; }

/* CTA */
.gallery-cta {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 36px 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0,201,212,0.08), rgba(21,101,192,0.08));
  border: 1px solid rgba(21,101,192,0.12);
}
.gal-cta-text h2 { font-size: clamp(20px, 2.6vw, 28px); font-weight: 800; letter-spacing: -0.03em; color: #0d1b2e; margin-bottom: 6px; }
.gal-cta-text p { color: #43536b; font-size: 15px; }
.gal-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.gal-cta-actions .btn-outline:hover { background: rgba(21,101,192,0.06); }

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.gallery-lightbox[hidden] { display: none; }
.glb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,16,31,0.94);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.gallery-lightbox.is-open .glb-backdrop { opacity: 1; }
.glb-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 96vw;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.23,1,0.32,1);
}
.gallery-lightbox.is-open .glb-stage { opacity: 1; transform: scale(1); }
.glb-media { display: flex; align-items: center; justify-content: center; }
.glb-img, .glb-video {
  max-height: 84vh;
  max-width: 92vw;
  border-radius: 14px;
  display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.glb-video { background: black; max-width: min(440px, 92vw); width: auto; }
.glb-caption { color: white; font-size: 15px; font-weight: 600; text-align: center; letter-spacing: -0.01em; }
.glb-close {
  position: absolute;
  top: 20px; right: 24px;
  z-index: 3;
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.glb-close:hover { background: rgba(255,255,255,0.22); transform: rotate(90deg); }
.glb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.glb-nav:hover { background: var(--gradient); border-color: transparent; }
.glb-prev { left: 20px; }
.glb-next { right: 20px; }
.glb-prev svg { transform: rotate(180deg); }
.gallery-lightbox.is-video .glb-nav { display: none; }

/* ─── SAĞLIK TURİZMİ SERTİFİKASI (öne çıkan belge) ─── */
.cert-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--gray-2);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(13,71,161,0.10);
}
.cert-feature-media {
  position: relative;
  border: none;
  padding: 0;
  background: var(--gray);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.cert-feature-media img { width: 100%; height: auto; display: block; transition: transform 0.5s; }
.cert-feature-media:hover img { transform: scale(1.03); }
.cert-feature-media .gal-zoom { opacity: 0; transition: opacity 0.3s, transform 0.3s; }
.cert-feature-media:hover .gal-zoom { opacity: 1; transform: scale(1); }
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 50px;
  background: rgba(0,201,212,0.1);
  border: 1px solid rgba(0,201,212,0.25);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cert-feature-body h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #0d1b2e;
  margin-bottom: 14px;
}
.cert-feature-body p { color: #43536b; font-size: 15.5px; line-height: 1.7; margin-bottom: 18px; }
.cert-meta { display: flex; flex-direction: column; gap: 10px; }
.cert-meta li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #2a3b52; font-weight: 500; list-style: none; }
.cert-meta svg { color: var(--cyan); flex-shrink: 0; }

@media (max-width: 1100px) {
  .gallery-grid { column-count: 3; }
}
@media (max-width: 768px) {
  .gallery-section { padding: 48px 0 64px; }
  .gallery-grid { column-count: 2; column-gap: 12px; }
  .gal-item { margin-bottom: 12px; border-radius: 12px; }
  .gallery-videos { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .gallery-cta { padding: 28px 24px; }
  .glb-close { top: 12px; right: 14px; width: 40px; height: 40px; font-size: 24px; }
  .glb-nav { width: 44px; height: 44px; }
  .glb-prev { left: 10px; }
  .glb-next { right: 10px; }
  .cert-feature { grid-template-columns: 1fr; gap: 22px; padding: 20px; }
}
@media (max-width: 480px) {
  .gallery-grid { column-count: 2; }
  .gallery-toolbar { justify-content: center; }
}
