/* ==========================================================================
   Bir Teknik — ana stil dosyası
   Tasarım kaynağı: Claude Design "Beyaz Eşya Servisi WordPress Tema"
   Renkler inc/enqueue.php içinden :root değişkenleri olarak basılır.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Değişkenler
   -------------------------------------------------------------------------- */
:root {
	/* Renkler (Customizer tarafından ezilir) */
	--bt-primary: #1273d4;
	--bt-primary-rgb: 18, 115, 212;
	--bt-primary-dark: #0d5fb3;
	--bt-primary-light: #2a86e2;
	--bt-accent: #f7941d;
	--bt-accent-rgb: 247, 148, 29;
	--bt-accent-soft: #ffbc57;
	--bt-dark: #0b1c2d;
	--bt-dark-rgb: 11, 28, 45;
	--bt-dark-2: #10283e;
	--bt-deep: #081524;
	--bt-green: #1fb355;
	--bt-green-rgb: 31, 179, 85;
	--bt-green-light: #25c95f;
	--bt-sky: #3ea1ff;

	/* Nötrler */
	--bt-bg: #f4f6f9;
	--bt-surface: #ffffff;
	--bt-surface-2: #f8fafc;
	--bt-border: #e3e8ef;
	--bt-border-strong: #d8dfe8;
	--bt-heading: #14212f;
	--bt-text: #24303e;
	--bt-muted: #5a6675;
	--bt-on-dark: #b6c5d6;
	--bt-on-dark-soft: #9fb2c6;
	--bt-on-dark-dim: #6f8195;

	/* Tipografi */
	--bt-font-head: 'Exo 2', 'Segoe UI', system-ui, -apple-system, sans-serif;
	--bt-font-body: 'IBM Plex Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

	/* Ölçüler */
	--bt-wrap: 1200px;
	--bt-gutter: 24px;
	--bt-section-y: 80px;
	--bt-radius: 16px;
	--bt-radius-sm: 12px;
	--bt-radius-lg: 18px;

	/* Gölgeler */
	--bt-shadow-card: 0 16px 40px rgba(20, 40, 70, 0.12);
	--bt-shadow-cta: 0 8px 24px rgba(var(--bt-primary-rgb), 0.35);
	--bt-shadow-panel: 0 24px 64px rgba(4, 12, 20, 0.45);
}

/* --------------------------------------------------------------------------
   2. Sıfırlama ve temel
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	/* Yapışkan başlık altında kalan çapa hedefleri için */
	scroll-padding-top: 96px;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--bt-bg);
	color: var(--bt-text);
	font-family: var(--bt-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-wrap: break-word;
}

img,
svg,
video,
iframe {
	max-width: 100%;
	height: auto;
}

img {
	display: block;
}

a {
	color: var(--bt-primary);
	text-decoration: none;
	transition: color 0.15s ease;
}

a:hover {
	color: var(--bt-primary-dark);
}

::selection {
	background: var(--bt-primary);
	color: #fff;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--bt-font-head);
	color: var(--bt-heading);
	line-height: 1.2;
	margin: 0 0 0.5em;
	text-wrap: pretty;
}

p {
	margin: 0 0 1em;
	text-wrap: pretty;
}

p:last-child {
	margin-bottom: 0;
}

hr {
	border: 0;
	border-top: 1px solid var(--bt-border);
	margin: 32px 0;
}

blockquote {
	margin: 24px 0;
	padding: 18px 24px;
	border-left: 4px solid var(--bt-primary);
	background: var(--bt-surface-2);
	border-radius: 0 var(--bt-radius-sm) var(--bt-radius-sm) 0;
	color: var(--bt-muted);
	font-style: italic;
}

code, pre, kbd {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.9em;
}

pre {
	background: var(--bt-dark);
	color: #dbe6f2;
	padding: 18px;
	border-radius: var(--bt-radius-sm);
	overflow-x: auto;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
}

th, td {
	border: 1px solid var(--bt-border);
	padding: 10px 14px;
	text-align: start;
}

th {
	background: var(--bt-surface-2);
	font-weight: 600;
	color: var(--bt-heading);
}

/* --------------------------------------------------------------------------
   3. Erişilebilirlik
   -------------------------------------------------------------------------- */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: var(--bt-heading);
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	inset-inline-start: 8px;
	line-height: normal;
	padding: 14px 22px;
	text-decoration: none;
	top: 8px;
	width: auto;
	z-index: 100000;
}

.bt-skip-link {
	position: absolute;
	inset-inline-start: -9999px;
	top: 0;
	z-index: 100000;
	background: var(--bt-accent);
	color: var(--bt-dark);
	font-weight: 700;
	padding: 14px 22px;
	border-radius: 0 0 10px 0;
}

.bt-skip-link:focus {
	inset-inline-start: 0;
	color: var(--bt-dark);
}

:focus-visible {
	outline: 3px solid var(--bt-accent);
	outline-offset: 2px;
	border-radius: 4px;
}

/* Fare kullanıcılarında halka çıkmasın, klavyede çıksın */
:focus:not(:focus-visible) {
	outline: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* --------------------------------------------------------------------------
   4. Yerleşim
   -------------------------------------------------------------------------- */
.bt-wrap {
	max-width: var(--bt-wrap);
	margin-inline: auto;
	padding-inline: var(--bt-gutter);
	width: 100%;
}

.bt-section {
	padding-block: var(--bt-section-y);
}

.bt-section--tight {
	padding-block: 56px;
}

.bt-section--light {
	background: var(--bt-surface);
}

.bt-section--muted {
	background: var(--bt-bg);
}

.bt-section--bordered {
	border-top: 1px solid var(--bt-border);
}

.bt-grid {
	display: grid;
	gap: 20px;
}

.bt-grid--4 { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.bt-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.bt-grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.bt-grid--tiles { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.bt-grid--steps { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.bt-grid--gallery { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }

.bt-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 44px;
}

.bt-head__eyebrow {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2.5px;
	color: var(--bt-accent);
	margin-bottom: 10px;
	text-transform: uppercase;
}

.bt-head__eyebrow--blue {
	color: var(--bt-primary);
}

.bt-head__title {
	margin: 0 0 12px;
	font-weight: 800;
	font-size: clamp(26px, 3.4vw, 34px);
}

.bt-head__text {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--bt-muted);
}

/* --------------------------------------------------------------------------
   5. Butonlar
   -------------------------------------------------------------------------- */
.bt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: inherit;
	font-weight: 700;
	font-size: 15.5px;
	line-height: 1.2;
	padding: 14px 26px;
	border-radius: var(--bt-radius-sm);
	border: 1px solid transparent;
	cursor: pointer;
	text-align: center;
	transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

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

.bt-btn--primary {
	background: var(--bt-primary);
	color: #fff;
	box-shadow: var(--bt-shadow-cta);
}

.bt-btn--primary:hover {
	background: var(--bt-primary-light);
	color: #fff;
}

.bt-btn--wa {
	background: var(--bt-green);
	color: #fff;
}

.bt-btn--wa:hover {
	background: var(--bt-green-light);
	color: #fff;
}

.bt-btn--accent {
	background: var(--bt-accent);
	color: var(--bt-dark);
	font-size: 14.5px;
	padding: 11px 20px;
	border-radius: 10px;
	white-space: nowrap;
}

.bt-btn--accent:hover {
	background: #ffa93c;
	color: var(--bt-dark);
}

.bt-btn--ghost {
	background: transparent;
	border-color: var(--bt-border-strong);
	color: var(--bt-heading);
}

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

.bt-btn--sm {
	font-size: 14px;
	padding: 11px 18px;
	border-radius: 10px;
}

.bt-btn--block {
	width: 100%;
}

.bt-btn-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 4px;
}

.bt-link-more {
	font-size: 14px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.bt-link-more .bt-icon {
	transition: transform 0.15s ease;
}

.bt-link-more:hover .bt-icon {
	transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   6. Üst şerit + başlık
   -------------------------------------------------------------------------- */
.bt-topbar {
	background: var(--bt-deep);
	color: var(--bt-on-dark-soft);
	font-size: 13px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bt-topbar__inner {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	padding-block: 8px;
}

.bt-topbar__sep {
	opacity: 0.4;
}

.bt-topbar__actions {
	margin-inline-start: auto;
	display: flex;
	gap: 16px;
	align-items: center;
}

.bt-topbar__wa {
	color: #4fd07c;
	font-weight: 600;
}

.bt-topbar__wa:hover {
	color: #7de6a1;
}

.bt-topbar__tel {
	color: #fff;
	font-weight: 700;
}

.bt-topbar__tel:hover {
	color: #ffd9a3;
}

.bt-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(var(--bt-dark-rgb), 0.97);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 2px 16px rgba(4, 12, 20, 0.35);
}

.admin-bar .bt-header {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .bt-header {
		top: 46px;
	}
}

.bt-header__inner {
	display: flex;
	align-items: center;
	gap: 26px;
	padding-block: 10px;
}

.bt-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.bt-brand__logo {
	height: 54px;
	width: 54px;
	object-fit: contain;
	mix-blend-mode: lighten;
}

.bt-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.bt-brand__name {
	font-family: var(--bt-font-head);
	font-weight: 800;
	font-style: italic;
	font-size: 22px;
	letter-spacing: 0.4px;
	color: #e8edf3;
	margin: 0;
}

.bt-brand__name em {
	font-style: inherit;
	color: var(--bt-sky);
}

.bt-brand__tagline {
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 2px;
	color: #f7a726;
	text-transform: uppercase;
}

/* Ana menü */
.bt-nav {
	margin-inline-start: auto;
}

.bt-nav__list {
	display: flex;
	gap: 22px;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-weight: 500;
}

.bt-nav__list a {
	color: #c7d3e0;
	display: block;
	padding-block: 6px;
}

.bt-nav__list a:hover,
.bt-nav__list a:focus-visible {
	color: #fff;
}

.bt-nav__list .current-menu-item > a,
.bt-nav__list .current_page_item > a,
.bt-nav__list .current-menu-ancestor > a,
.bt-nav__list .bt-nav__item--active > a {
	color: #fff;
	font-weight: 600;
}

/* Alt menü */
.bt-nav__list li {
	position: relative;
}

.bt-nav__list .sub-menu {
	position: absolute;
	inset-inline-start: 0;
	top: 100%;
	min-width: 230px;
	background: var(--bt-dark);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 8px;
	margin: 10px 0 0;
	list-style: none;
	box-shadow: 0 18px 40px rgba(4, 12, 20, 0.5);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

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

.bt-nav__list .sub-menu a {
	padding: 9px 12px;
	border-radius: 8px;
	font-size: 14.5px;
}

.bt-nav__list .sub-menu a:hover {
	background: rgba(255, 255, 255, 0.07);
}

.bt-header__cta {
	flex-shrink: 0;
}

.bt-nav-toggle {
	display: none;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #fff;
	border-radius: 10px;
	padding: 9px 11px;
	cursor: pointer;
	margin-inline-start: auto;
}

.bt-nav-toggle:hover {
	background: rgba(255, 255, 255, 0.14);
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.bt-hero {
	background: linear-gradient(180deg, var(--bt-dark) 0%, var(--bt-dark-2) 100%);
	color: #fff;
}

.bt-hero__inner {
	padding-block: 64px 72px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
	gap: 48px;
	align-items: center;
}

.bt-hero__col {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.bt-badge {
	align-self: flex-start;
	background: rgba(var(--bt-accent-rgb), 0.12);
	border: 1px solid rgba(var(--bt-accent-rgb), 0.4);
	color: var(--bt-accent-soft);
	font-size: 13px;
	font-weight: 600;
	padding: 7px 14px;
	border-radius: 999px;
	letter-spacing: 0.3px;
}

.bt-hero__title {
	margin: 0;
	font-weight: 800;
	font-size: clamp(30px, 4.2vw, 46px);
	line-height: 1.15;
	color: #fff;
}

.bt-hero__text {
	margin: 0;
	font-size: 16.5px;
	line-height: 1.65;
	color: var(--bt-on-dark);
	max-width: 54ch;
}

.bt-hero__text strong {
	color: #fff;
}

.bt-ticks {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 15px;
	color: #d5e0ec;
}

.bt-ticks li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.bt-ticks .bt-icon {
	color: #4fd07c;
	flex-shrink: 0;
	margin-top: 2px;
}

.bt-hero__media {
	display: flex;
	justify-content: center;
}

.bt-hero__media img {
	width: min(420px, 100%);
	border-radius: var(--bt-radius-lg);
	filter: drop-shadow(0 24px 60px rgba(var(--bt-primary-rgb), 0.3));
}

/* --------------------------------------------------------------------------
   8. Servis talebi formu
   -------------------------------------------------------------------------- */
.bt-form-card {
	justify-self: center;
	width: min(420px, 100%);
	background: #fff;
	border-radius: var(--bt-radius-lg);
	box-shadow: var(--bt-shadow-panel);
	padding: 30px;
	color: var(--bt-text);
}

.bt-form-card__title {
	margin: 0 0 6px;
	font-weight: 700;
	font-size: 22px;
}

.bt-form-card__lead {
	margin: 0 0 20px;
	font-size: 13.5px;
	color: var(--bt-muted);
}

.bt-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.bt-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #3c4856;
}

.bt-field__req {
	color: #cf3d3d;
}

.bt-field input,
.bt-field select,
.bt-field textarea {
	width: 100%;
	border: 1px solid var(--bt-border-strong);
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 15px;
	font-family: inherit;
	font-weight: 400;
	color: var(--bt-text);
	background: #fbfcfe;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bt-field input:focus,
.bt-field select:focus,
.bt-field textarea:focus {
	border-color: var(--bt-primary);
	box-shadow: 0 0 0 3px rgba(var(--bt-primary-rgb), 0.15);
	outline: none;
}

.bt-field textarea {
	min-height: 96px;
	resize: vertical;
}

.bt-field--invalid input,
.bt-field--invalid select {
	border-color: #cf3d3d;
}

/* Bal küpü — ekranda görünmez, ekran okuyucudan gizli */
.bt-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.bt-form__note {
	text-align: center;
	font-size: 13.5px;
	color: var(--bt-muted);
	margin: 0;
}

.bt-form__kvkk {
	font-size: 11.5px;
	line-height: 1.5;
	color: #7c8797;
	margin: 0;
}

.bt-alert {
	font-size: 14px;
	font-weight: 500;
	border-radius: 10px;
	padding: 12px 14px;
}

.bt-alert--ok {
	background: #e9f8ef;
	border: 1px solid #bfe8cd;
	color: #1e7c43;
}

.bt-alert--err {
	background: #fdecec;
	border: 1px solid #f5c2c2;
	color: #b02a2a;
}

/* --------------------------------------------------------------------------
   9. Öne çıkanlar şeridi
   -------------------------------------------------------------------------- */
.bt-usp {
	background: var(--bt-surface);
	border-bottom: 1px solid var(--bt-border);
}

.bt-usp__inner {
	padding-block: 22px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}

.bt-usp__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 6px;
}

.bt-usp__num {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: #eaf3fc;
	color: var(--bt-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--bt-font-head);
	font-weight: 800;
	font-size: 17px;
	flex-shrink: 0;
}

.bt-usp__item:nth-child(even) .bt-usp__num {
	background: #fdf1e2;
	color: #e07f0e;
}

.bt-usp__body {
	display: flex;
	flex-direction: column;
}

.bt-usp__title {
	font-size: 15px;
	color: var(--bt-heading);
	font-weight: 700;
	font-family: var(--bt-font-body);
}

.bt-usp__sub {
	font-size: 13px;
	color: var(--bt-muted);
}

/* --------------------------------------------------------------------------
   10. Kartlar
   -------------------------------------------------------------------------- */
.bt-card {
	background: var(--bt-surface);
	border: 1px solid var(--bt-border);
	border-radius: var(--bt-radius);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bt-card:hover {
	box-shadow: var(--bt-shadow-card);
	transform: translateY(-4px);
}

.bt-card--flat {
	background: var(--bt-surface-2);
	padding: 26px;
}

.bt-card--flat:hover {
	transform: none;
	box-shadow: none;
}

.bt-card__media {
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 10px;
	overflow: hidden;
	background: linear-gradient(135deg, #e8eef5, #dbe4ee);
}

.bt-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.bt-card:hover .bt-card__media img {
	transform: scale(1.04);
}

.bt-card__title {
	margin: 0;
	font-weight: 700;
	font-size: 20px;
}

.bt-card__title a {
	color: inherit;
}

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

.bt-card__text {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--bt-muted);
	flex: 1;
}

.bt-card__head {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.bt-pill {
	background: #fdf1e2;
	color: #e07f0e;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 3px 9px;
	border-radius: 6px;
	text-transform: uppercase;
}

/* Bilgi döşemesi (hizmet detay sayfaları) */
.bt-tile {
	background: var(--bt-surface-2);
	border: 1px solid var(--bt-border);
	border-radius: 14px;
	padding: 18px;
}

.bt-tile__title {
	display: block;
	font-size: 15px;
	color: var(--bt-heading);
	margin-bottom: 6px;
	font-weight: 700;
	font-family: var(--bt-font-body);
}

.bt-tile__text {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--bt-muted);
}

/* Numaralı adımlar */
.bt-step {
	background: var(--bt-surface-2);
	border: 1px solid var(--bt-border);
	border-radius: 14px;
	padding: 20px;
}

.bt-step__num {
	font-family: var(--bt-font-head);
	font-weight: 800;
	font-style: italic;
	font-size: 18px;
	color: var(--bt-primary);
	margin-bottom: 8px;
}

/* Etiket bulutu (sık görülen arızalar) */
.bt-tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bt-tags li,
.bt-tags a {
	display: inline-block;
	border: 1px solid var(--bt-border-strong);
	border-radius: 999px;
	padding: 7px 14px;
	font-size: 13.5px;
	color: #3c4856;
}

.bt-tags a:hover {
	border-color: var(--bt-primary);
	color: var(--bt-primary);
}

/* --------------------------------------------------------------------------
   11. Galeri
   -------------------------------------------------------------------------- */
.bt-gallery__item {
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #e8eef5, #dbe4ee);
	margin: 0;
}

.bt-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.bt-gallery__item:hover img {
	transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   12. SSS
   -------------------------------------------------------------------------- */
.bt-faq {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 820px;
	margin-inline: auto;
}

.bt-faq__item {
	background: var(--bt-surface-2);
	border: 1px solid var(--bt-border);
	border-radius: 14px;
	padding: 18px 22px;
}

.bt-faq__item[open] {
	border-color: rgba(var(--bt-primary-rgb), 0.35);
}

.bt-faq__q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: var(--bt-heading);
	list-style: none;
}

.bt-faq__q::-webkit-details-marker {
	display: none;
}

.bt-faq__q::after {
	content: "+";
	color: var(--bt-primary);
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.bt-faq__item[open] .bt-faq__q::after {
	content: "−";
}

.bt-faq__a {
	margin: 12px 0 0;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--bt-muted);
}

/* --------------------------------------------------------------------------
   13. CTA şeridi
   -------------------------------------------------------------------------- */
.bt-cta {
	background: linear-gradient(120deg, var(--bt-dark), #0e5db4);
	color: #fff;
}

.bt-cta__inner {
	padding-block: 52px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
}

.bt-cta__title {
	margin: 0 0 8px;
	font-weight: 800;
	font-size: clamp(24px, 3vw, 30px);
	color: #fff;
}

.bt-cta__text {
	margin: 0;
	font-size: 15px;
	color: #c3d6ea;
}

.bt-cta__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.bt-phone-xl {
	font-family: var(--bt-font-head);
	font-weight: 800;
	font-style: italic;
	font-size: clamp(24px, 3vw, 32px);
	color: #fff;
	white-space: nowrap;
}

.bt-phone-xl:hover {
	color: #ffd9a3;
}

/* --------------------------------------------------------------------------
   14. İletişim kutuları
   -------------------------------------------------------------------------- */
.bt-info {
	background: var(--bt-surface-2);
	border: 1px solid var(--bt-border);
	border-radius: var(--bt-radius);
	padding: 26px;
}

.bt-info__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: var(--bt-primary);
	margin-bottom: 10px;
	text-transform: uppercase;
}

.bt-info address {
	font-style: normal;
	margin: 0 0 12px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--bt-text);
}

.bt-info__hours {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: var(--bt-text);
}

.bt-map {
	margin-top: 32px;
	border-radius: var(--bt-radius);
	overflow: hidden;
	border: 1px solid var(--bt-border);
	line-height: 0;
}

.bt-map iframe {
	width: 100%;
	height: 380px;
	border: 0;
	display: block;
}

/* --------------------------------------------------------------------------
   15. Sayfa başlığı (iç sayfalar)
   -------------------------------------------------------------------------- */
.bt-pagehead {
	background: linear-gradient(180deg, var(--bt-dark), var(--bt-dark-2));
	color: #fff;
}

.bt-pagehead__inner {
	padding-block: 52px 60px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	align-items: center;
}

.bt-pagehead__col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.bt-pagehead__title {
	margin: 0;
	font-weight: 800;
	font-size: clamp(28px, 3.8vw, 42px);
	line-height: 1.15;
	color: #fff;
}

.bt-pagehead__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
	color: var(--bt-on-dark);
	max-width: 60ch;
}

.bt-pagehead__media {
	border-radius: var(--bt-radius);
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: rgba(255, 255, 255, 0.05);
}

.bt-pagehead__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Breadcrumb */
.bt-crumbs {
	font-size: 13px;
	color: #7f95ab;
}

.bt-crumbs ol {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

.bt-crumbs a {
	color: var(--bt-on-dark-soft);
}

.bt-crumbs a:hover {
	color: #fff;
}

.bt-crumbs li[aria-current="page"] {
	color: var(--bt-accent-soft);
}

.bt-crumbs li + li::before {
	content: "›";
	margin-inline-end: 8px;
	color: #55697e;
}

/* Açık zeminli breadcrumb (blog) */
.bt-crumbs--light {
	color: var(--bt-muted);
	padding-block: 18px;
}

.bt-crumbs--light a {
	color: var(--bt-muted);
}

.bt-crumbs--light a:hover {
	color: var(--bt-primary);
}

.bt-crumbs--light li[aria-current="page"] {
	color: var(--bt-heading);
	font-weight: 600;
}

/* --------------------------------------------------------------------------
   16. İki kolonlu içerik + yan sütun
   -------------------------------------------------------------------------- */
.bt-layout {
	display: flex;
	gap: 44px;
	flex-wrap: wrap;
	align-items: flex-start;
	padding-block: 72px;
}

.bt-layout__main {
	flex: 2 1 480px;
	display: flex;
	flex-direction: column;
	gap: 44px;
	min-width: 0;
}

.bt-layout__aside {
	flex: 1 1 280px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}

.bt-block__title {
	margin: 0 0 18px;
	font-weight: 800;
	font-size: clamp(22px, 2.6vw, 26px);
}

/* Yan sütun iletişim kutusu */
.bt-aside-cta {
	background: linear-gradient(160deg, var(--bt-dark), #0e5db4);
	border-radius: var(--bt-radius);
	padding: 26px;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bt-aside-cta__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	color: rgba(220, 236, 255, 0.75);
	text-transform: uppercase;
}

.bt-aside-cta__phone {
	font-family: var(--bt-font-head);
	font-weight: 800;
	font-style: italic;
	font-size: 26px;
	color: #fff;
}

.bt-aside-cta__phone:hover {
	color: #ffd9a3;
}

.bt-aside-cta__hours {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.7;
	color: #c3d6ea;
}

.bt-aside-cta .bt-btn {
	align-self: flex-start;
}

.bt-aside-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 14.5px;
	font-weight: 600;
}

/* Widget */
.bt-widget {
	background: var(--bt-surface-2);
	border: 1px solid var(--bt-border);
	border-radius: var(--bt-radius);
	padding: 24px;
}

.bt-widget__title {
	font-size: 17px;
	margin: 0 0 14px;
}

.bt-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
	font-size: 14.5px;
}

/* --------------------------------------------------------------------------
   17. Yazı / sayfa içeriği
   -------------------------------------------------------------------------- */
.bt-entry {
	font-size: 16.5px;
	line-height: 1.75;
	color: var(--bt-text);
}

.bt-entry > * + * {
	margin-top: 1.1em;
}

.bt-entry h2 {
	font-size: clamp(22px, 2.6vw, 27px);
	margin-top: 1.6em;
}

.bt-entry h3 {
	font-size: clamp(19px, 2.2vw, 22px);
	margin-top: 1.4em;
}

.bt-entry ul,
.bt-entry ol {
	padding-inline-start: 22px;
}

.bt-entry li + li {
	margin-top: 8px;
}

.bt-entry img,
.bt-entry figure {
	border-radius: var(--bt-radius-sm);
}

.bt-entry figure {
	margin-inline: 0;
}

.bt-entry figcaption {
	font-size: 13.5px;
	color: var(--bt-muted);
	margin-top: 8px;
	text-align: center;
}

.bt-entry a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.bt-entry .alignwide {
	width: min(100%, 1100px);
	margin-inline: auto;
}

.bt-entry .alignfull {
	width: 100%;
}

.bt-entry .alignleft {
	float: left;
	margin: 0 24px 16px 0;
}

.bt-entry .alignright {
	float: right;
	margin: 0 0 16px 24px;
}

.bt-entry .aligncenter {
	margin-inline: auto;
}

.bt-meta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	font-size: 13.5px;
	color: var(--bt-muted);
}

.bt-post-thumb {
	border-radius: var(--bt-radius);
	overflow: hidden;
	margin-bottom: 28px;
	aspect-ratio: 16 / 9;
	background: var(--bt-surface-2);
}

.bt-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Sayfalama */
.bt-pagination {
	margin-top: 44px;
}

.bt-pagination .nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.bt-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--bt-border);
	border-radius: 10px;
	background: var(--bt-surface);
	color: var(--bt-heading);
	font-weight: 600;
	font-size: 14.5px;
}

.bt-pagination .page-numbers:hover {
	border-color: var(--bt-primary);
	color: var(--bt-primary);
}

.bt-pagination .page-numbers.current {
	background: var(--bt-primary);
	border-color: var(--bt-primary);
	color: #fff;
}

/* Yorumlar */
.bt-comments {
	margin-top: 56px;
	padding-top: 40px;
	border-top: 1px solid var(--bt-border);
}

.bt-comments ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bt-comments .comment-body {
	background: var(--bt-surface-2);
	border: 1px solid var(--bt-border);
	border-radius: var(--bt-radius-sm);
	padding: 20px;
	margin-bottom: 16px;
}

.bt-comments .children {
	list-style: none;
	margin: 0 0 0 28px;
	padding: 0;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.search-field {
	width: 100%;
	border: 1px solid var(--bt-border-strong);
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 15px;
	font-family: inherit;
	background: #fbfcfe;
	color: var(--bt-text);
}

.comment-form .submit,
.search-submit {
	background: var(--bt-primary);
	color: #fff;
	border: 0;
	border-radius: 10px;
	padding: 12px 22px;
	font-weight: 700;
	font-family: inherit;
	font-size: 15px;
	cursor: pointer;
}

.bt-searchform {
	display: flex;
	gap: 8px;
}

/* --------------------------------------------------------------------------
   18. Alt bilgi
   -------------------------------------------------------------------------- */
.bt-footer {
	background: var(--bt-deep);
	color: var(--bt-on-dark-soft);
}

.bt-footer__inner {
	padding-block: 56px 40px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 36px;
}

.bt-footer__title {
	font-family: var(--bt-font-head);
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	margin: 0 0 14px;
}

.bt-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 9px;
	font-size: 14px;
	line-height: 1.6;
}

.bt-footer a {
	color: var(--bt-on-dark-soft);
}

.bt-footer a:hover {
	color: #fff;
}

.bt-footer__about {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.bt-footer__about p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.7;
	color: #8296ab;
}

.bt-footer__tel {
	color: #fff !important;
	font-weight: 700;
}

.bt-footer__tel:hover {
	color: #ffd9a3 !important;
}

.bt-social {
	display: flex;
	gap: 10px;
	flex-direction: row !important;
}

.bt-social a {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.07);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bt-on-dark-soft);
}

.bt-social a:hover {
	background: var(--bt-primary);
	color: #fff;
}

.bt-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bt-footer__bottom-inner {
	padding-block: 18px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--bt-on-dark-dim);
}

.bt-footer__bottom-inner ul {
	flex-direction: row;
	gap: 16px;
	flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   19. Yüzen WhatsApp + telefon
   -------------------------------------------------------------------------- */
.bt-float {
	position: fixed;
	inset-inline-end: 22px;
	bottom: 22px;
	z-index: 60;
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--bt-green);
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	padding: 13px 20px;
	border-radius: 999px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.bt-float:hover {
	background: var(--bt-green-light);
	color: #fff;
}

/* Mobil alt eylem çubuğu */
.bt-mobilebar {
	display: none;
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 61;
	background: rgba(var(--bt-dark-rgb), 0.98);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
	gap: 8px;
}

.bt-mobilebar a {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	padding: 8px 4px;
	border-radius: 10px;
	color: #d5e0ec;
	font-size: 11.5px;
	font-weight: 600;
}

.bt-mobilebar a:hover,
.bt-mobilebar a:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.bt-mobilebar__call { color: var(--bt-sky) !important; }
.bt-mobilebar__wa { color: #4fd07c !important; }

/* --------------------------------------------------------------------------
   20. Duyarlı düzen
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	:root {
		--bt-section-y: 64px;
	}

	.bt-layout {
		padding-block: 56px;
		gap: 32px;
	}
}

@media (max-width: 900px) {
	.bt-nav-toggle {
		display: inline-flex;
		align-items: center;
	}

	.bt-header__inner {
		gap: 14px;
	}

	.bt-header__cta {
		display: none;
	}

	.bt-nav {
		position: fixed;
		inset: 0;
		background: rgba(var(--bt-dark-rgb), 0.99);
		margin: 0;
		padding: 88px 24px 32px;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform 0.25s ease;
		visibility: hidden;
	}

	.bt-nav.is-open {
		transform: translateX(0);
		visibility: visible;
	}

	.bt-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		font-size: 17px;
	}

	.bt-nav__list > li > a {
		padding: 14px 12px;
		border-radius: 10px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	}

	.bt-nav__list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
		border: 0;
		box-shadow: none;
		padding: 0 0 0 14px;
		margin: 0;
	}

	.bt-nav__cta-mobile {
		margin-top: 20px;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	body.bt-nav-open {
		overflow: hidden;
	}
}

@media (max-width: 782px) {
	.bt-topbar__inner {
		justify-content: center;
		text-align: center;
		gap: 10px;
		font-size: 12.5px;
	}

	.bt-topbar__actions {
		margin-inline-start: 0;
		width: 100%;
		justify-content: center;
	}

	.bt-topbar__sep {
		display: none;
	}
}

@media (max-width: 720px) {
	:root {
		--bt-section-y: 52px;
		--bt-gutter: 18px;
	}

	.bt-hero__inner {
		padding-block: 40px 48px;
		gap: 32px;
	}

	.bt-form-card {
		padding: 24px;
	}

	.bt-cta__inner {
		padding-block: 40px;
		flex-direction: column;
		align-items: flex-start;
	}

	.bt-card,
	.bt-card--flat,
	.bt-info,
	.bt-aside-cta,
	.bt-widget {
		padding: 22px;
	}

	.bt-layout {
		padding-block: 44px;
		gap: 28px;
	}

	.bt-layout__main {
		gap: 34px;
	}

	.bt-pagehead__inner {
		padding-block: 34px 42px;
		gap: 26px;
	}

	.bt-footer__inner {
		padding-block: 40px 28px;
		gap: 28px;
	}

	.bt-brand__logo {
		height: 44px;
		width: 44px;
	}

	.bt-brand__name {
		font-size: 19px;
	}

	.bt-brand__tagline {
		font-size: 9.5px;
		letter-spacing: 1.4px;
	}

	/* Mobilde yüzen buton yerine alt çubuk */
	.bt-float {
		display: none;
	}

	.bt-mobilebar {
		display: flex;
	}

	body {
		padding-bottom: 68px;
	}

	.bt-entry .alignleft,
	.bt-entry .alignright {
		float: none;
		margin: 0 0 16px;
	}
}

@media (max-width: 420px) {
	.bt-btn-row .bt-btn {
		width: 100%;
	}
}

/* --------------------------------------------------------------------------
   21. Yazdırma
   -------------------------------------------------------------------------- */
@media print {
	.bt-topbar,
	.bt-header,
	.bt-float,
	.bt-mobilebar,
	.bt-cta,
	.bt-nav-toggle,
	.bt-form-card {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
		padding-bottom: 0;
	}

	.bt-hero,
	.bt-pagehead {
		background: #fff !important;
		color: #000 !important;
	}

	.bt-hero__title,
	.bt-pagehead__title {
		color: #000 !important;
	}

	a[href^="http"]::after {
		content: " (" attr(href) ")";
		font-size: 11px;
	}
}
