:root {
	--ink: #241d33;
	--ink-deep: #191426;
	--primary: #4e4168;
	--soft: #9d94ad;
	--surface: #f8f7f9;
	--mint: #e8d9b8;
	--white: #ffffff;
	--line: #e5e2e9;
	--wa: #25d366;
	--font-display: 'Newsreader', 'Iowan Old Style', Georgia, serif;
	--font-body: 'Public Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--radius: 16px;
	--shadow: 0 10px 30px rgba(36, 29, 51, 0.12);
	--shadow-lg: 0 24px 60px rgba(25, 20, 38, 0.28);
	--contour: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='900'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.045'%3E%3Ccircle cx='450' cy='450' r='110'/%3E%3Ccircle cx='450' cy='450' r='190'/%3E%3Ccircle cx='450' cy='450' r='270'/%3E%3Ccircle cx='450' cy='450' r='350'/%3E%3Ccircle cx='450' cy='450' r='430'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; margin: 0; }
img { max-width: 100%; height: auto; display: block; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, .brand-name, .footer-name, .cta-band-text {
	font-family: var(--font-display);
	font-weight: 300;
	line-height: 1.1;
	letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; font-weight: 400; letter-spacing: -0.006em; }
a { color: var(--primary); }

.container { max-width: 1180px; margin-inline: auto; padding-inline: 20px; }
.section-pad { padding-block: 76px; }
.section-title { margin-bottom: 38px; }
.lead { font-size: 1.12rem; margin-top: 14px; }
.empty-state { text-align: center; color: var(--soft); padding-block: 48px; }

.eyebrow {
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--soft); flex: none; }
.eyebrow-light, .hero-dark .eyebrow, .page-hero .eyebrow { color: var(--mint); }
.eyebrow-light::before, .hero-dark .eyebrow::before, .page-hero .eyebrow::before { background: var(--mint); }

/* Butonlar */
.btn {
	display: inline-block;
	padding: 0.85rem 1.7rem;
	border-radius: 999px;
	text-decoration: none;
	border: 1px solid transparent;
	font-family: var(--font-body);
	font-size: 1rem;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--ink); }
.btn-accent { background: var(--mint); color: var(--ink-deep); }
.btn-accent:hover { background: #fff; }
.btn-ghost { background: transparent; color: var(--surface); border-color: rgba(246, 249, 249, 0.4); }
.btn-ghost:hover { border-color: var(--mint); color: var(--mint); box-shadow: none; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-block { display: block; text-align: center; }
.btn-block + .btn-block { margin-top: 10px; }

/* Üst bar — koyu hero üstünde transparan başlar, scroll'da buzlu cama döner */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(36, 29, 51, 0.1); }
body { padding-top: 78px; }
body.admin-bar .site-header { top: 32px; }
body.has-dark-hero { padding-top: 0; }
.has-dark-hero .hero-dark { padding-top: 166px; }
.has-dark-hero .page-hero { padding-top: 150px; }
@media (min-width: 861px) {
	.has-dark-hero .site-header:not(.scrolled) {
		background: transparent;
		border-color: transparent;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
	.has-dark-hero .site-header:not(.scrolled) .brand,
	.has-dark-hero .site-header:not(.scrolled) .nav-list > li > a { color: var(--surface); }
	.has-dark-hero .site-header:not(.scrolled) .nav-list .sub-menu a { color: var(--ink); }
	.has-dark-hero .site-header:not(.scrolled) .nav-list .sub-menu a:hover { color: var(--primary); }
	.has-dark-hero .site-header:not(.scrolled) .brand-tag { color: var(--soft); }
	.has-dark-hero .site-header:not(.scrolled) .nav-list > li > a::after { background: var(--mint); }
	.has-dark-hero .site-header:not(.scrolled) .nav-cta { background: var(--mint); color: var(--ink-deep); }
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.brand { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; }
.brand-logolu { flex-direction: row; align-items: center; }
.brand-logo { width: auto; height: 46px; transition: filter 0.25s ease; }
/* Koyu hero üzerinde transparan header — siyah çizgi logo beyaza çevrilir */
@media (min-width: 861px) {
	.has-dark-hero .site-header:not(.scrolled) .brand-logo { filter: invert(1); }
}
body.nav-open .site-header .brand-logo { filter: invert(1); }
.brand-name { font-size: 1.35rem; }
.brand-tag { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--soft); }

.site-nav { display: flex; align-items: center; gap: 24px; }
/* Menüdeki randevu butonu tek satırda kalır (uzun çevirilerde kırılmasın) */
.nav-cta { white-space: nowrap; }
.nav-list { list-style: none; display: flex; gap: 22px; padding: 0; margin: 0; }
.nav-list a { text-decoration: none; color: var(--ink); padding-block: 8px; position: relative; }
.nav-list > li > a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.2s ease;
}
.nav-list > li > a:hover::after { width: 100%; }
.nav-list li { position: relative; }
.nav-list .sub-menu {
	list-style: none;
	position: absolute;
	top: 100%;
	left: -12px;
	min-width: 250px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	padding: 8px;
	margin: 0;
	display: none;
	z-index: 60;
}
@media (min-width: 861px) {
	.nav-list li:hover > .sub-menu,
	.nav-list li:focus-within > .sub-menu { display: block; }
}
.nav-list .sub-menu a { display: block; padding: 9px 12px; border-radius: 8px; }
.nav-list .sub-menu a::after { display: none; }
.nav-list .sub-menu a:hover { background: var(--surface); color: var(--primary); }

/* Dil değiştirici — bayraklı açılır menü */
.brand { order: 1; }
.site-nav { order: 2; }
.dil-secici { order: 3; position: relative; }
.nav-toggle { order: 4; }
/* Masaüstünde menü ortada, dil değiştirici en sağda */
@media (min-width: 861px) {
	.header-inner { position: relative; }
	.site-nav {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
	.dil-secici { margin-left: auto; }
}
.dil-btn {
	display: flex;
	align-items: center;
	gap: 7px;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 6px 12px 6px 9px;
	cursor: pointer;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--ink);
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.dil-btn:hover { border-color: var(--primary); color: var(--primary); }
.dil-secici img { width: 18px; height: auto; display: block; border-radius: 2px; }
.dil-ok {
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	opacity: 0.7;
	transition: transform 0.2s ease;
}
.dil-btn[aria-expanded="true"] .dil-ok { transform: rotate(180deg); }
.dil-liste {
	list-style: none;
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 108px;
	margin: 0;
	padding: 6px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	display: none;
	z-index: 70;
}
.dil-secici.acik .dil-liste { display: block; }
.dil-liste a {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 8px 10px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 0.82rem;
	letter-spacing: 0.06em;
	color: var(--ink);
	transition: background 0.15s ease, color 0.15s ease;
}
.dil-liste a:hover { background: var(--surface); color: var(--primary); }
.dil-liste .aktif a { font-weight: 600; }
@media (min-width: 861px) {
	.has-dark-hero .site-header:not(.scrolled) .dil-btn {
		color: var(--surface);
		border-color: rgba(246, 249, 249, 0.32);
	}
	.has-dark-hero .site-header:not(.scrolled) .dil-btn:hover { border-color: var(--mint); color: var(--mint); }
}

.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s ease; }
.has-dark-hero .site-header:not(.scrolled) .nav-toggle span { background: var(--surface); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle[aria-expanded="true"] span { background: var(--surface); }
.sub-toggle { display: none; }
body.nav-open { overflow: hidden; }
/* backdrop-filter, fixed konumlu menü panelinin bağlamını bozuyor — menü açıkken kapat */
body.nav-open .site-header {
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	background: var(--ink-deep);
	border-color: transparent;
}
body.nav-open .site-header .brand { color: var(--surface); }
body.nav-open .site-header .nav-toggle span { background: var(--surface); }
body.nav-open .wa-float { display: none; }

/* Koyu bantlar — düz mürdüm zemin, imza kontur motifi */
.hero-dark, .page-hero, .cta-band, .form-band {
	position: relative;
	background: var(--ink-deep);
	color: var(--surface);
	overflow: hidden;
	isolation: isolate;
}
.hero-dark::before, .page-hero::before, .cta-band::before, .form-band::before {
	content: '';
	position: absolute;
	inset: -20% -10% auto auto;
	width: 900px;
	height: 900px;
	background: var(--contour) center / contain no-repeat;
	z-index: -1;
	pointer-events: none;
}
.hero-dark h1, .page-hero h1, .form-band h2 { color: var(--white); }
.hero-dark .lead, .page-hero .lead { color: var(--mint); max-width: 560px; }

.hero-dark { padding-block: 88px 96px; }
.hero-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }


.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* Hero portresi — tam kolon genişliğinde, tek hairline, plaka fotoğrafın altında */
.hero-frame { margin: 0; padding: 0; }
.hero-frame img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center top;
	border-radius: 4px;
	border: 1px solid rgba(232, 217, 184, 0.22);
	box-shadow: none;
	animation: hero-in 0.9s ease both;
}
.hero-plaka {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(232, 217, 184, 0.24);
}
.hero-plaka .about-portrait-name { color: var(--white); }
.hero-plaka .about-portrait-title { font-size: 0.85rem; color: var(--soft); }


@keyframes hero-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* Ana sayfa hareket katmanı */
.hero-copy > * { animation: hero-in 0.7s ease both; }
.hero-copy > h1.kelimeli { animation: none; }
.kelime { display: inline-block; opacity: 0; animation: kelime-in 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) both; }
@keyframes kelime-in { from { opacity: 0; transform: translateY(0.55em); } to { opacity: 1; transform: none; } }
.hero-copy > :nth-child(1) { animation-delay: 0.05s; }
.hero-copy > :nth-child(2) { animation-delay: 0.16s; }
.hero-copy > :nth-child(3) { animation-delay: 0.28s; }
.hero-copy > :nth-child(4) { animation-delay: 0.4s; }
.hero-copy > :nth-child(5) { animation-delay: 0.52s; }
.hero-frame img { animation-delay: 0.2s; }

/* Koyu bantlarda kontur yavaşça nefes alır, ışıltı süzülür */
.hero-dark::before, .page-hero::before, .cta-band::before, .form-band::before {
	animation: kontur-nefes 18s ease-in-out infinite alternate;
}
@keyframes kontur-nefes { from { transform: scale(1) rotate(0deg); } to { transform: scale(1.07) rotate(3deg); } }

/* İç sayfa hero'su — bant yüksekliği içerikten bağımsız olarak tutarlı kalır */
.page-hero { padding-block: 72px; min-height: 400px; }
/* Başlık her sayfada header'dan aynı uzaklıkta başlasın: yanındaki uzun görsel
   dikey ortalama yüzünden metni aşağı itmemeli. */
.tedavi-hero .hero-split { align-items: start; }
.crumb {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--mint);
	margin-bottom: 10px;
}
.crumb::before { content: ''; width: 32px; height: 1px; background: var(--mint); flex: none; }
.crumb:hover { color: #fff; }
.post-meta { color: var(--soft); margin-top: 10px; }
.page-hero .prose { color: var(--surface); }

/* Tedavi/Blog kartları — görsel üstünde düz koyu örtü */
.tcard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.tcard-grid-2 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.tcard {
	position: relative;
	display: block;
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	text-decoration: none;
	background: var(--ink-deep);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tcard-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.tcard:hover .tcard-img { transform: scale(1.06); }
.tcard-scrim {
	position: absolute;
	inset: 0;
	background: rgba(25, 20, 38, 0.34);
	transition: background 0.3s ease;
}
.tcard:hover .tcard-scrim { background: rgba(25, 20, 38, 0.22); }
.tcard-body {
	position: absolute;
	inset: auto 0 0 0;
	background: var(--ink-deep);
	padding: 22px 26px 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.tcard-cat {
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--mint);
}
.tcard-title { font-family: var(--font-display); font-size: 1.45rem; line-height: 1.2; color: #fff; }
.tcard-more {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mint);
}
.tcard-more::before { content: ''; width: 26px; height: 1px; background: var(--mint); transition: width 0.25s ease; }
.tcard:hover .tcard-more::before, .catcard:hover .tcard-more::before { width: 46px; }
/* Tedavi hero — çerçeveli görsel + bilgi rozetleri */
.tedavi-frame { max-width: 440px; justify-self: end; }
.tedavi-frame img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.tedavi-ozet { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 22px 0 0; }
.tedavi-ozet li {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px 18px;
	border: 1px solid rgba(232, 217, 184, 0.35);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
}
.tedavi-ozet span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--soft); }
.tedavi-ozet strong { font-weight: 500; color: #fff; font-size: 0.95rem; }

/* Tedavi kartları — görsel üstte, kategori plakası görsel üzerinde */
.tekart-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.tekart {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 18px;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tekart:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tekart-media {
	display: block;
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--soft);
}
.tekart-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.tekart:hover .tekart-media img { transform: scale(1.05); }
.tekart-cat {
	position: absolute;
	left: 14px;
	bottom: 14px;
	background: rgba(255, 255, 255, 0.94);
	border-radius: 999px;
	padding: 6px 15px;
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink);
	box-shadow: var(--shadow);
}
.tekart-body { display: flex; flex-direction: column; gap: 8px; padding: 20px 24px 24px; flex: 1; }
.tekart-title { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.25; color: var(--ink); }
.tekart-ozet {
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--ink);
	opacity: 0.68;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.tekart .tcard-more { color: var(--primary); margin-top: auto; padding-top: 6px; }
.tekart .tcard-more::before { background: var(--primary); }
.tekart:hover .tcard-more::before { width: 46px; }

/* Blog kartları — görsel üstte tam görünür, metin altta */
.bcard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 30px; }
.bcard-grid-2 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.bcard {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 18px;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bcard-media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--ink);
}
.bcard-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.bcard-media::after { content: ''; position: absolute; inset: 0; border: 10px solid var(--ink); pointer-events: none; }
.bcard:hover .bcard-media img { transform: scale(1.05); }
.bcard-body { display: flex; flex-direction: column; gap: 10px; padding: 22px 26px 26px; }
.bcard-title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	line-height: 1.3;
	color: var(--ink);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.bcard-excerpt {
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--ink);
	opacity: 0.66;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.bcard-more {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 6px;
	font-size: 0.82rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--primary);
}
.bcard-more::before { content: ''; width: 26px; height: 1px; background: var(--primary); transition: width 0.25s ease; }
.bcard:hover .bcard-more::before { width: 46px; }

/* Kategori kartları — açık zemin, şampanya üst şerit, hover'da mürdüme döner */
.catcard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 26px; }
.catcard {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 34px 30px 30px;
	min-height: 230px;
	border-radius: 18px;
	overflow: hidden;
	text-decoration: none;
	background: var(--white);
	border: 1px solid var(--line);
	color: var(--ink);
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.35s ease, border-color 0.35s ease;
}
.catcard::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--mint);
}
.catcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); background: var(--ink-deep); border-color: transparent; }
.catcard-title { font-family: var(--font-display); font-size: 1.55rem; color: var(--ink); line-height: 1.2; transition: color 0.35s ease; }
.catcard-desc { color: var(--ink); opacity: 0.62; font-size: 0.95rem; max-width: 40ch; transition: color 0.35s ease, opacity 0.35s ease; }
.catcard .tcard-more { margin-top: auto; padding-top: 14px; color: var(--primary); transition: color 0.35s ease; }
.catcard .tcard-more::before { background: var(--primary); }
.catcard:hover .catcard-title { color: #fff; }
.catcard:hover .catcard-desc { color: var(--mint); opacity: 1; }
.catcard:hover .tcard-more { color: var(--mint); }
.catcard:hover .tcard-more::before { background: var(--mint); }

/* CTA bandı */
.cta-band { padding-block: 64px; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band-text { font-size: clamp(1.5rem, 2.6vw, 2rem); color: #fff; }
.cta-band-sub { margin-top: 10px; color: var(--soft); max-width: 520px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Form bandı — tam genişlik koyu iletişim bölümü */
.form-band { padding-block: 80px; }
.form-band-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.form-band-sub { margin-top: 12px; color: var(--soft); max-width: 46ch; }
.form-band-contact { list-style: none; padding: 0; margin: 28px 0 24px; display: flex; flex-direction: column; gap: 14px; }
.form-band-contact li { display: flex; flex-direction: column; border-left: 2px solid rgba(232, 217, 184, 0.35); padding-left: 14px; }
.form-band-contact span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--soft); }
.form-band-contact a { color: var(--surface); text-decoration: none; font-size: 1.05rem; }
.form-band-contact a:hover { color: var(--mint); }

/* Fluent Forms — koyu zemin stili */
.form-dark .fluentform form.frm-fluent-form > fieldset {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 20px;
	align-items: start;
	border: 0;
	padding: 0;
	margin: 0;
	min-inline-size: 0;
}
.form-dark .fluentform .ff-el-group { min-width: 0; }
/* Mesaj alanini kisa tut */
.fluentform textarea.ff-el-form-control { height: 84px; min-height: 84px; }
.form-dark .fluentform .ff-el-group:has(textarea),
.form-dark .fluentform .ff-el-group:has(select),
.form-dark .fluentform .ff-el-group:has(input[type="checkbox"]),
.form-dark .fluentform .ff_submit_btn_wrapper { grid-column: 1 / -1; }
.form-dark .ff_t_c, .form-dark .ff-el-tc { color: var(--soft); font-size: 0.88rem; }
.form-dark .ff_t_c a, .form-dark .ff-el-tc a { color: var(--mint); }
.form-dark .ff-el-tc input[type="checkbox"], .form-dark input.ff_tc_checkbox { accent-color: var(--mint); width: 16px; height: 16px; }
.form-dark .ff-el-input--label label { color: var(--mint); font-size: 0.85rem; letter-spacing: 0.04em; }
.form-dark .ff-el-form-control {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(246, 249, 249, 0.22);
	border-radius: 12px;
	color: #fff;
	padding: 13px 16px;
	width: 100%;
	transition: border-color 0.2s ease, background 0.2s ease;
}
.form-dark .ff-el-form-control:focus {
	outline: none;
	border-color: var(--mint);
	background: rgba(255, 255, 255, 0.1);
}
.form-dark .ff-el-form-control::placeholder { color: rgba(246, 249, 249, 0.6); }
.form-dark select.ff-el-form-control option { color: var(--ink); }
.form-dark .ff-el-group { margin-bottom: 18px; }
.form-dark .fluentform .ff-btn-submit,
.form-dark .fluentform button.ff-btn-submit:not(.ff_btn_no_style) {
	background: var(--mint);
	color: var(--ink-deep);
	border: 0;
	border-radius: 999px;
	padding: 0.9rem 2.2rem;
	font-size: 1rem;
	cursor: pointer;
	transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.form-dark .fluentform .ff-btn-submit:hover,
.form-dark .fluentform button.ff-btn-submit:not(.ff_btn_no_style):hover { background: #fff; color: var(--ink-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.form-dark .ff-el-is-error .text-danger, .form-band .error { color: #ffd3c9; }
.form-dark .ff-message-success {
	background: rgba(232, 217, 184, 0.12);
	border: 1px solid rgba(232, 217, 184, 0.4);
	border-radius: 12px;
	padding: 20px;
	color: var(--mint);
}

/* Vurgu kelimesi */

/* Akan tedavi bandı */
.marquee {
	overflow: hidden;
	background: var(--surface);
	border-block: 1px solid var(--line);
	padding-block: 22px;
}
.marquee-track {
	display: flex;
	align-items: center;
	gap: 36px;
	width: max-content;
	animation: marquee 36s linear infinite;
}
.marquee-track span {
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--primary);
	white-space: nowrap;
}
.marquee-track .marquee-sep { color: var(--soft); font-size: 1rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Lightbox */
.mp-lightbox {
	position: fixed;
	inset: 0;
	z-index: 95;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	background: rgba(25, 20, 38, 0.88);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	cursor: zoom-out;
}
.mp-lightbox[hidden] { display: none; }
.mp-lightbox img {
	max-width: 100%;
	max-height: calc(100vh - 60px);
	width: auto;
	height: auto;
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	animation: modal-in 0.25s ease both;
}
.prose img, .post-cover { cursor: zoom-in; }

/* Süreç bandı */
.process-band {
	position: relative;
	background: var(--ink-deep);
	color: var(--surface);
	padding-block: 76px;
	overflow: hidden;
	isolation: isolate;
}
.process-band::before {
	content: '';
	position: absolute;
	inset: -20% -10% auto auto;
	width: 900px;
	height: 900px;
	background: var(--contour) center / contain no-repeat;
	z-index: -1;
	pointer-events: none;
}
.process-band .section-title { color: #fff; }
.process { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: adim; }
.process-step { position: relative; padding-top: 18px; }
.process-step::before { content: ''; position: absolute; top: 0; left: 0; width: 44px; height: 2px; background: var(--mint); }
.process-num { font-family: var(--font-display); font-size: 2.2rem; color: rgba(232, 217, 184, 0.55); line-height: 1; display: block; }
.process-step h3 { color: #fff; margin: 10px 0 8px; }
.process-step p { color: var(--soft); font-size: 0.95rem; }

/* Hasta yorumları */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }

/* Hızlı Yanıt & Öne Çıkanlar kutuları + inceleme notu */
.hizli-yanit, .one-cikanlar {
	background: var(--surface);
	border: 1px solid var(--line);
	border-left: 3px solid var(--mint);
	border-radius: 14px;
	padding: 22px 26px;
	margin: 0 0 22px;
}
.ust-kutu-baslik {
	font-size: 0.74rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--primary);
	margin: 0 0 10px;
}
.hizli-yanit p:last-child { margin: 0; font-size: 0.98rem; line-height: 1.7; }
.one-cikanlar ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.one-cikanlar li { position: relative; padding-left: 24px; font-size: 0.95rem; line-height: 1.6; }
.one-cikanlar li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 10px;
	height: 10px;
	border-radius: 3px;
	background: var(--mint);
}
.inceleme-notu {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.85rem;
	color: var(--ink);
	opacity: 0.72;
	margin: 0 0 30px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--line);
}
.inceleme-notu::before {
	content: '\2713';
	flex: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	font-size: 0.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* İçerik ortası form CTA'sı — tedavi detayında 3. paragraftan sonra */
.icerik-cta {
	position: relative;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 34px;
	align-items: center;
	background: var(--ink-deep);
	border-radius: 18px;
	padding: 34px 36px;
	margin: 38px 0;
	color: var(--surface);
	overflow: hidden;
	isolation: isolate;
}
.icerik-cta::before {
	content: '';
	position: absolute;
	inset: -30% -20% auto auto;
	width: 520px;
	height: 520px;
	background: var(--contour) center / contain no-repeat;
	z-index: -1;
	pointer-events: none;
}
.icerik-cta-baslik { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.25; color: #fff; margin: 0 0 10px; }
.icerik-cta-metin { color: var(--soft); margin: 0; font-size: 0.95rem; }
@media (max-width: 860px) {
	.icerik-cta { grid-template-columns: 1fr; padding: 28px 22px; }
}

/* Yorum kaydırıcı — 3 kart görünür, otomatik sağa akar */
.yorum-kaydirici { overflow: hidden; position: relative; }
.yorum-cerceve { position: relative; }
.yorum-ok {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--primary);
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.yorum-ok:hover { background: var(--primary); color: #fff; transform: translateY(-50%) scale(1.06); }
.yorum-ok-geri { left: -14px; }
.yorum-ok-ileri { right: -14px; }
.quote-serit {
	display: flex;
	gap: 26px;
	transition: transform 0.65s cubic-bezier(0.33, 0.8, 0.35, 1);
}
.quote-serit .quote-card { flex: 0 0 calc((100% - 52px) / 3); }
@media (max-width: 980px) {
	.quote-serit .quote-card { flex-basis: calc((100% - 26px) / 2); }
}
@media (max-width: 640px) {
	.quote-serit .quote-card { flex-basis: 100%; }
}
.quote-card {
	position: relative;
	margin: 0;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 60px 28px 26px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote-card::before {
	content: '\201C';
	position: absolute;
	top: 34px;
	left: 24px;
	font-family: var(--font-display);
	font-size: 4.4rem;
	line-height: 0;
	color: var(--soft);
}
.quote-card blockquote { margin: 0 0 18px; font-size: 0.98rem; }
.quote-card figcaption { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 14px; }
.quote-name { font-family: var(--font-display); font-size: 1.05rem; }
.quote-treat { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); }

/* Hakkımızda */
.about-portrait { margin: 0 0 36px; position: relative; max-width: 760px; }
.about-portrait { padding: 18px 0 0 18px; }
.about-portrait::before {
	content: '';
	position: absolute;
	inset: 0 18px 18px 0;
	border: 1px solid var(--soft);
	border-radius: 14px;
	pointer-events: none;
}
.about-portrait img { border-radius: 14px; box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: top; }
.about-portrait figcaption {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(6px);
	border-radius: 14px;
	padding: 14px 22px;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
}
.about-portrait-name { font-family: var(--font-display); font-size: 1.2rem; }
.about-portrait-title { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--soft); }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 44px; max-width: 760px; }
.value-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.value-card::before { content: ''; display: block; width: 36px; height: 2px; background: var(--primary); margin-bottom: 14px; }
.value-title { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 6px; }
.value-card p:last-child { font-size: 0.92rem; color: var(--primary); }

/* Doktor bandı */
.about-band { background: var(--surface); padding-block: 72px; }
.about-band .hero-media { padding: 0; max-width: 430px; }
.about-band .hero-media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center top;
	border-radius: 4px;
	border: 1px solid var(--line);
	box-shadow: none;
}
.about-band h2 { margin-bottom: 12px; }
.about-band p + p { margin-top: 14px; }
.about-band .btn { margin-top: 22px; }

/* Bilgi şeridi */
.info-strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
	margin: -46px 0 48px;
	padding: 0;
	position: relative;
	z-index: 2;
}
.info-item {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 18px 20px;
	box-shadow: var(--shadow);
}
.info-item dt { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--soft); }
.info-item dd { margin: 6px 0 0; font-family: var(--font-display); font-size: 1.15rem; }
.info-item a { text-decoration: none; }

/* Sidebar düzeni */
.with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 56px; align-items: start; }
.main-col { min-width: 0; }
.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 22px; }
.side-box {
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 26px;
	background: var(--white);
}
.side-title {
	font-family: var(--font-display);
	font-size: 1.1rem;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
}
.side-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.side-list li { border-bottom: 1px solid var(--surface); }
.side-list li:last-child { border-bottom: 0; }
.side-list a, .side-list .current span {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 10px 2px;
	text-decoration: none;
	color: var(--ink);
	transition: color 0.15s ease, padding-left 0.15s ease;
}
.side-list a:hover { color: var(--primary); padding-left: 8px; }
.side-list .current span { color: var(--primary); font-weight: 600; }
.side-list em { font-style: normal; font-size: 0.78rem; color: var(--soft); }
.side-posts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.side-posts a { display: flex; gap: 14px; align-items: center; text-decoration: none; color: var(--ink); }
.side-posts img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; flex: none; }
.side-posts a:hover .side-post-title { color: var(--primary); }
.side-post-title { display: block; font-size: 0.95rem; line-height: 1.35; transition: color 0.15s ease; }
.side-post-date { display: block; font-size: 0.78rem; color: var(--soft); margin-top: 3px; }

.side-toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.side-toc li { counter-increment: toc; border-bottom: 1px solid var(--surface); }
.side-toc li:last-child { border-bottom: 0; }
.side-toc a {
	display: flex;
	gap: 12px;
	padding: 9px 2px;
	text-decoration: none;
	color: var(--ink);
	font-size: 0.93rem;
	transition: color 0.15s ease, padding-left 0.15s ease;
}
.side-toc a::before { content: counter(toc, decimal-leading-zero); font-family: var(--font-display); color: var(--soft); }
.side-toc a:hover { color: var(--primary); padding-left: 6px; }

.side-sosyal {
	background: var(--ink-deep);
	border: 0;
	color: var(--surface);
	position: relative;
	overflow: hidden;
}
.side-sosyal::before {
	content: '';
	position: absolute;
	right: -45%;
	top: -45%;
	width: 320px;
	height: 320px;
	background: var(--contour) center / contain no-repeat;
	pointer-events: none;
}
.side-sosyal .side-title { color: #fff; border-color: rgba(229, 226, 233, 0.2); }
.side-sosyal-ikonlar { display: flex; flex-wrap: wrap; gap: 10px; position: relative; }

.side-cta {
	background: var(--ink-deep);
	border: 0;
	color: var(--surface);
	position: relative;
	overflow: hidden;
}
.side-cta::before {
	content: '';
	position: absolute;
	right: -45%;
	top: -45%;
	width: 320px;
	height: 320px;
	background: var(--contour) center / contain no-repeat;
	pointer-events: none;
}
.side-cta-title { font-family: var(--font-display); font-size: 1.35rem; color: #fff; margin-bottom: 8px; }
.side-cta-text { color: var(--soft); font-size: 0.92rem; margin-bottom: 18px; }
.side-cta .btn { position: relative; }

/* İlgili yazılar bandı */
.related-band { background: var(--surface); }

/* İçerik gövdesi */
.prose { max-width: 760px; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.1em; }
.prose h2, .prose h3 { margin: 1.6em 0 0.6em; scroll-margin-top: 110px; }
.prose img { border-radius: var(--radius); }
.post-cover-cerceve {
	position: relative;
	display: block;
	margin-bottom: 28px;
	border-radius: var(--radius);
	overflow: hidden;
}
.post-cover-cerceve::after { content: ''; position: absolute; inset: 0; border: 10px solid var(--ink); pointer-events: none; }
.post-cover { display: block; width: 100%; object-fit: cover; }

/* SSS */
.faq { margin-top: 56px; max-width: 760px; }
.faq h2 { margin-bottom: 20px; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; overflow: hidden; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.faq-item.is-open { border-color: var(--soft); box-shadow: var(--shadow); }
.faq-item button {
	width: 100%;
	text-align: left;
	background: var(--surface);
	border: 0;
	padding: 17px 46px 17px 20px;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--ink);
	cursor: pointer;
	position: relative;
}
.faq-item button::after {
	content: '+';
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--primary);
	font-size: 1.3rem;
}
.faq-item.is-open button::after { content: '−'; }
.faq-answer { display: none; padding: 16px 20px; }
.faq-item.is-open .faq-answer { display: block; }

/* Öncesi / Sonrası — sürgülü karşılaştırma */
.ba-gallery { margin-top: 56px; }
.ba-gallery h2 { margin-bottom: 20px; }
.ba-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.ba-slider {
	--ba-pos: 50%;
	position: relative;
	margin: 0;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	user-select: none;
}
.ba-slider img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-before { clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0); }
.ba-tag {
	position: absolute;
	top: 10px;
	background: rgba(25, 20, 38, 0.85);
	color: var(--surface);
	font-size: 0.72rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 999px;
	z-index: 2;
}
.ba-tag-once { left: 10px; }
.ba-tag-sonra { right: 10px; }
.ba-handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--ba-pos);
	width: 2px;
	background: var(--mint);
	transform: translateX(-1px);
	z-index: 2;
	pointer-events: none;
}
.ba-handle::after {
	content: '\2194';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--mint);
	color: var(--ink-deep);
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow);
}
.ba-range {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: ew-resize;
	z-index: 3;
	margin: 0;
	-webkit-appearance: none;
	appearance: none;
}
.ba-range:focus-visible { opacity: 1; accent-color: var(--mint); height: auto; top: auto; bottom: 10px; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-pill {
	display: inline-block;
	padding: 0.5rem 1.15rem;
	border-radius: 999px;
	border: 1px solid var(--line);
	text-decoration: none;
	color: var(--ink);
	font-size: 0.92rem;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.filter-pill:hover { border-color: var(--soft); color: var(--primary); }
.filter-pill.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }

.ba-slider-wrap { margin: 0; }
.ba-static {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}
.ba-static img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-static-cizgi {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: rgba(255, 255, 255, 0.55);
	transform: translateX(-1px);
	pointer-events: none;
}
.ba-grid-page { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.vaka-caption { margin-top: 12px; text-align: center; }
.vaka-caption a { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); text-decoration: none; }
.vaka-caption a:hover { color: var(--primary); }
.section-cta { margin-top: 36px; text-align: center; }

/* Harita */
.map-wrap { border-top: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 440px; border: 0; display: block; }

/* Sayfalama */
.pagination { margin-top: 40px; }
.pagination .nav-links { display: flex; gap: 8px; justify-content: center; }
.pagination .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid var(--line);
	border-radius: 8px;
	text-decoration: none;
	color: var(--ink);
}
.pagination .page-numbers.current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Footer */
.site-footer { background: var(--ink-deep); color: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-block: 60px; }
.footer-name { font-size: 1.3rem; color: var(--surface); }
.footer-title { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--soft); margin-bottom: 12px; }
.site-footer a { color: var(--mint); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
/* Health Türkiye rozeti — koyu zeminde beyaz kutu içinde */
.footer-rozet {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 22px;
	padding: 6px 10px;
	background: var(--white);
	border-radius: 8px;
}
.footer-rozet img { height: 96px; width: auto; }
.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(232, 217, 184, 0.3);
	color: var(--mint);
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.social-icon:hover {
	background: var(--mint);
	color: var(--ink-deep);
	border-color: var(--mint);
	transform: translateY(-3px);
	text-decoration: none;
}
.social-icon--light { border-color: var(--line); color: var(--primary); }
.social-icon--light:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.info-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.contact-strip { margin-bottom: -46px; }
.map-wrap { border-block: 1px solid var(--line); }
.footer-legal {
	border-top: 1px solid rgba(229, 226, 233, 0.15);
	padding-block: 18px;
	font-size: 0.85rem;
	color: var(--soft);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.footer-credit { display: inline-flex; opacity: 0.75; transition: opacity 0.2s ease; }
.footer-credit:hover { opacity: 1; }
.footer-credit img { height: 22px; width: auto; }

/* WhatsApp yüzen buton — etiketli hap + dikkat animasyonu */
.wa-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 80;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 22px 13px 16px;
	border-radius: 999px;
	background: var(--wa);
	color: #fff;
	text-decoration: none;
	box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	animation: wa-dikkat 6s ease-in-out 2s infinite;
}
.wa-float::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 999px;
	animation: wa-halo 2.4s ease-out infinite;
	pointer-events: none;
}
.wa-float svg { flex: none; }
.wa-float-text {
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	white-space: nowrap;
}
.wa-float:hover { transform: scale(1.05); box-shadow: 0 14px 38px rgba(37, 211, 102, 0.55); }
@keyframes wa-halo {
	0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
	70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes wa-dikkat {
	0%, 84%, 100% { transform: none; }
	88% { transform: rotate(-2.5deg) scale(1.04); }
	92% { transform: rotate(2.5deg) scale(1.04); }
	96% { transform: rotate(-1.5deg) scale(1.02); }
}

/* Popup (modal) */
.mp-modal { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; padding: 20px; }
.mp-modal[hidden] { display: none; }
.mp-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(25, 20, 38, 0.6);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
.mp-modal-panel {
	position: relative;
	width: min(600px, 100%);
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	overflow-x: hidden;
	background: var(--ink-deep);
	color: var(--surface);
	border-radius: 20px;
	padding: 40px 38px 30px;
	box-shadow: var(--shadow-lg);
	animation: modal-in 0.3s ease both;
	isolation: isolate;
}
.mp-modal-panel::before {
	content: '';
	position: absolute;
	inset: -30% -25% auto auto;
	width: 480px;
	height: 480px;
	background: var(--contour) center / contain no-repeat;
	z-index: -1;
	pointer-events: none;
}
.mp-modal-title { font-family: var(--font-display); font-size: 1.7rem; line-height: 1.15; color: #fff; }
.mp-modal-text { margin: 12px 0 24px; color: var(--soft); font-size: 0.95rem; }
.mp-modal-form { position: relative; }
.mp-modal-alt { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(229, 226, 233, 0.15); font-size: 0.9rem; color: var(--soft); }
.mp-modal-alt a { color: var(--mint); text-decoration: none; }
.mp-modal-alt a:hover { text-decoration: underline; }
.mp-modal-close {
	position: absolute;
	top: 14px;
	right: 16px;
	background: rgba(255, 255, 255, 0.08);
	border: 0;
	color: var(--surface);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
	z-index: 2;
}
.mp-modal-close:hover { background: rgba(255, 255, 255, 0.2); transform: rotate(90deg); }
body.modal-open { overflow: hidden; }
@keyframes modal-in { from { opacity: 0; transform: translateY(24px) scale(0.98); } to { opacity: 1; transform: none; } }
@keyframes nav-in { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }

/* Scroll-reveal */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rv.in { opacity: 1; transform: none; }
.tcard-grid > :nth-child(2).rv, .tekart-grid > :nth-child(2).rv, .catcard-grid > :nth-child(2).rv, .bcard-grid > :nth-child(2).rv, .info-strip > :nth-child(2).rv { transition-delay: 0.08s; }
.tcard-grid > :nth-child(3).rv, .tekart-grid > :nth-child(3).rv, .catcard-grid > :nth-child(3).rv, .bcard-grid > :nth-child(3).rv, .info-strip > :nth-child(3).rv { transition-delay: 0.16s; }
.tcard-grid > :nth-child(4).rv, .tekart-grid > :nth-child(4).rv, .catcard-grid > :nth-child(4).rv, .bcard-grid > :nth-child(4).rv, .info-strip > :nth-child(4).rv { transition-delay: 0.24s; }
.tcard-grid > :nth-child(5).rv, .tekart-grid > :nth-child(5).rv, .catcard-grid > :nth-child(5).rv { transition-delay: 0.32s; }
.process > :nth-child(2).rv { transition-delay: 0.14s; }
.process > :nth-child(3).rv { transition-delay: 0.28s; }
.process > :nth-child(4).rv { transition-delay: 0.42s; }
.tcard-grid > :nth-child(6).rv, .tekart-grid > :nth-child(6).rv { transition-delay: 0.4s; }

/* Mobil butonlar masaüstünde gizli */
.mobil-aksiyonlar { display: none; }

/* Mobilde hero içerikleri ortalanır */
@media (max-width: 860px) {
	.hero-split, .hero-copy, .tedavi-hero .hero-split > div { text-align: center; }
	.hero-split .eyebrow, .hero-split .crumb, .page-hero .crumb { justify-content: center; }
	.hero-actions { justify-content: center; }
	/* Bilgi rozetleri eşit genişlikte, aynı hizada */
	.tedavi-ozet { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	.tedavi-ozet li { text-align: left; padding: 10px 14px; }
	.hero-media, .hero-frame, .tedavi-frame { margin-inline: auto; justify-self: center; }
	.hero-caption { justify-content: center; }
	/* Hero butonları mobilde içerikteki kopyaya taşınır */
	.tedavi-hero .hero-actions { display: none; }
	.mobil-aksiyonlar { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin: 6px 0 26px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.rv { opacity: 1; transform: none; transition: none; }
	.hero-frame img, .hero-copy > *, .hero-plaka { animation: none; }
	.hero-dark::before, .page-hero::before, .cta-band::before, .form-band::before { animation: none; }
	.mp-modal-panel { animation: none; }
	.marquee-track { animation: none; }
	.wa-float, .wa-float::before { animation: none; }
	.btn, .tcard, .tcard-img, .catcard, .bcard { transition: none; }
}

/* Mobil */
@media (max-width: 980px) {
	.with-sidebar { grid-template-columns: 1fr; gap: 40px; }
	.sidebar { position: static; }
	.form-band-inner { grid-template-columns: 1fr; gap: 40px; }
	.form-dark .fluentform form.frm-fluent-form > fieldset { grid-template-columns: 1fr; }
	.mp-modal-panel { padding: 32px 22px 22px; }
}
@media (max-width: 860px) {
	.section-pad { padding-block: 48px; }
	.hero-dark { padding-block: 56px 64px; }
	.hero-split { grid-template-columns: 1fr; gap: 32px; }
	.hero-frame { max-width: 420px; }
	.info-strip { margin-top: 24px; }
	.contact-strip { margin-bottom: 0; }
	.footer-grid { grid-template-columns: 1fr; gap: 28px; }
	.cta-band-inner { flex-direction: column; align-items: flex-start; }
	.process { grid-template-columns: 1fr 1fr; }
	.has-dark-hero .hero-dark { padding-top: 134px; }
	.has-dark-hero .page-hero { padding-top: 128px; }
	.page-hero { min-height: 0; }
	.wa-float { right: 14px; bottom: 14px; padding: 11px 18px 11px 14px; }
	.wa-float-text { font-size: 0.88rem; }

	/* Mobilde header her zaman koyu ve opak: kontrast + performans (backdrop-filter titremesi yok) */
	.site-header,
	.has-dark-hero .site-header,
	body.nav-open .site-header {
		background: var(--ink-deep);
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		border-bottom-color: rgba(229, 226, 233, 0.12);
	}
	.site-header.scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25); }
	.site-header .brand { color: var(--surface); }
	.site-header .brand-tag { color: var(--soft); }
	/* Koyu header üzerinde siyah çizgi logo beyaza çevrilir */
	.site-header .brand-logo { filter: invert(1); }
	/* Dil değiştirici mobilde hamburgerin solunda, koyu zemine uyumlu */
	.dil-secici { margin-left: auto; margin-right: 6px; }
	.site-header .dil-btn { color: var(--surface); border-color: rgba(246, 249, 249, 0.3); padding: 5px 10px 5px 8px; }
	.nav-toggle span, .site-header .nav-toggle span { background: var(--mint); }
	.nav-toggle { display: block; position: relative; z-index: 60; }
	.site-nav {
		position: fixed;
		inset: 78px 0 0 0;
		z-index: 100;
		background: var(--ink-deep);
		flex-direction: column;
		align-items: stretch;
		padding: 26px 26px 36px;
		display: none;
		overflow-y: auto;
		isolation: isolate;
	}
	.site-nav::before {
		content: '';
		position: absolute;
		inset: -10% -35% auto auto;
		width: 560px;
		height: 560px;
		background: var(--contour) center / contain no-repeat;
		z-index: -1;
		pointer-events: none;
	}
	.site-nav.is-open { display: flex; animation: nav-in 0.3s ease both; }
	.nav-list { flex-direction: column; gap: 0; }
	.nav-list > li > a {
		display: block;
		font-family: var(--font-display);
		font-size: 1.45rem;
		color: var(--surface);
		padding: 15px 4px;
		border-bottom: 1px solid rgba(229, 226, 233, 0.12);
	}
	.nav-list > li > a:hover { color: var(--mint); }
	.nav-list > li > a::after { display: none; }
	.nav-list > li { position: relative; }
	.nav-list > li > a { padding-right: 52px; }
	.sub-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 12px;
		right: 0;
		width: 47px;
		height: 47px;
		background: transparent;
		border: 1px solid rgba(232, 217, 184, 0.35);
		border-radius: 50%;
		color: var(--mint);
		font-size: 1.4rem;
		line-height: 1;
		cursor: pointer;
		transition: transform 0.25s ease, background 0.2s ease;
	}
	.nav-list > li.acik > .sub-toggle { transform: rotate(45deg); background: rgba(232, 217, 184, 0.12); }
	.nav-list .sub-menu {
		position: static;
		display: none;
		background: transparent;
		border: 0;
		border-left: 1px solid rgba(232, 217, 184, 0.3);
		border-radius: 0;
		box-shadow: none;
		padding: 6px 0 10px 18px;
		margin: 8px 0 12px 6px;
		min-width: 0;
	}
	.nav-list > li.acik > .sub-menu { display: block; }
	.nav-list .sub-menu a { color: var(--soft); padding: 8px 0; font-size: 0.98rem; }
	.nav-list .sub-menu a:hover { color: var(--mint); background: transparent; }
	.nav-cta {
		text-align: center;
		margin-top: 26px;
		background: var(--mint);
		color: var(--ink-deep);
		font-size: 1.05rem;
		padding: 1rem 1.7rem;
	}
}
