/* =========================================================
   Dr Terziler — Global Stiller
   Reset + Değişkenler + Genel yardımcılar
   (Sayfaya özel stiller page-*.css içinde)
   ========================================================= */

/* ---------- CSS Reset (modern) ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

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

body {
	min-height: 100vh;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

ul,
ol {
	list-style: none;
}

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

/* ---------- Tasarım Değişkenleri ----------
   NOT: Figma tasarımından gelen renkler/fontlar buraya işlenecek.
   İlk tasarımı gönderdiğinde bu değerleri birebir güncelleyeceğiz.
*/
:root {
	/* Renkler — Figma tasarımına göre (HEX gelince ince ayar yapılacak) */
	--color-navy: #0b1f44;          /* ana lacivert (üst bar, buton, CTA) */
	--color-navy-deep: #0a1a38;     /* daha koyu lacivert */
	--color-gold: #a98b4e;          /* altın/eyebrow vurgu */
	--color-heading: #0b1f44;       /* başlık metni */
	--color-text: #5a5d66;          /* gövde metni (gri) */
	--color-muted: #8a8d96;         /* soluk metin */
	--color-bg: #ffffff;            /* sayfa arka planı */
	--color-section: #f4f3f1;       /* açık bölüm/footer arka planı */
	--color-card: #ffffff;          /* kart arka planı */
	--color-border: #ececec;        /* ince çizgi */

	/* Tipografi — gerçek font dosyaları assets/fonts/ içine eklenince
	   fonts.css'te @font-face tanımlanıp bu değişkenler güncellenecek. */
	/* Site geneli tek font: Poppins. */
	--font-body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-heading: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-header: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-primary: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	/* Düzen */
	--container-max: 1280px;
	--container-narrow: 920px;
	--container-pad: 24px;
}

/* =========================================================
   ÜST BAR
   ========================================================= */
.topbar {
	background: var(--color-navy-deep);
	color: #fff;
	font-family: var(--font-body);
	font-size: 12.5px;
}

.topbar__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding: 9px var(--container-pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.topbar__left,
.topbar__right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.topbar__phone {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #fff;
}

.topbar .ico {
	color: #fff;
	flex-shrink: 0;
}

.topbar__sep {
	width: 1px;
	height: 16px;
	background: rgba(255, 255, 255, 0.18);
}

/* ---------- Dil seçici (dropdown + bayrak) ---------- */
.topbar__lang {
	position: relative;
}

.topbar__lang-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: 0;
	padding: 4px 8px;
	border-radius: 7px;
	color: #fff;
	font: inherit;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease;
}

.topbar__lang-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
}

.topbar__flag {
	display: inline-block;
	flex: none;
	width: 21px;
	height: 14px;
	border-radius: 2px;
	overflow: hidden;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.topbar__flag svg {
	display: block;
	width: 100%;
	height: 100%;
}

.topbar__lang-caret {
	opacity: 0.8;
	transition: transform 0.18s ease;
}

.topbar__lang.is-open .topbar__lang-caret {
	transform: rotate(180deg);
}

.topbar__lang-list {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 300;
	min-width: 158px;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 22px 48px -20px rgba(0, 0, 0, 0.55);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.topbar__lang.is-open .topbar__lang-list {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.topbar__lang-list a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 11px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 500;
	color: var(--color-navy);
}

.topbar__lang-list a:hover {
	background: var(--color-section);
}

.topbar__lang-list a.is-active {
	color: var(--color-navy);
	background: var(--color-section);
}

.topbar__lang-list .topbar__flag {
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   MARKA / LOGO
   ========================================================= */
.brand {
	display: inline-flex;
	flex-direction: column;
	line-height: 1;
}

.brand__name {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--color-navy);
}

.brand__sub {
	font-family: var(--font-body);
	font-size: 11px;
	letter-spacing: 0.36em;
	color: var(--color-gold);
	margin-top: 6px;
	text-transform: uppercase;
}

.brand__logo {
	display: block;
	height: 60px;
	width: auto;
	max-width: 280px;
	object-fit: contain;
}

.brand--footer .brand__logo {
	height: 40px;
}

/* =========================================================
   ANA MENÜ
   ========================================================= */
.site-header {
	background: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
	position: sticky;
	top: 0;
	z-index: 100;
	/* Header tipografisi: Poppins 500 */
	font-family: var(--font-header);
	font-weight: 500;
}

/* Header içindeki tüm metinler Poppins 500 (marka dahil). */
.site-header .brand__name,
.site-header .brand__sub,
.site-header .mainnav__menu a,
.site-header .btn {
	font-family: var(--font-header);
	font-weight: 500;
}

/* Header "Randevu Al" — tam yuvarlak hap, arama dairesiyle aynı yükseklik. */
.site-header__actions .btn--primary {
	border-radius: 999px;
	padding: 16px 30px;
	font-size: 15.5px;
}

/* Arama paneli (başlık altında açılır) */
.site-search {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border-bottom: 1px solid var(--color-border);
	box-shadow: 0 24px 44px -30px rgba(11, 31, 68, 0.5);
	z-index: 90;
}

.site-search__form {
	max-width: var(--container-max);
	margin-inline: auto;
	padding: 16px var(--container-pad);
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-search__ico {
	flex: none;
	color: var(--color-navy);
}

.site-search__input {
	flex: 1;
	min-width: 0;
	border: none;
	background: transparent;
	font-family: var(--font-body);
	font-size: 17px;
	color: var(--color-navy);
	padding: 8px 0;
}

.site-search__input::placeholder {
	color: #9aa2b4;
}

.site-search__input:focus {
	outline: none;
}

.site-search__submit {
	flex: none;
}

.site-search__close {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--color-navy);
	background: transparent;
	cursor: pointer;
}

.site-search__close:hover {
	background: var(--color-section);
}

/* Mobil: arama kutusu — placeholder sığsın diye input'a yer aç */
@media (max-width: 560px) {
	.site-search__form {
		gap: 8px;
	}

	.site-search__input {
		font-size: 14px;
	}

	.site-search__submit {
		padding: 10px 14px;
		font-size: 14px;
	}

	.site-search__close {
		width: 34px;
		height: 34px;
	}
}

/* Footer üstü: Akreditasyon & Güvenli Ödeme */
.foottop {
	background: var(--color-section);
	padding: 56px 0;
}

.foottop__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding: 0 var(--container-pad);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.foottop__card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 18px;
	padding: 34px 36px;
}

.foottop__eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #2f5da8;
	margin-bottom: 14px;
}

.foottop__title {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: clamp(18px, 1.9vw, 22px);
	color: var(--color-heading);
	margin: 0 0 22px;
}

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

.foottop__badge {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	border: 1px solid var(--color-border);
	border-radius: 12px;
	background: var(--color-section);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-heading);
}

.foottop__badge svg {
	color: #2f5da8;
	flex-shrink: 0;
}

.foottop__pay {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 20px;
	border: 1px solid var(--color-border);
	border-radius: 12px;
	background: var(--color-section);
	color: var(--color-text);
	font-size: 14.5px;
}

.foottop__pay svg {
	color: #8a93a6;
	flex-shrink: 0;
}

@media (max-width: 860px) {
	.foottop__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.foottop__badges {
		grid-template-columns: 1fr;
	}
}

/* Yüzen WhatsApp butonu (site geneli) */
.wa-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.65);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wa-float:hover {
	transform: scale(1.08);
	box-shadow: 0 18px 36px -8px rgba(37, 211, 102, 0.75);
}

@media (max-width: 640px) {
	.wa-float {
		right: 16px;
		bottom: 16px;
		width: 52px;
		height: 52px;
	}
}

/* Yüzen telefon butonu (site geneli — WhatsApp'ın üstünde) */
.call-float {
	position: fixed;
	right: 22px;
	bottom: 94px; /* WhatsApp butonunun üstünde */
	z-index: 899;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 2px solid #fff;
	background: var(--color-navy);
	color: #fff;
	box-shadow: 0 14px 30px -8px rgba(11, 31, 68, 0.55);
	transition: transform 0.18s ease;
}

.call-float:hover {
	transform: scale(1.08);
}

.call-float:active {
	transform: scale(0.94);
}

@media (max-width: 640px) {
	.call-float {
		/* Mobilde sol altta (WhatsApp sağ altta). */
		left: 16px;
		right: auto;
		bottom: 16px;
		width: 52px;
		height: 52px;
	}
}

/* Yukarı dön butonu (site geneli, kaydırınca belirir) */
.to-top {
	position: fixed;
	right: 22px;
	bottom: 166px; /* Telefon butonunun üstünde (WhatsApp + telefon istifi) */
	z-index: 899;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--color-border);
	background: #fff;
	color: var(--color-navy);
	box-shadow: 0 12px 28px -12px rgba(11, 31, 68, 0.5);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.to-top:hover {
	background: var(--color-navy);
	color: #fff;
	border-color: var(--color-navy);
}

@media (max-width: 640px) {
	.to-top {
		right: 16px;
		bottom: 78px;
		width: 44px;
		height: 44px;
	}
}

/* Arama sonuçları sayfası */
.search-page {
	padding: 56px 0 80px;
	background: var(--color-bg);
}

.search-page__wrap {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}

.search-page__head {
	margin-bottom: 32px;
}

.search-page__eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3em;
	color: var(--color-gold);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.search-page__title {
	font-family: var(--font-heading);
	font-weight: 300;
	font-size: clamp(28px, 4vw, 44px);
	color: var(--color-heading);
	margin: 0 0 8px;
}

.search-page__count {
	color: var(--color-text);
	font-size: 15px;
	margin: 0;
}

.search-list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.search-card {
	display: block;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 14px;
	padding: 22px 26px;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.search-card:hover {
	border-color: transparent;
	box-shadow: 0 20px 44px -30px rgba(11, 31, 68, 0.45);
	transform: translateY(-2px);
}

.search-card__type {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-gold);
	margin-bottom: 8px;
}

.search-card__title {
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 22px;
	color: var(--color-heading);
	margin: 0 0 8px;
}

.search-card__excerpt {
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--color-text);
	margin: 0 0 12px;
}

.search-card__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-navy);
}

.search-page__nav {
	margin-top: 36px;
}

.search-page__nav .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	margin-right: 6px;
	border: 1px solid var(--color-border);
	border-radius: 10px;
	color: var(--color-navy);
	font-weight: 500;
}

.search-page__nav .page-numbers.current {
	background: var(--color-navy);
	color: #fff;
	border-color: var(--color-navy);
}

.search-empty {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 16px;
	padding: 40px;
	text-align: center;
	color: var(--color-text);
}

.search-empty__form {
	display: flex;
	gap: 10px;
	max-width: 480px;
	margin: 20px auto 0;
}

.search-empty__form input {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--color-border);
	border-radius: 10px;
	padding: 12px 16px;
	font-family: var(--font-body);
	font-size: 15px;
}

.search-empty__form input:focus {
	outline: none;
	border-color: var(--color-navy);
}

.site-header__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding: 16px var(--container-pad);
	display: flex;
	align-items: center;
	gap: 28px;
}

.mainnav {
	margin-left: auto;
}

.mainnav__menu {
	display: flex;
	align-items: center;
	gap: 28px;
}

.mainnav__menu a {
	font-size: 14.5px;
	font-weight: 500;
	color: var(--color-navy);
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: color 0.18s ease;
}

.mainnav__menu a:hover {
	color: var(--color-gold);
}

.mainnav__menu .has-caret > a::after,
.mainnav__menu .menu-item-has-children > a::after {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 1.6px solid currentColor;
	border-bottom: 1.6px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	opacity: 0.6;
	transition: transform 0.2s ease;
}

/* ---------- Açılır alt menü (dropdown) ---------- */
.mainnav__menu > li {
	position: relative;
}

.mainnav__menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	margin: 8px 0 0;
	padding: 8px;
	min-width: 236px;
	max-height: 74vh;
	overflow-y: auto;
	list-style: none;
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-radius: 14px;
	box-shadow: 0 24px 50px -30px rgba(11, 31, 68, 0.35);
	display: flex;
	flex-direction: column;
	gap: 2px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
	z-index: 120;
}

/* Menü öğesi ile açılır kutu arasındaki boşlukta hover kopmasını önle. */
.mainnav__menu > li > .sub-menu::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	height: 10px;
}

.mainnav__menu > li:hover > .sub-menu,
.mainnav__menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mainnav__menu > li:hover > a::after,
.mainnav__menu > li:focus-within > a::after {
	transform: rotate(225deg) translateY(2px);
}

.mainnav__menu .sub-menu a {
	display: block;
	padding: 9px 14px;
	border-radius: 9px;
	font-size: 14px;
	white-space: nowrap;
	color: var(--color-navy);
}

.mainnav__menu .sub-menu a:hover {
	background: var(--color-section);
	color: var(--color-gold);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.iconbtn {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 1px solid var(--color-border);
	background: var(--color-bg);
	color: var(--color-navy);
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

.iconbtn--menu {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.iconbtn--menu span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--color-navy);
	border-radius: 2px;
	transition: transform 0.22s ease, opacity 0.22s ease;
}

/* Açıkken hamburger → X */
.iconbtn--menu[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.iconbtn--menu[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.iconbtn--menu[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   MOBİL MENÜ (soldan açılır çekmece)
   ========================================================= */
.mnav {
	position: fixed;
	inset: 0;
	z-index: 1000;
}

.mnav[hidden] {
	display: none;
}

.mnav__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(6, 12, 26, 0.55);
	opacity: 0;
	transition: opacity 0.28s ease;
}

.mnav.is-open .mnav__backdrop {
	opacity: 1;
}

.mnav__panel {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: min(330px, 86vw);
	display: flex;
	flex-direction: column;
	background: #fff;
	box-shadow: 0 0 60px -10px rgba(6, 12, 26, 0.5);
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.mnav.is-open .mnav__panel {
	transform: translateX(0);
}

.mnav__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	border-bottom: 1px solid var(--color-border);
}

.mnav__close {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--color-navy);
	background: var(--color-bg);
	cursor: pointer;
}

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

.mnav__nav {
	flex: 1;
	overflow-y: auto;
	padding: 8px 0;
}

.mnav__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mnav__nav li {
	position: relative;
}

.mnav__nav a {
	display: block;
	padding: 14px 22px;
	font-family: var(--font-header);
	font-size: 15.5px;
	font-weight: 500;
	color: var(--color-navy);
	border-bottom: 1px solid rgba(11, 31, 68, 0.06);
}

.mnav__nav a:hover {
	background: var(--color-section);
	color: #2f5da8;
}

/* Alt menü öğeleri olan başlıklarda ok butonu için sağda yer aç. */
.mnav__nav .menu-item-has-children > a {
	padding-right: 56px;
}

/* Akordeon oku */
.mnav__caret {
	position: absolute;
	top: 4px;
	right: 12px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	border-radius: 50%;
	color: #8a93a6;
	cursor: pointer;
	background: transparent;
	transition: background 0.18s ease, color 0.18s ease;
}

.mnav__caret:hover,
.mnav__nav .menu-item-has-children.is-open > .mnav__caret {
	background: var(--color-section);
	color: var(--color-navy);
}

.mnav__caret svg {
	transition: transform 0.22s ease;
}

.mnav__nav .menu-item-has-children.is-open > .mnav__caret svg {
	transform: rotate(180deg);
}

/* Alt menüler varsayılan kapalı; yalnızca açık öğede görünür. */
.mnav__nav .sub-menu {
	display: none;
	background: var(--color-section);
}

.mnav__nav .menu-item-has-children.is-open > .sub-menu {
	display: block;
}

.mnav__nav .sub-menu a {
	padding-left: 40px;
	font-size: 14.5px;
	font-weight: 400;
	color: var(--color-text);
}

.mnav__foot {
	padding: 18px 20px calc(18px + env(safe-area-inset-bottom));
	border-top: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mnav__cta {
	justify-content: center;
	border-radius: 999px;
	padding: 14px 24px;
}

.mnav__phone {
	text-align: center;
	font-weight: 600;
	color: #2f5da8;
}

/* Mobil menü — dil seçici (dropdown + bayrak) */
.mnav__lang {
	position: relative;
	margin-top: 4px;
}

.mnav__lang-toggle {
	width: 100%;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 12px 14px;
	border: 1px solid var(--color-border);
	border-radius: 10px;
	background: #fff;
	color: var(--color-navy);
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.mnav__lang-cur {
	flex: 1;
	text-align: left;
}

.mnav__lang .topbar__lang-caret {
	opacity: 0.7;
	transition: transform 0.18s ease;
}

.mnav__lang.is-open .topbar__lang-caret {
	transform: rotate(180deg);
}

.mnav__lang-menu {
	position: absolute;
	left: 0;
	right: 0;
	bottom: calc(100% + 8px); /* Çekmece dibinde olduğu için yukarı açılır. */
	z-index: 5;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 12px;
	box-shadow: 0 -20px 46px -22px rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.mnav__lang.is-open .mnav__lang-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mnav__lang-menu a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 11px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-navy);
}

.mnav__lang-menu a:hover,
.mnav__lang-menu a.is-active {
	background: var(--color-section);
}

.mnav__lang .topbar__flag {
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   BUTONLAR
   ========================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 20px;
	border-radius: 10px;
	font-size: 14.5px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.18s ease;
	white-space: nowrap;
}

.btn--primary {
	background: var(--color-navy);
	color: #fff;
}

.btn--primary:hover {
	background: var(--color-navy-deep);
}

/* =========================================================
   GÜVEN ROZETLERİ
   ========================================================= */
.trustbar {
	background: #f8f9fa;
	border-bottom: 1px solid var(--color-border);
}

.trustbar__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding: 30px var(--container-pad);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.trustbar__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: var(--color-card);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--color-navy);
	white-space: nowrap;
}

.trustbar__item svg {
	color: var(--color-navy);
	flex-shrink: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
	background: #f8f9fa;
	color: var(--color-text);
}

.site-footer__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding: 64px var(--container-pad) 48px;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
	gap: 40px;
}

.brand--footer .brand__name {
	font-size: 20px;
}

.site-footer__desc {
	margin-top: 18px;
	font-size: 14px;
	line-height: 1.7;
	max-width: 280px;
	color: #111;
}

.site-footer__social {
	display: flex;
	gap: 10px;
	margin-top: 22px;
}

.site-footer__social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid #dcdbd6;
	display: grid;
	place-items: center;
	color: var(--color-navy);
	transition: background 0.18s ease, color 0.18s ease;
}

.site-footer__social a:hover {
	background: var(--color-navy);
	color: #fff;
}

.newsletter {
	margin-top: 28px;
}

.newsletter__label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.18em;
	font-weight: 600;
	color: var(--color-navy);
	margin-bottom: 12px;
}

.newsletter__form {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid #e3e2dd;
	border-radius: 10px;
	padding: 4px 4px 4px 14px;
	max-width: 300px;
}

.newsletter__input {
	flex: 1;
	border: none;
	background: transparent;
	font-size: 14px;
	outline: none;
	padding: 8px 0;
}

.newsletter__btn {
	width: 38px;
	height: 38px;
	border: none;
	border-radius: 8px;
	background: var(--color-navy);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	flex-shrink: 0;
}

.site-footer__title {
	font-size: 15px;
	font-weight: 600;
	color: var(--color-navy);
	margin-bottom: 18px;
}

.site-footer__links li {
	margin-bottom: 11px;
	font-size: 14px;
	color: #111;
}

.site-footer__links a {
	color: #111;
	transition: color 0.18s ease;
}

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

.site-footer__bottom {
	border-top: 1px solid #e3e2dd;
}

.site-footer__bottom-inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding: 20px var(--container-pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 13px;
	color: #111;
}

.site-footer__pay {
	display: flex;
	gap: 8px;
}

.site-footer__pay span {
	background: #fff;
	border: 1px solid #e3e2dd;
	border-radius: 5px;
	padding: 4px 9px;
	font-size: 11px;
	font-weight: 600;
	color: var(--color-navy);
}

.site-footer__legal {
	display: flex;
	gap: 20px;
}

.site-footer__legal a {
	color: #111;
}

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

/* =========================================================
   DUYARLI (RESPONSIVE)
   ========================================================= */
@media (max-width: 1024px) {
	.mainnav,
	.btn--primary span {
		display: none;
	}

	.iconbtn--menu {
		display: flex;
	}

	/* Nav gizliyken ikonları en sağa yasla. */
	.site-header__actions {
		margin-left: auto;
	}

	.site-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.site-footer__brandcol {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	/* Mobilde üst bar (konum / telefon / dil) gizli. */
	.topbar {
		display: none;
	}

	.topbar__left span {
		display: none;
	}

	/* Mobilde logo eski (daha küçük) boyutunda. */
	.brand__name {
		font-size: 22px;
	}

	.brand__sub {
		font-size: 9.5px;
	}

	.brand__logo {
		height: 44px;
	}

	/* Mobilde header taşmasın: Randevu Al gizli (WhatsApp + telefon zaten erişilebilir). */
	.site-header__actions .btn--primary {
		display: none;
	}

	.trustbar__inner {
		gap: 8px;
		padding: 22px 16px;
	}

	.trustbar__item {
		padding: 8px 14px;
		font-size: 12.5px;
		gap: 6px;
	}

	.trustbar__item svg {
		width: 15px;
		height: 15px;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		/* Yüzen telefon/WhatsApp butonları linkleri kapatmasın. */
		padding-bottom: 92px;
	}
}

/* ---------- Temel Tipografi ---------- */
body {
	font-family: var(--font-primary);
	color: var(--color-text);
	background-color: var(--color-bg);
}

/* ---------- Yardımcı: İçerik konteyneri ---------- */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}

/* ---------- Sayfa yol izi (breadcrumb) — açık zeminli iç sayfalar ---------- */
.pg-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	color: var(--color-muted);
	margin-bottom: 24px;
}

.pg-breadcrumb a {
	color: var(--color-muted);
	transition: color 0.18s ease;
}

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

.pg-breadcrumb__sep {
	color: var(--color-border);
}

.pg-breadcrumb__current {
	color: var(--color-navy);
	font-weight: 500;
}

/* ---------- Erişilebilirlik ---------- */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 12px 20px;
	clip: auto;
	background: #fff;
	color: #000;
}

/* =========================================================
   CONTACT FORM 7 — İletişim / Randevu formu (tasarıma göre)
   ========================================================= */
.drt-formwrap {
	width: 100%;
}

.drt-cf7 {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.drt-cf7__row {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.drt-cf7__label {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-heading);
}

.drt-cf7__req {
	color: #e5484d;
	margin-left: 2px;
}

.drt-cf7 .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.drt-cf7__input {
	width: 100%;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--color-heading);
	background: #f4f6f9;
	border: 1px solid #e6e9ef;
	border-radius: 12px;
	padding: 14px 16px;
	transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.drt-cf7__input::placeholder {
	color: #9aa3b2;
}

.drt-cf7__input:focus {
	outline: none;
	background: #fff;
	border-color: var(--color-navy);
	box-shadow: 0 0 0 3px rgba(11, 31, 68, 0.08);
}

/* Telefon satırı: ülke kodu (bayrak) + numara */
.drt-cf7__phone {
	display: flex;
	gap: 12px;
	align-items: stretch;
	min-width: 0;
}

.drt-cf7__phone .drt-cf7__input {
	width: 100%;
	min-width: 0;
}

/* CF7'nin otomatik eklediği <br>'ler flex öğesi olup boşluk yaratıyor — gizle */
.drt-cf7__phone br {
	display: none;
}

.drt-cf7__cc {
	flex: 0 0 auto;
	width: auto;
}

.drt-cf7__phone > .wpcf7-form-control-wrap {
	flex: 1 1 0;
	min-width: 0;
}

.drt-cf7__ccsel {
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--color-heading);
	background-color: #f4f6f9;
	border: 1px solid #e6e9ef;
	border-radius: 12px;
	padding: 14px 38px 14px 14px;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%236b7688' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	cursor: pointer;
	height: 100%;
}

.drt-cf7__ccsel:focus {
	outline: none;
	border-color: var(--color-navy);
}

/* KVKK onay kutusu */
.drt-cf7__consent .wpcf7-list-item {
	margin: 0;
}

.drt-cf7__consent .wpcf7-list-item label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--color-text);
	cursor: pointer;
}

.drt-cf7__consent input[type="checkbox"] {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	accent-color: var(--color-navy);
	cursor: pointer;
}

.drt-cf7__consent a {
	color: #2f5da8;
	text-decoration: underline;
	font-weight: 500;
}

/* Gönder butonu */
.drt-cf7__actions {
	margin-top: 4px;
}

.drt-cf7__btn {
	width: 100%;
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: var(--color-navy);
	border: none;
	border-radius: 12px;
	padding: 16px 24px;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.18s ease;
}

.drt-cf7__btn:hover {
	background: var(--color-navy-deep);
	transform: translateY(-1px);
}

/* Alt not */
.drt-cf7__note {
	display: none;
}

/* CF7 durum & doğrulama mesajları */
.drt-formwrap .wpcf7-response-output {
	display: none;
	margin: 16px 0 0 !important;
	padding: 12px 16px !important;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.5;
}

/* Yalnızca mesaj olduğunda (hata/başarı) göster — boş kutu yer kaplamasın. */
.drt-formwrap form.invalid .wpcf7-response-output,
.drt-formwrap form.unaccepted .wpcf7-response-output,
.drt-formwrap form.payment-required .wpcf7-response-output,
.drt-formwrap form.spam .wpcf7-response-output,
.drt-formwrap form.failed .wpcf7-response-output,
.drt-formwrap form.sent .wpcf7-response-output {
	display: block;
}

.drt-formwrap form.invalid .wpcf7-response-output,
.drt-formwrap form.unaccepted .wpcf7-response-output,
.drt-formwrap form.payment-required .wpcf7-response-output {
	border-color: #f0b7b9;
	background: #fdecec;
	color: #a4292d;
}

.drt-formwrap form.sent .wpcf7-response-output {
	border-color: #b7e0c0;
	background: #eafaef;
	color: #1d7a3a;
}

.drt-formwrap .wpcf7-not-valid-tip {
	color: #e5484d;
	font-size: 12.5px;
	margin-top: 6px;
}

.drt-cf7__input.wpcf7-not-valid,
.drt-cf7__ccsel.wpcf7-not-valid {
	border-color: #e5484d;
}

.drt-formwrap .wpcf7-spinner {
	margin: 12px auto 0;
	display: block;
}

.drt-cf7-missing {
	background: #fff6e5;
	border: 1px solid #f0d79a;
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 14px;
	color: #8a6300;
}

/* =========================================================
   CTA + İletişim formu (iç sayfa CTA'ları — iki kolon)
   ========================================================= */
.drt-cta2 {
	display: grid;
	grid-template-columns: 1fr minmax(380px, 520px);
	gap: 40px;
	align-items: center;
	max-width: var(--container-max);
	margin-inline: auto;
}

.drt-cta2__main {
	text-align: left;
}

/* Açıklama metnini sola yasla. */
.drt-cta2__main [class$="__text"] {
	text-align: left;
	margin-inline: 0;
}

/* Sol kolondaki buton grubunu sola yasla (varsayılan ortalıydı). */
.drt-cta2__main [class$="__actions"] {
	justify-content: flex-start;
}

/* Sağ kolon: beyaz kart içinde CF7 formu. */
.drt-cta2__form {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	text-align: left;
	box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
	.drt-cta2 {
		grid-template-columns: 1fr;
		gap: 30px;
		min-width: 0;
	}

	.drt-cta2__main,
	.drt-cta2__form {
		min-width: 0;
	}

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

	.drt-cta2__main [class$="__actions"] {
		justify-content: center;
	}
}

/* =========================================================
   CF7 telefon — aramalı ülke kodu seçici (tüm ülkeler)
   ========================================================= */
.drt-cc {
	position: relative;
	flex: 0 0 auto;
}

.drt-cc__input {
	display: none;
}

.drt-cc__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 100%;
	min-height: 50px;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--color-heading);
	background: #f4f6f9;
	border: 1px solid #e6e9ef;
	border-radius: 12px;
	padding: 10px 14px;
	cursor: pointer;
	transition: border-color 0.18s ease, background 0.18s ease;
}

.drt-cc__btn:hover {
	background: #eef1f6;
}

.drt-cc.is-open .drt-cc__btn {
	border-color: var(--color-navy);
	background: #fff;
}

.drt-cc__flag {
	font-size: 18px;
	line-height: 1;
}

.drt-cc__code {
	font-weight: 600;
}

.drt-cc__caret {
	color: #6b7688;
	transition: transform 0.18s ease;
}

.drt-cc.is-open .drt-cc__caret {
	transform: rotate(180deg);
}

.drt-cc__panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 60;
	width: 320px;
	max-width: 78vw;
	background: #fff;
	border: 1px solid #e6e9ef;
	border-radius: 14px;
	box-shadow: 0 24px 60px -24px rgba(11, 31, 68, 0.4);
	overflow: hidden;
}

.drt-cc__search {
	width: 100%;
	border: none;
	border-bottom: 1px solid #eef0f4;
	padding: 14px 16px;
	font-family: var(--font-body);
	font-size: 14.5px;
	color: var(--color-heading);
	outline: none;
}

.drt-cc__search::placeholder {
	color: #9aa3b2;
}

.drt-cc__list {
	max-height: 280px;
	overflow-y: auto;
	padding: 6px;
}

.drt-cc__item {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	background: none;
	border: none;
	border-radius: 9px;
	padding: 10px 12px;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--color-heading);
	text-align: left;
	cursor: pointer;
}

.drt-cc__item:hover {
	background: #f4f6f9;
}

.drt-cc__item.is-active {
	background: #eaf1ff;
}

.drt-cc__item .drt-cc__name {
	flex: 1 1 auto;
}

.drt-cc__itemcode {
	color: #8a93a3;
	font-weight: 500;
}

.drt-cc__list::-webkit-scrollbar {
	width: 8px;
}

.drt-cc__list::-webkit-scrollbar-thumb {
	background: #d7dce4;
	border-radius: 8px;
}

/* =========================================================
   POPUP (Ücretsiz konsültasyon)
   ========================================================= */
.drt-popup-lock {
	overflow: hidden;
}

.drt-popup {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.25s ease;
}

/* Kapalıyken tamamen gizli — sayfayı kaplayıp tıklamaları engellememeli. */
.drt-popup[hidden] {
	display: none;
}

.drt-popup.is-open {
	opacity: 1;
}

.drt-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 15, 35, 0.6);
}

.drt-popup__card {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
	max-height: 92vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 22px;
	padding: 40px;
	box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.5);
	transform: translateY(14px) scale(0.98);
	transition: transform 0.25s ease;
}

.drt-popup.is-open .drt-popup__card {
	transform: none;
}

.drt-popup__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: none;
	background: #f1f3f7;
	color: var(--color-heading);
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: background 0.15s ease;
}

.drt-popup__close:hover {
	background: #e5e8ef;
}

.drt-popup__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: #2f5da8;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.drt-popup__title {
	font-family: var(--font-heading);
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 600;
	color: var(--color-heading);
	margin: 0 0 10px;
}

.drt-popup__desc {
	font-size: 15px;
	line-height: 1.6;
	color: var(--color-text);
	margin: 0 0 22px;
}

@media (max-width: 560px) {
	.drt-popup__card {
		padding: 30px 20px;
		border-radius: 18px;
	}
}

/* Popup formu — alt boşlukları sıkılaştır */
.drt-popup__card {
	padding-bottom: 26px;
}

.drt-popup .drt-cf7 {
	gap: 14px;
}

.drt-popup .drt-cf7__actions {
	margin-top: 2px;
}

.drt-popup .drt-cf7__note {
	margin-top: 2px;
}

/* Popup — mobilde tek ekrana sığdır (scroll'suz) */
@media (max-width: 560px) {
	.drt-popup {
		padding: 10px;
	}

	.drt-popup__card {
		padding: 22px 18px 18px;
		max-height: 96vh;
		border-radius: 18px;
	}

	.drt-popup__close {
		top: 12px;
		right: 12px;
		width: 34px;
		height: 34px;
	}

	.drt-popup__eyebrow {
		font-size: 11px;
		margin-bottom: 6px;
	}

	.drt-popup__title {
		font-size: 22px;
		line-height: 1.15;
		margin-bottom: 6px;
	}

	.drt-popup__desc {
		font-size: 13.5px;
		line-height: 1.5;
		margin-bottom: 14px;
	}

	.drt-popup .drt-cf7 {
		gap: 11px;
	}

	.drt-popup .drt-cf7__row {
		gap: 5px;
	}

	.drt-popup .drt-cf7__label {
		font-size: 13px;
	}

	.drt-popup .drt-cf7__input,
	.drt-popup .drt-cc__btn {
		padding: 11px 13px;
		min-height: 44px;
	}

	.drt-popup .drt-cf7__consent .wpcf7-list-item label {
		font-size: 12.5px;
		line-height: 1.4;
	}

	.drt-popup .drt-cf7__btn {
		padding: 15px 20px;
		font-size: 15px;
	}

	.drt-popup .drt-cf7__note {
		display: none;
	}
}

/* Popup — güvenlik notunu gizle */
.drt-popup .drt-cf7__note {
	display: none;
}

/* Popup — alttaki fazla boşluğu iyice kıs (üstle dengeli) */
.drt-popup__card {
	padding-bottom: 24px;
}

.drt-popup .drt-popup__form,
.drt-popup .drt-formwrap,
.drt-popup .wpcf7,
.drt-popup .wpcf7 > form {
	margin: 0;
}

.drt-popup .drt-cf7,
.drt-popup .drt-cf7 > *:last-child {
	margin-bottom: 0;
}

/* CF7 görünmez a11y kutusu yer kaplamasın */
.drt-popup .screen-reader-response {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	margin: 0;
}

@media (max-width: 560px) {
	.drt-popup__card {
		padding-bottom: 16px;
	}
}

/* CF7: wpautop kaynaklı <p> boşluklarını sıfırla (fazla dikey boşluk) */
.drt-formwrap .wpcf7-form p {
	margin: 0;
}

.drt-popup__card {
	padding-bottom: 20px;
}

/* Ülke kodu kutusu — gizli CF7 sarmalayıcısını düzenden çıkar (sola hizalı dursun) */
.drt-cc .wpcf7-form-control-wrap {
	display: none;
}

.drt-cc {
	margin-left: 0;
}

.drt-cc__btn {
	margin-left: 0;
}
