:root {
  color-scheme: light;
  --bg: #fafbfc;
  --surface: #ffffff;
  --text: #0b1324;
  --muted: #6b7280;
  --primary: #008080;
  --primary-dark: #006666;
  --accent: #00a3a3;
  --border: rgba(148, 163, 184, 0.2);
  --shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.page {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.page-content {
  flex: 1;
  background: var(--bg);
  max-width: 100%;
}

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

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

.carousel {
  position: relative;
  width: min(1200px, 100%);
  max-width: 100%;
  margin: 0 auto;
  height: clamp(220px, 42vw, 420px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  box-sizing: border-box;
}

.carousel-item {
  height: 100%;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-indicators li {
  background-color: rgba(255, 255, 255, 0.7);
}

.carousel-indicators .active {
  background-color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  width: 56px;
  opacity: 1;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev {
  left: 12px;
  right: auto;
}

.carousel-control-next {
  right: 12px;
  left: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.55);
  background-size: 18px 18px;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3e%3cpath d='M4.646 14.354a.5.5 0 0 1 0-.708L10.293 8 4.646 2.354a.5.5 0 1 1 .708-.708l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708 0z'/%3e%3c/svg%3e");
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: calc(24px + var(--cookie-alert-offset, 0px));
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--primary, #008080);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.2s ease, background 0.2s ease, visibility 0s linear 0.25s;
  z-index: 99999;
  box-shadow: 0 4px 14px rgba(0, 128, 128, 0.4);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.container {
  width: min(1120px, 92%);
  max-width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .page {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .section {
    padding-left: 0;
    padding-right: 0;
  }

  .site-header .header-top-inner,
  .site-header .header-inner {
    padding-left: 0;
    padding-right: 0;
  }
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(0, 128, 128, 0.35);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.header-top {
  background: linear-gradient(120deg, rgba(0, 196, 196, 0.25), rgba(0, 128, 128, 0.25));
  border-bottom: 1px solid rgba(0, 128, 128, 0.35);
  box-shadow: inset 0 -1px 0 rgba(0, 128, 128, 0.2), 0 12px 24px rgba(0, 128, 128, 0.18);
  backdrop-filter: blur(6px);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.header-phone i {
  color: var(--primary);
}

.header-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.header-address i {
  color: var(--primary);
}

.header-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  transition: color 0.2s ease, transform 0.25s ease, background 0.25s ease;
}

.header-social a i {
  font-size: 1.4rem;
  line-height: 1;
  color: inherit;
}

.header-social a:hover {
  transform: scale(1.30);
  filter: none;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.floating-social {
  position: fixed;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1200;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Galeri (Fancybox) açıkken soldaki sosyal ikonlar görünmesin */
.floating-social.fancybox-open {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.floating-social a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  text-shadow: none;
  transition: color 0.2s ease, transform 0.25s ease, background 0.25s ease;
  animation: none;
}

.floating-social a i {
  font-size: 1.7rem;
  line-height: 1;
}

.floating-social a:hover {
  transform: scale(1.30);
  filter: none;
}

/* Header & floating: marka renkleri (önce base, sonra hover) */
/* WhatsApp: class (social-whatsapp) veya link (wa.me / whatsapp.com) ile eşleşsin */
.header-social a.social-whatsapp,
.header-social a.social-whats-app,
.header-social a.social-whatshapp,
.header-social a[href*="wa.me"],
.header-social a[href*="whatsapp.com"],
.floating-social a.social-whatsapp,
.floating-social a.social-whats-app,
.floating-social a.social-whatshapp,
.floating-social a[href*="wa.me"],
.floating-social a[href*="whatsapp.com"] {
  color: #25D366 !important;
  border-color: #25D366 !important;
}
.header-social a.social-whatsapp:hover,
.header-social a.social-whats-app:hover,
.header-social a.social-whatshapp:hover,
.header-social a[href*="wa.me"]:hover,
.header-social a[href*="whatsapp.com"]:hover,
.floating-social a.social-whatsapp:hover,
.floating-social a.social-whats-app:hover,
.floating-social a.social-whatshapp:hover,
.floating-social a[href*="wa.me"]:hover,
.floating-social a[href*="whatsapp.com"]:hover {
  background: #25D366 !important;
  color: #fff !important;
  border-color: #25D366 !important;
}
/* WhatsApp ikonu doğrudan yeşil */
.header-social a.social-whatsapp i,
.header-social a.social-whatshapp i,
.header-social a[href*="wa.me"] i,
.header-social a[href*="whatsapp.com"] i,
.floating-social a.social-whatsapp i,
.floating-social a.social-whatshapp i,
.floating-social a[href*="wa.me"] i,
.floating-social a[href*="whatsapp.com"] i {
  color: #25D366 !important;
}
.header-social a.social-whatsapp:hover i,
.header-social a.social-whatshapp:hover i,
.header-social a[href*="wa.me"]:hover i,
.header-social a[href*="whatsapp.com"]:hover i,
.floating-social a.social-whatsapp:hover i,
.floating-social a.social-whatshapp:hover i,
.floating-social a[href*="wa.me"]:hover i,
.floating-social a[href*="whatsapp.com"]:hover i {
  color: #fff !important;
}

.header-social a.social-instagram,
.floating-social a.social-instagram {
  color: #E4405F;
  border-color: #E4405F;
}
.header-social a.social-instagram:hover,
.floating-social a.social-instagram:hover {
  background: #E4405F;
  color: #fff;
  border-color: #E4405F;
}

.header-social a.social-facebook,
.floating-social a.social-facebook {
  color: #1877F2;
  border-color: #1877F2;
}
.header-social a.social-facebook:hover,
.floating-social a.social-facebook:hover {
  background: #1877F2;
  color: #fff;
  border-color: #1877F2;
}

.header-social a.social-youtube,
.floating-social a.social-youtube {
  color: #FF0000;
  border-color: #FF0000;
}
.header-social a.social-youtube:hover,
.floating-social a.social-youtube:hover {
  background: #FF0000;
  color: #fff;
  border-color: #FF0000;
}

.header-social a.social-x,
.floating-social a.social-x {
  color: #000000;
  border-color: #000000;
}
.header-social a.social-x:hover,
.floating-social a.social-x:hover {
  background: #000000;
  color: #fff;
  border-color: #000000;
}

/* Gizli sosyal medya linkleri (YouTube, X) */
.social-link--disabled {
  display: none !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 0;
  gap: 24px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.logo-image {
  display: block;
  height: 60px;
  width: 200px;
}


.logo-text {
  font-size: 1.1rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switcher--desktop {
  margin-left: 6px;
}

.language-switcher--mobile {
  display: none;
}

.language-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.language-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.language-btn.is-active {
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 128, 128, 0.18);
}
.flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background-size: cover;
  background-position: center;
  display: inline-block;
}

.flag-tr {
  background-image: url("https://flagcdn.com/w40/tr.png");
}

.flag-en {
  background-image: url("https://flagcdn.com/w40/gb.png");
}
.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 20px;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary);
}

.main-nav .btn-primary,
.main-nav .btn-primary:hover,
.main-nav .btn-primary:focus-visible,
.main-nav .btn-primary:active,
.main-nav .btn-primary:focus,
.main-nav .btn-primary:visited,
.main-nav .btn-primary.active,
.main-nav .btn-primary:not(:disabled):not(.disabled):active,
.main-nav .btn-primary:not(:disabled):not(.disabled).active {
  color: #fff;
  background: #008080;
  background-color: #008080;
  border-color: #008080;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.btn-appointment {
  padding: 10px;
}

/* Geri dön butonu: hover'da tam primary renk/border olmasın, gradient kalsın */
.btn-appointment-back:hover,
.btn-appointment-back:focus,
.btn-appointment-back:active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 55%, var(--primary-dark) 100%);
  background-size: 200% 200%;
  background-position: right center;
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-appointment-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0, 128, 128, 0.45);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 55%, var(--primary-dark) 100%);
  background-size: 200% 200%;
  background-position: left center;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 40px rgba(0, 128, 128, 0.35);
  text-shadow: 0 1px 6px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(0, 128, 128, 0.45);
}

.btn-primary:active,
.btn-primary.active,
.btn-primary:focus,
.btn-primary:active:focus {
  background: #008080;
  border-color: #008080;
  transform: translateY(0);
  box-shadow: 0 14px 32px rgba(0, 128, 128, 0.32);
}

.btn:focus-visible {
  outline: 3px solid rgba(0, 128, 128, 0.35);
  outline-offset: 2px;
}

.btn-secondary {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.15));
}

.hero-content {
  position: relative;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  padding: 80px 0;
  color: #fff;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.hero-metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-metrics strong {
  font-size: 1.4rem;
  display: block;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 128, 128, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.appointment-form {
  display: grid;
  gap: 14px;
}

.appointment-form input,
.appointment-form select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f8fafc;
}

.appointment-form small {
  color: var(--muted);
}

.section {
  padding: 20px;
  background: transparent;
}

.page-content > .section:first-child {
  padding-top: 40px;
}

.section.alt {
  background: transparent;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading .section-title {
  color: var(--primary);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-heading h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

.section-heading .section-subtitle {
  margin: 12px 0 0;
  color: var(--muted);
}

.section-heading .doctor-specialty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(0, 128, 128, 0.12);
  box-shadow: 0 10px 24px rgba(0, 128, 128, 0.18);
}

.list-group-item.active {
  color: #fff;
  background-color: #008080;
  border-color: #008080;
}

/* Diğer Hekimlerimiz – yumuşak köşeler */
.list-group-doctors {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.list-group-doctors .list-group-item {
  border-radius: 0;
  border-left: none;
  border-right: none;
}

.list-group-doctors .list-group-item:first-child {
  border-top: none;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.list-group-doctors .list-group-item:last-child {
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

/* Aktif öğe – doktorlar ve hizmetler listesinde aynı teal renk */
.list-group-doctors .list-group-item.active {
  color: #fff;
  background-color: #008080;
  border-color: #008080;
}

.list-group-doctors .list-group-item.active .font-weight-bold,
.list-group-doctors .list-group-item.active small {
  color: #fff;
}

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 800;
  text-align: center;
  margin: 0 0 12px;
}

.eyebrow-title {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px;
}

.cards-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

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

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

/* Galeri */
.gallery-section .section-heading {
  margin-bottom: 28px;
}

.gallery-section .gallery-wrapper {
  padding-bottom: 16px;
}

.gallery-section .filters {
  margin-bottom: 28px;
}

.gallery-section .filters ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery-section .filters li {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: var(--muted);
}

.gallery-section .filters li:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.gallery-section .filters li.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.gallery-section .filters-content .gallery-grid.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.gallery-section .gallery-col {
  position: relative;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .gallery-section .filters-content .gallery-col.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .gallery-section .filters-content .gallery-col.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.gallery-link {
  display: block;
  line-height: 0;
}

.gallery-item img,
.gallery-link img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

.gallery-link:hover img {
  opacity: 0.92;
}

.card-style-five {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-style-five:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
}

.card-style-five .img-meta {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}

.card-style-five::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.75));
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.card-style-five:hover::after {
  opacity: 0.9;
}

.card-style-five .service-title {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  z-index: 1;
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.card-style-five .hover-content {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 16px;
  color: #fff;
  background: rgba(0, 128, 128, 0.92);
  border-radius: 16px;
  transform: translateY(16px);
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  z-index: 2;
  min-height: 118px;
  display: flex;
  flex-direction: column;
}

.card-style-five:hover .hover-content {
  transform: translateY(0);
  opacity: 1;
}

.card-style-five .title {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.card-style-five .hover-content p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.card-style-five .service-read-more {
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.card-style-five .service-read-more:hover,
.card-style-five .service-read-more:focus-visible {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.85);
}

.card {
  background: rgba(255, 255, 255, 0.92);
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(15, 23, 42, 0.12);
}

.card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 600;
}

.doctor-hero-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 24px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.doctor-hero-media {
  padding: 18px;
}

.doctor-hero-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.doctor-hero-content {
  padding: 24px 24px 24px 0;
}

.doctor-hero-content h3 {
  margin: 12px 0 8px;
}

.doctor-hero-content p {
  margin: 0;
  color: var(--muted);
}

.doctor-contact {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(248, 250, 255, 0.9);
  border: 1px solid var(--border);
}

.doctor-contact h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.doctor-detail-card {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 163, 163, 0.14);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.doctor-detail-card .card-title {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.doctor-detail-card .list-unstyled li {
  color: var(--muted);
  padding-bottom: 6px;
}

.doctor-unified-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.doctor-unified-hero {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 24px;
  padding-bottom: 24px;
}

.doctor-unified-hero .doctor-hero-media {
  padding: 20px 20px 0;
}

.doctor-unified-hero .doctor-hero-content {
  padding: 20px 24px 24px 0;
}

.doctor-unified-body {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(0, 163, 163, 0.12);
  margin-top: 0;
}

.doctor-unified-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.doctor-unified-body .list-unstyled li {
  color: var(--muted);
  padding-bottom: 6px;
}

@media (max-width: 900px) {
  .doctor-unified-hero {
    grid-template-columns: 1fr;
  }

  .doctor-unified-hero .doctor-hero-media {
    padding: 20px 20px 0;
  }

  .doctor-unified-hero .doctor-hero-content {
    padding: 0 20px 20px;
  }

  .doctor-unified-body {
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .doctor-hero-card {
    grid-template-columns: 1fr;
  }

  .doctor-hero-content {
    padding: 0 18px 24px;
  }
}

.feature-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

#why-us {
  position: relative;
  overflow: hidden;
}

#why-us::before,
#why-us::after {
  content: none;
}

#why-us .container {
  position: relative;
  z-index: 1;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(0, 128, 128, 0.16);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 250, 0.9));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}


.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
  border-color: rgba(0, 128, 128, 0.26);
}


.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #008c8c 0%, #00b3b3 100%);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 12px 26px rgba(0, 128, 128, 0.25);
}

.feature-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
}

.feature-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.team-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}

.team-block-one {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
  min-height: 320px;
}

.team-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.overlay-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.85));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.team-block-one:hover .overlay-bg {
  opacity: 1;
}

.team-block-one .hover-content {
  padding: 18px;
  color: #fff;
}

.team-block-one .hover-content a {
  color: inherit;
  text-decoration: none;
}

.team-block-one .name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 128, 128, 0.75);
  color: #fff;
  text-shadow: 0 2px 8px rgba(15, 23, 42, 0.55);
  box-shadow: 0 10px 22px rgba(0, 128, 128, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.team-block-one:hover .name {
  transform: translateY(-2px);
  background: rgba(0, 163, 163, 0.9);
  box-shadow: 0 16px 28px rgba(0, 128, 128, 0.45);
}

.team-block-one p {
  margin: 8px 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.social-icon {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.social-icon a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-icon a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.35);
}

.reviews-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.review-card {
  position: relative;
  margin: 0;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 128, 128, 0.18);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 3.2rem;
  color: rgba(0, 128, 128, 0.14);
  font-weight: 700;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 55px rgba(15, 23, 42, 0.15);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #008c8c, #00b3b3);
  box-shadow: 0 12px 22px rgba(0, 128, 128, 0.25);
  flex-shrink: 0;
}

.review-card__identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__name {
  font-style: normal;
  font-weight: 700;
  color: #0f172a;
}

.review-card__meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.review-card__rating {
  margin-left: auto;
  display: inline-flex;
  gap: 4px;
  color: #f59e0b;
}

.review-card__rating i {
  font-size: 0.85rem;
}

.review-card__text {
  margin: 0;
  color: #0f172a;
  font-size: 0.98rem;
}

.cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 42px 48px;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, #008f8f 0%, #00b3b3 45%, #007d7d 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 32px 80px rgba(0, 128, 128, 0.35);
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.35), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.2), transparent 48%);
  opacity: 0.9;
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.cta > div,
.cta > a {
  position: relative;
  z-index: 1;
}

.cta h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
}

.cta .btn-primary {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
  text-shadow: none;
}

.cta .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  color: #005a5a;
}

/* Fiyat Listesi bölümü */
.price-list-section {
  padding: 40px 20px 60px;
}

.price-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.price-accordion-card {
  border: 1px solid rgba(0, 128, 128, 0.2);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.price-accordion-card:hover {
  border-color: rgba(0, 128, 128, 0.35);
  box-shadow: 0 8px 28px rgba(0, 128, 128, 0.1);
}

.price-accordion-header {
  padding: 0;
  background: linear-gradient(135deg, rgba(248, 252, 252, 0.98), rgba(243, 249, 250, 0.9));
  border-bottom: none;
}

.price-accordion-header .btn-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 18px 24px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding-right: 48px;
  transition: color 0.2s ease, background 0.2s ease;
}

.price-accordion-header .btn-link:hover {
  color: var(--primary);
  text-decoration: none;
  background: rgba(0, 128, 128, 0.05);
}

.price-accordion-header .btn-link::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.price-accordion-header .btn-link:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);
}

.price-table {
  margin: 0;
  margin-top: 12px;
  font-size: 0.95rem;
}

.price-table thead th {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  font-weight: 600;
  padding: 14px 20px;
  border: none;
}

.price-table tbody tr {
  border-bottom: 1px solid rgba(0, 128, 128, 0.08);
  transition: background 0.2s ease;
}

.price-table tbody tr:hover {
  background: rgba(0, 128, 128, 0.04);
}

.price-table tbody tr:last-child {
  border-bottom: none;
}

.price-table td {
  padding: 12px 20px;
  vertical-align: middle;
}

.price-table td:first-child {
  font-weight: 500;
  color: var(--text);
}

.price-table td:last-child {
  font-weight: 600;
  color: var(--primary-dark);
}

.price-disclaimer {
  font-size: 0.9rem;
}

/* Sıkça Sorulanlar bölümü */
.faq-section {
  padding: 24px 0 60px;
  background: transparent;
}

.faq-section .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.faq-accordion {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.faq-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 0;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

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

  .faq-accordion {
    grid-template-columns: 1fr;
  }
}

.faq-card-header {
  padding: 0;
  background: #f8fafc;
  border-bottom: none;
}

.faq-card-header .btn-link {
  display: block;
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary, #005a5a);
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding-right: 44px;
}

.faq-card-header .btn-link:hover {
  color: #004040;
  text-decoration: none;
}

.faq-card-header .btn-link::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.faq-card-header .btn-link:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-card .card-body {
  padding: 16px 20px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text, #334155);
  background: #fff;
  border-top: 1px solid #e2e8f0;
}

.faq-cevap-metin + .faq-video-wrapper,
.faq-video-wrapper {
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.faq-video-wrapper .ratio iframe {
  border: 0;
}

/* İletişim bölümü – görseldeki yeni tasarım */
.contact-section-new {
  background: transparent !important;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 40px 20px 48px !important;
  position: relative;
  overflow: hidden;
}

.contact-section-new::before {
  display: none;
}

.contact-section-heading .section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-section-heading .contact-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
}

.contact-section-heading .contact-instruction {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 28px;
}

.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 380px 1fr;
    gap: 24px;
    align-items: stretch;
  }
}

.contact-form-column {
  min-width: 0;
}

.contact-title-row {
  text-align: center;
  margin-bottom: 24px;
}

.contact-title-row .section-title {
  margin-bottom: 8px;
}

.contact-info-column {
  min-width: 0;
}

.contact-info-card {
  background: linear-gradient(165deg, #ffffff 0%, #f8fcfc 100%);
  border-radius: 28px;
  padding: 28px 32px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08), 0 8px 24px rgba(0, 128, 128, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  border: 1px solid rgba(0, 128, 128, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.contact-info-card:hover {
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.1), 0 12px 32px rgba(0, 128, 128, 0.08);
}

.contact-section-new .contact-section-heading {
  margin-bottom: 24px;
}

.contact-section-new .contact-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}

.contact-info-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

/* İletişim kartı – modern satır yapısı */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 4px 0;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(0, 128, 128, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-info-item:hover .contact-info-icon {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(0, 128, 128, 0.3);
}
.contact-info-icon i {
  font-size: 1.05rem;
}
.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.contact-info-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}
.contact-info-link {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.contact-info-link:hover {
  color: var(--primary-dark);
  opacity: 0.9;
}

.contact-map-wrapper {
  min-width: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.1), 0 8px 24px rgba(0, 128, 128, 0.06);
  border: 1px solid rgba(0, 128, 128, 0.08);
}

.contact-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 300px;
  min-height: 260px;
  border: 0;
  border-radius: 28px;
}

@media (min-width: 768px) {
  .contact-map-wrapper iframe {
    height: 380px;
    min-height: 340px;
  }
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.contact-form {
  background: #ffffff;
  padding: 28px 32px;
  border-radius: var(--radius);
  border: none;
  display: grid;
  gap: 14px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}

.contact-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
}

.contact-form .btn-appointment {
  margin-top: 8px;
  padding: 14px 24px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 128, 128, 0.35);
}

.contact-form .invalid-feedback {
  display: none;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #dc3545;
}

.contact-form.was-validated input:invalid,
.contact-form.was-validated textarea:invalid {
  border-color: #dc3545;
  background: #fff5f5;
}

.contact-form.was-validated input:invalid ~ .invalid-feedback,
.contact-form.was-validated textarea:invalid ~ .invalid-feedback {
  display: block;
}

/* Online randevu adımları */
.online-randevu-section {
  padding-top: 24px;
  padding-bottom: 40px;
}

.online-randevu-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  padding: 26px;
}

.appointment-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.appointment-step {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 10px 8px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #64748b;
}

.appointment-step span {
  font-weight: 700;
  color: inherit;
}

.appointment-step small {
  font-size: 0.78rem;
  font-weight: 600;
}

.appointment-step.is-active {
  border-color: #facc15;
  background: #fffbeb;
  color: #111827;
}

.appointment-step.is-done {
  border-color: #16a34a;
  color: #166534;
  background: #f0fdf4;
}

.appointment-step-panel {
  display: none;
}

.appointment-step-panel.is-active {
  display: block;
}

.appointment-label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}

.appointment-select,
.appointment-input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  padding: 12px 14px;
  min-height: 48px;
}

.appointment-textarea {
  min-height: 92px;
  resize: vertical;
}

.appointment-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.appointment-date-time-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.appointment-time-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.appointment-time-btn {
  border: 1px solid #9ca3af;
  border-radius: 999px;
  background: #fff;
  min-width: 92px;
  padding: 8px 12px;
  color: #111827;
  cursor: pointer;
}

.appointment-time-btn.is-selected {
  border-color: #16a34a;
  color: #16a34a;
  background: #f0fdf4;
}

.appointment-time-btn.is-disabled {
  border-color: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
  background: #f3f4f6;
}

.appointment-form-grid {
  display: grid;
  gap: 12px;
}

.appointment-field {
  display: block;
}

.appointment-input.is-invalid {
  border-color: #dc2626;
  background: #fff5f5;
}

.appointment-consent-item input.is-invalid {
  outline: 1px solid #dc2626;
  outline-offset: 2px;
}

.appointment-invalid-feedback {
  display: none;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #dc2626;
}

.appointment-invalid-feedback.is-visible {
  display: block;
}

.appointment-captcha {
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.appointment-captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.appointment-captcha-display {
  font-family: "Courier New", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  padding: 12px 20px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px dashed #d97706;
  border-radius: 12px;
  color: #92400e;
  min-width: 180px;
  text-align: center;
  user-select: none;
}

.appointment-captcha-refresh {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 12px;
}

.appointment-captcha-input {
  max-width: 160px;
}

.appointment-consent-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.appointment-consent-list label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0;
  color: #374151;
}

.appointment-summary {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px;
}

.appointment-summary-list {
  margin: 0;
  padding-left: 18px;
}

.appointment-feedback {
  min-height: 24px;
  margin: 14px 0 0;
  font-weight: 600;
}

.appointment-feedback.is-error {
  color: #dc2626;
}

.appointment-feedback.is-success {
  color: #16a34a;
}

.appointment-empty {
  color: #6b7280;
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  .appointment-date-time-grid {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
}

.site-footer {
  position: relative;
  background: radial-gradient(circle at top left, #111827, #0f172a 45%, #0b1224);
  color: #e2e8f0;
  padding: 64px 0 32px;
}

@media (max-width: 767px) {
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
}

.footer-inner {
  display: grid;
  gap: 28px;
}

.footer-top {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.footer-brand .logo-text {
  display: inline-flex;
  align-items: flex-start;
  font-size: 1.3rem;
  color: #f8fafc;
  line-height: 0;
}

.footer-logo {
  display: block;
  height: 60px;
  width: 180px;
}

.footer-brand p {
  margin: 10px 0 12px;
  color: #cbd5f5;
}

.footer-note {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 128, 128, 0.18);
  color: #c7f4f4;
  font-size: 0.85rem;
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #f8fafc;
}

.footer-contact p,
.footer-social p {
  margin: 0 0 8px;
  color: #cbd5f5;
}

.site-footer .contact-list {
  margin-top: 12px;
  color: #cbd5f5;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer-links a {
  color: #cbd5f5;
  transition: color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(148, 163, 184, 0.2);
  color: #f8fafc;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social-links a:hover {
  transform: translateY(-2px) scale(1.30);
  background: rgba(148, 163, 184, 0.35);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding-top: 18px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-legal-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: #e2e8f0;
}

.cookie-modal-content .modal-body {
  max-height: 60vh;
}

.cookie-modal-content .modal-body p {
  margin-bottom: 0.85rem;
  color: #334155;
}

.cookie-modal-content .modal-body p:last-child {
  margin-bottom: 0;
}

/* Çerez uyarı çubuğu (sayfanın altı, tam genişlik) */
.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #343a40;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.6rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.35s ease-out;
}

.cookiealert.show {
  transform: translateY(0);
}

.cookiealert-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  text-align: center;
}

.cookiealert-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}

.cookiealert-text .cookiealert-btn {
  margin-left: 0.25rem;
  vertical-align: middle;
}


.cookiealert a.cookiealert-learn-more {
  color: #7dd3fc;
  text-decoration: underline;
  margin-left: 0.25rem;
}

.cookiealert a.cookiealert-learn-more:hover {
  color: #bae6fd;
}

/* Çerez çubuğu butonu = menüdeki Randevu Al gibi */
.cookiealert .btn-primary,
.cookiealert .btn-primary:hover,
.cookiealert .btn-primary:focus-visible,
.cookiealert .btn-primary:active,
.cookiealert .btn-primary:focus,
.cookiealert .btn-primary:visited {
  color: #fff;
  background: #008080;
  background-color: #008080;
  border-color: #008080;
}

.cookiealert .btn-appointment {
  padding: 10px 18px;
  font-weight: 600;
  border-radius: 8px;
}

.cookiealert.accepted {
  display: none !important;
}

/* Diğer Hizmetler – list-group-doctors ile doktorlar sayfasındaki sol tasarımla aynı */

.service-detail-heading .section-lead {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--muted);
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 24px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 255, 0.9));
  border: 1px solid var(--border);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}

.service-detail-media {
  position: relative;
  padding: 18px;
}

.service-detail-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.service-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #f8fafc;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

.service-detail-body {
  padding: 24px 24px 24px 0;
}

.service-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.service-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 163, 163, 0.14);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.service-detail-body h3 {
  margin: 10px 0 10px;
}

.service-summary-extended {
  margin: 0;
  color: var(--muted);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-detail-card {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 163, 163, 0.14);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.service-detail-card h4 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.service-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.service-detail-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.service-detail-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: rgba(0, 163, 163, 0.6);
  box-shadow: 0 0 0 4px rgba(0, 163, 163, 0.15);
}

@media (max-width: 900px) {
  .service-detail-hero {
    grid-template-columns: 1fr;
  }

  .service-detail-body {
    padding: 0 18px 24px;
  }
}


@media (max-width: 900px) {
  .language-switcher--desktop {
    display: none;
  }

  .language-switcher--mobile {
    display: inline-flex;
  }

  .language-switcher {
    order: 3;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 4%;
    flex-direction: column;
    background: var(--surface);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .floating-social {
    right: 10px;
    gap: 10px;
    top: 60%;
  }

  .floating-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .floating-social a i {
    font-size: 1.55rem;
    line-height: 1;
  }
}

@media (max-width: 700px) {
  .hero-content {
    padding-top: 100px;
  }

  .carousel-item img {
    height: min(55vh, 360px);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-block-one {
    min-height: 0;
  }

  .team-img {
    height: auto;
  }

  .hero-card {
    margin-bottom: 20px;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-to-top {
    right: 16px;
    bottom: calc(16px + var(--cookie-alert-offset, 0px));
    width: 42px;
    height: 42px;
  }
}

/* Galeri (Fancybox) – sadece kapatma (X) butonu görünsün, diğer toolbar ikonları gizli */
.fancybox__toolbar {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.fancybox__container.is-idle .fancybox__toolbar {
  opacity: 1 !important;
  animation: none !important;
}
.fancybox__toolbar .f-button {
  display: none !important;
}
.fancybox__toolbar .f-button.is-close-btn,
.fancybox__toolbar .f-button[data-fancybox-close],
.fancybox__toolbar .f-button[aria-label="Close"] {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 60 !important;
  --f-button-width: 44px !important;
  --f-button-height: 44px !important;
  background: rgba(0, 0, 0, 0.5) !important;
  border-radius: 50% !important;
}
.fancybox__toolbar .f-button.is-close-btn svg,
.fancybox__toolbar .f-button[data-fancybox-close] svg {
  width: 24px !important;
  height: 24px !important;
}

/* İleri/geri okları resmin solunda ve sağında, yukarıdan-aşağıdan ortada */
.fancybox__nav {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 0 !important;
  padding: 0 20px !important;
  pointer-events: none !important;
}
.fancybox__nav .f-button {
  pointer-events: auto !important;
}
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  margin: 0 !important;
  transform: none !important;
}
.fancybox__nav .f-button {
  --f-button-width: 44px !important;
  --f-button-height: 44px !important;
  --f-button-svg-width: 22px !important;
  --f-button-svg-height: 22px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-radius: 50% !important;
  color: rgba(255, 255, 255, 0.9) !important;
}
.fancybox__nav .f-button:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  color: #fff !important;
}
.fancybox__nav .f-button svg {
  fill: currentColor !important;
}
.is-horizontal .fancybox__nav .f-button.is-prev {
  order: 1;
}
.is-horizontal .fancybox__nav .f-button.is-next {
  order: 2;
}

/* Mobil: resmin üstündeki ikinci kapatma butonunu kaldır */
@media (max-width: 768px) {
  /* Resmin üstündeki / slide içindeki kapatma butonunu gizle (üstteki tek X kalsın) */
  .fancybox__carousel .f-button.is-close-btn,
  .fancybox__slide .f-button.is-close-btn,
  .fancybox__toolbar .f-button.is-close-btn:nth-of-type(n+2) {
    display: none !important;
  }
}

/* Galeri – film şeridi: thumbnails altta, cookie çubuğunun üstünde; tıklama backdrop'a gitmesin */
.fancybox__thumbs,
.f-thumbs,
.f-classic-thumbs {
  top: auto !important;
  bottom: 70px !important; /* Cookie alert yüksekliği kadar üstte, altında kalmaz */
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100px !important;
  max-height: 100px !important;
  padding: 12px 16px !important;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 12%, rgba(0, 0, 0, 0.9) 100%) !important;
  border-top: 3px solid rgba(255, 255, 255, 0.15) !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  z-index: 1100 !important; /* Backdrop'un üstünde, film şeridine tıklanınca galeri kapanmasın */
  pointer-events: auto !important;
}
.fancybox__thumbs.is-masked,
.f-thumbs.is-masked {
  height: 100px !important;
  max-height: 100px !important;
}
.is-idle .fancybox__thumbs,
.is-idle .f-thumbs {
  opacity: 1 !important;
  animation: none !important;
}
.f-classic-thumbs__viewport,
.fancybox__thumbs .f-carousel__viewport {
  width: 100% !important;
  max-width: 100% !important;
  max-height: 76px !important;
}
.f-classic-thumbs__track,
.fancybox__thumbs .f-carousel__track {
  flex-direction: row !important;
  gap: 10px !important;
  align-items: center !important;
  justify-content: center !important;
}
.f-classic-thumbs__slide,
.fancybox__thumbs .f-carousel__slide {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  flex-shrink: 0 !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  opacity: 0.55 !important;
  transform: scale(0.92) !important;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out, box-shadow 0.25s ease-out !important;
  cursor: pointer !important;
}
.fancybox__thumbs .f-carousel__slide:hover,
.f-classic-thumbs__slide:hover {
  opacity: 0.85 !important;
  transform: scale(1) !important;
}
.fancybox__thumbs .f-carousel__slide.is-nav-selected,
.fancybox__thumbs .f-thumbs__slide.is-nav-selected,
.f-classic-thumbs__slide.is-nav-selected {
  width: 72px !important;
  height: 72px !important;
  min-width: 72px !important;
  min-height: 72px !important;
  opacity: 1 !important;
  transform: scale(1.15) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.9) !important;
  z-index: 5 !important;
}
.fancybox__thumbs .f-thumbs__slide img,
.fancybox__thumbs .f-carousel__slide img,
.f-classic-thumbs__slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 6px !important;
  display: block !important;
}

/* Galeri – koyu gri tam ekran arka plan (görseldeki gibi) */
.fancybox__backdrop {
  background: #1a1a1a !important;
  transition: opacity 0.25s ease-out;
}

/* Caption: resmin hemen altında, ortada, beyaz/açık gri */
.fancybox__slide.has-caption {
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}
.fancybox__caption {
  max-width: 90%;
  padding: 14px 20px 8px !important;
  text-align: center !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.05rem !important;
  line-height: 1.4 !important;
  order: 2 !important;
}

/* Galeri (Fancybox) açılış/kapanış geçişleri */
.fancybox__content {
  transition: opacity 0.2s ease-out, transform 0.25s ease-out;
  border-radius: 12px;
  overflow: hidden;
}
.fancybox__slide {
  transition: opacity 0.2s ease-out;
}
.fancybox__container {
  transition: opacity 0.2s ease-out;
}

/* Galeri lightbox içindeki resimlere yuvarlatılmış köşe */
.fancybox__content img,
.fancybox__content .fancybox__image {
  border-radius: 12px;
}
