/* =========================================================
   Op. Dr. Ahmet Görüş — Ana Stil Dosyası
   Renkler CSS değişkenleri ile tanımlıdır; kolayca değiştirilebilir.
   ========================================================= */

:root {
  --primary-color: #243447;
  --secondary-color: #526d82;
  --accent-color: #c98b9a;
  --soft-pink: #f8e8ee;
  --soft-beige: #f7f3ee;
  --background-color: #f8fafc;
  --white-color: #ffffff;
  --text-color: #1f2937;
  --light-text-color: #64748b;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 10px rgba(36, 52, 71, 0.06);
  --shadow-md: 0 8px 28px rgba(36, 52, 71, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --container: 1140px;
  --header-height: 84px;
  --transition: 0.28s ease;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background: var(--background-color);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section--soft {
  background: var(--soft-beige);
}

.section--pink {
  background: var(--soft-pink);
}

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

.section__header {
  max-width: 680px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.section__desc {
  color: var(--light-text-color);
  font-size: 1.05rem;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--primary-color);
  line-height: 1.25;
  font-weight: 600;
}

p + p {
  margin-top: 1rem;
}

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

.lead {
  font-size: 1.1rem;
  color: var(--light-text-color);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn--primary:hover {
  background: #1a2635;
  box-shadow: var(--shadow-sm);
}

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

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

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

.btn--accent:hover {
  background: #b87888;
}

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

.btn--ghost:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-color);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.2;
}

.brand__title {
  font-size: 0.72rem;
  color: var(--light-text-color);
  margin-top: 0.15rem;
  white-space: nowrap;
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.55rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary-color);
  border-radius: 6px;
  white-space: nowrap;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.nav__link:hover,
.nav__link.is-active,
.nav__item--has-dropdown.is-open > .nav__link {
  color: var(--primary-color);
  background: var(--soft-beige);
}

.nav__caret {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--transition);
}

.nav__item--has-dropdown.is-open .nav__caret,
.nav__item--has-dropdown:hover .nav__caret {
  transform: rotate(225deg) translateY(-1px);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 240px;
  padding: 0.5rem;
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition),
    visibility var(--transition);
  z-index: 1100;
}

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

.nav__dropdown a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 6px;
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav__dropdown a:hover,
.nav__dropdown a.is-active {
  background: var(--soft-beige);
  color: var(--primary-color);
}

.header__cta {
  display: none;
}

.menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--white-color);
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.menu-toggle:hover {
  background: var(--soft-beige);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  margin-left: -9px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease, top 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 27px;
}

.menu-toggle.is-open {
  background: var(--soft-beige);
  border-color: rgba(36, 52, 71, 0.18);
}

.menu-toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: rgba(36, 52, 71, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 999;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__panel {
  background: var(--white-color);
  width: 100%;
  max-height: calc(100dvh - var(--header-height));
  padding: 0.85rem 1rem calc(1.35rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(-1.25rem);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 18px 40px rgba(36, 52, 71, 0.14);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mobile-nav__list > li {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav.is-open .mobile-nav__list > li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.is-open .mobile-nav__list > li:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-nav.is-open .mobile-nav__list > li:nth-child(2) {
  transition-delay: 0.09s;
}

.mobile-nav.is-open .mobile-nav__list > li:nth-child(3) {
  transition-delay: 0.13s;
}

.mobile-nav.is-open .mobile-nav__list > li:nth-child(4) {
  transition-delay: 0.17s;
}

.mobile-nav.is-open .mobile-nav__list > li:nth-child(5) {
  transition-delay: 0.21s;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.95rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--primary-color);
  font-weight: 500;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav__link:hover,
.mobile-nav__link:active,
.mobile-nav__link.is-active {
  background: var(--soft-beige);
}

.mobile-nav__caret {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

.mobile-nav__item--has-dropdown.is-open > .mobile-nav__link .mobile-nav__caret {
  transform: rotate(225deg);
}

.mobile-nav__dropdown {
  display: grid;
  gap: 0.1rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 0 0 0.55rem;
  margin: 0;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.mobile-nav__item--has-dropdown.is-open .mobile-nav__dropdown {
  max-height: 28rem;
  opacity: 1;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0 0.35rem 0.55rem;
}

.mobile-nav__dropdown a {
  display: block;
  padding: 0.72rem 0.8rem;
  border-radius: var(--radius-sm);
  color: var(--secondary-color);
  font-size: 0.94rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav__dropdown a:hover,
.mobile-nav__dropdown a:active,
.mobile-nav__dropdown a.is-active {
  background: var(--soft-beige);
  color: var(--primary-color);
}

.mobile-nav__cta {
  margin-top: 1.15rem;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.22s, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
}

.mobile-nav.is-open .mobile-nav__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Menü açıkken alt iletişim barını gizle */
body:has(.mobile-nav.is-open) .float-actions {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.25s ease, transform 0.3s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 139, 154, 0.14), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(82, 109, 130, 0.12), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, var(--background-color) 100%);
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-color);
  background: var(--soft-pink);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin-bottom: 1rem;
  max-width: 16ch;
}

.hero__text {
  color: var(--light-text-color);
  font-size: 1.08rem;
  max-width: 38ch;
  margin-bottom: 1.75rem;
}

.hero__media {
  position: relative;
}

.hero__image-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  background: var(--soft-beige);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.hero__shape--one {
  width: 180px;
  height: 180px;
  background: var(--soft-pink);
  top: -30px;
  right: -20px;
  animation: floatSoft 8s ease-in-out infinite;
}

.hero__shape--two {
  width: 120px;
  height: 120px;
  background: rgba(82, 109, 130, 0.12);
  bottom: 20px;
  left: -30px;
  animation: floatSoft 10s ease-in-out infinite reverse;
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #d7dee7;
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--soft-beige);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card__title {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.card__text {
  color: var(--light-text-color);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.card__link svg {
  width: 16px;
  height: 16px;
}

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

.trust-grid {
  display: grid;
  gap: 1rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.trust-card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-color);
  flex-shrink: 0;
}

.trust-card__text {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary-color);
  line-height: 1.35;
}

/* ---------- Split / About ---------- */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--soft-beige);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.split__subtitle {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ---------- Feature list ---------- */
.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 1.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-color);
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--accent-color);
  flex-shrink: 0;
}

.notice {
  background: var(--soft-beige);
  border-left: 3px solid var(--accent-color);
  padding: 1rem 1.15rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--secondary-color);
  font-size: 0.95rem;
  margin: 1.25rem 0;
}

.medical-disclaimer {
  margin-top: 2.5rem;
  padding: 1.15rem 1.25rem;
  background: var(--soft-beige);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--light-text-color);
  font-size: 0.92rem;
}

/* ---------- Page hero / breadcrumb ---------- */
.page-hero {
  padding: 2.75rem 0 2rem;
  background:
    linear-gradient(180deg, var(--white-color), var(--soft-beige));
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--light-text-color);
  margin-bottom: 1rem;
}

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

.breadcrumb__sep {
  opacity: 0.5;
}

.page-hero__title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.page-hero__desc {
  color: var(--light-text-color);
  max-width: 65ch;
}

/* ---------- Content blocks ---------- */
.content-block {
  margin-bottom: 2.5rem;
}

.content-block h2 {
  font-size: 1.55rem;
  margin-bottom: 0.85rem;
}

.content-block h3 {
  font-size: 1.2rem;
  margin: 1.35rem 0 0.65rem;
}

.content-block p,
.content-block li {
  color: var(--text-color);
}

.content-block ul {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.55rem;
}

.content-block ul li {
  padding-left: 1.1rem;
  position: relative;
}

.content-figure {
  margin: 0 0 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--soft-beige);
}

.content-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.seo-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--white-color);
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.seo-table th,
.seo-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

.seo-table th {
  background: var(--soft-beige);
  color: var(--primary-color);
  font-weight: 600;
}

.seo-table tr:last-child td {
  border-bottom: 0;
}

.seo-table a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.content-block ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary-color);
  position: absolute;
  left: 0;
  top: 0.7rem;
}

.toc {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  margin-bottom: 2rem;
}

.toc__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.toc ol {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
  color: var(--secondary-color);
}

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

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-color);
}

.faq-item__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--secondary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.is-open .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__answer-inner {
  padding: 0 1.25rem 1.15rem;
  color: var(--light-text-color);
}

.faq-category {
  margin-bottom: 2.5rem;
}

.faq-category__title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* ---------- Testimonials ---------- */
.testimonials {
  position: relative;
}

.slider {
  overflow: hidden;
  position: relative;
}

.slider__track {
  display: flex;
  transition: transform 0.45s ease;
}

.slider__slide {
  min-width: 100%;
  padding: 0.25rem;
}

.testimonial-card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  max-width: 640px;
  margin: 0 auto;
  min-height: 180px;
}

.testimonial-card__quote {
  font-size: 1.05rem;
  color: var(--text-color);
  margin-bottom: 1.25rem;
}

.testimonial-card__author {
  font-weight: 700;
  color: var(--primary-color);
}

.slider__controls {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.slider__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--white-color);
  color: var(--primary-color);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.slider__btn:hover {
  border-color: var(--secondary-color);
  background: var(--soft-beige);
}

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #cbd5e1;
  cursor: pointer;
}

.slider__dot.is-active {
  background: var(--accent-color);
}

/* ---------- Contact / Forms ---------- */
.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.contact-card h2,
.contact-card h3 {
  margin-bottom: 0.75rem;
}

.contact-meta {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}

.contact-meta__item strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.contact-meta__item span,
.contact-meta__item a {
  color: var(--light-text-color);
}

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

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  min-height: 280px;
  background: var(--soft-beige);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.map-fallback {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  gap: 1rem;
}

.hours-list {
  display: grid;
  gap: 0.45rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list li.is-closed {
  color: var(--muted-color, #6b7280);
}

.hours-list li.is-closed span:last-child {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--white-color);
  padding: 0.8rem 0.95rem;
  color: var(--text-color);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(82, 109, 130, 0.12);
  outline: none;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--light-text-color);
}

.form-check input {
  margin-top: 0.25rem;
}

.form-message {
  display: none;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-sm);
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  font-size: 0.95rem;
}

.form-message.is-visible {
  display: block;
}

.form-message--error {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: #ef4444;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary-color), #334d66);
  color: var(--white-color);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  text-align: center;
}

.cta-band h2 {
  color: var(--white-color);
  margin-bottom: 0.65rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.35rem;
  max-width: 54ch;
  margin-inline: auto;
}

.cta-band .btn--secondary {
  border-color: var(--white-color);
  color: var(--primary-color);
  background: var(--white-color);
}

.cta-band .btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white-color);
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  gap: 1.25rem;
}

.blog-card {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.blog-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--soft-beige);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: var(--light-text-color);
  margin-bottom: 0.55rem;
}

.blog-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.blog-card__excerpt {
  color: var(--light-text-color);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex: 1;
}

.related-links {
  display: grid;
  gap: 0.55rem;
}

.related-links a {
  display: block;
  padding: 0.7rem 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: background 0.22s ease, color 0.22s ease;
}

.related-links a:hover {
  background: var(--soft-beige);
}

/* Uzmanlık sayfalarındaki “İlgili sayfalar” grid */
.content-block > .related-links {
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

@media (min-width: 640px) {
  .content-block > .related-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.content-block > .related-links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  min-height: 4.25rem;
  padding: 1.05rem 1.15rem;
  background:
    linear-gradient(135deg, rgba(248, 232, 238, 0.45), transparent 55%),
    var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.22s ease, box-shadow 0.28s ease, background 0.22s ease;
}

.content-block > .related-links a::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  border-right: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  transform: rotate(-45deg);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.content-block > .related-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 139, 154, 0.55);
  background:
    linear-gradient(135deg, rgba(248, 232, 238, 0.7), transparent 50%),
    var(--white-color);
  box-shadow: var(--shadow-md);
  color: var(--primary-color);
}

.content-block > .related-links a:hover::after {
  transform: rotate(-45deg) translate(2px, 2px);
}

.content-block > .related-links a:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}

.content-block > p + .related-links {
  margin-top: 1rem;
}

.content-block:has(> .related-links) > p {
  color: var(--light-text-color);
  max-width: 42ch;
}

/* ---------- Legal warning ---------- */
.legal-warning {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

/* ---------- Floating actions ---------- */
.float-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: opacity 0.25s ease, transform 0.3s ease;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--white-color);
  transition: transform var(--transition), opacity var(--transition);
}

.float-btn:hover {
  transform: translateY(-2px);
}

.float-btn--phone {
  background: var(--primary-color);
}

.float-btn--appointment {
  background: var(--accent-color);
}

.float-btn svg {
  width: 22px;
  height: 22px;
}

/* WhatsApp butonu numara gelince aktif edilecek — stil hazır bırakıldı */
.float-btn--whatsapp {
  background: #25d366;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--white-color);
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition),
    transform var(--transition);
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

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

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-color);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white-color);
  margin-bottom: 0.35rem;
}

.footer__brand-title {
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.footer__text {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 34ch;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 0.9rem;
}

.footer__links {
  display: grid;
  gap: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

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

.footer__hours {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.footer__hours li span:first-child {
  color: rgba(255, 255, 255, 0.62);
}

.footer__hours li span:last-child {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  white-space: nowrap;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

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

.footer__credit {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Error page ---------- */
.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 0;
}

.error-page__code {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.error-page h1 {
  margin-bottom: 0.75rem;
}

.error-page p {
  color: var(--light-text-color);
  margin-bottom: 1.5rem;
}

/* ---------- Utility ---------- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.section--trust { padding-top: 0; }
.cta-band .btn-group { justify-content: center; }
.article-cover {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
  aspect-ratio: 16 / 9;
  background: var(--soft-beige);
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mb-related { margin-bottom: 1rem; }
.mt-0 { margin-top: 0; }
