/* =====================================================================
   BUSATOUR — MAIN STYLES (main.css)
   ---------------------------------------------------------------------
   Kurallar:
   - Mobil öncelikli: temel stiller mobil, min-width ile genişler.
   - Tüm değerler tokens.css değişkenlerinden gelir.
   - !important YOK. Inline style YOK. BEM adlandırma.
   - Specificity tek sınıf seviyesinde tutulur; kademeli yamalar yerine
     bileşenin kendi bloğu düzenlenir.
   ===================================================================== */

/* ════════════════════════ 1. RESET ════════════════════════════════ */

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

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

body {
	margin: 0;
	background: var(--bt-bg);
	color: var(--bt-ink);
	font-family: var(--bt-font-body);
	font-size: var(--bt-text-base);
	line-height: var(--bt-leading-normal);
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 var(--bt-space-3);
	font-family: var(--bt-font-display);
	font-weight: 600;
	line-height: var(--bt-leading-tight);
	color: var(--bt-ink);
}

p {
	margin: 0 0 var(--bt-space-4);
}

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

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

ul,
ol {
	margin: 0;
	padding: 0;
}

button {
	font: inherit;
	cursor: pointer;
	border: 0;
	background: none;
}

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

/* ════════════════════════ 2. LAYOUT ═══════════════════════════════ */

.bt-container {
	width: 100%;
	max-width: var(--bt-container);
	margin-inline: auto;
	padding-inline: var(--bt-container-pad);
}

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

.bt-skip-link {
	position: absolute;
	top: -100px;
	left: var(--bt-space-4);
	z-index: 200;
	padding: var(--bt-space-2) var(--bt-space-4);
	background: var(--bt-primary);
	color: var(--bt-surface);
	border-radius: var(--bt-radius-md);
	transition: top var(--bt-transition);
}

.bt-skip-link:focus {
	top: var(--bt-space-2);
	color: var(--bt-surface);
}

/* Core eksik uyarısı — yalnızca admin görür */
.bt-core-notice {
	padding: var(--bt-space-2) var(--bt-space-4);
	background: var(--bt-danger-soft);
	color: var(--bt-danger-ink);
	font-size: var(--bt-text-sm);
	text-align: center;
}

/* ════════════════════════ 3. BUTONLAR ═════════════════════════════ */

.bt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--bt-space-2);
	min-height: 48px;
	padding: var(--bt-space-3) var(--bt-space-5);
	border-radius: var(--bt-radius-md);
	font-family: var(--bt-font-body);
	font-size: var(--bt-text-base);
	font-weight: 600;
	line-height: 1;
	text-align: center;
	transition: background-color var(--bt-transition), color var(--bt-transition), border-color var(--bt-transition), transform var(--bt-transition);
}

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

.bt-btn--small {
	min-height: 40px;
	padding: var(--bt-space-2) var(--bt-space-4);
	font-size: var(--bt-text-sm);
}

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

.bt-btn--primary:hover {
	background: var(--bt-primary-dark);
	color: var(--bt-surface);
}

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

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

.bt-btn--whatsapp {
	background: var(--bt-whatsapp);
	color: var(--bt-surface);
}

.bt-btn--whatsapp:hover {
	background: var(--bt-whatsapp-dark);
	color: var(--bt-surface);
}

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

.bt-btn--ghost:hover {
	background: var(--bt-primary-soft);
	color: var(--bt-primary-dark);
}

.bt-btn__icon {
	display: inline-flex;
}

/* ════════════════════════ 4. ROZETLER ═════════════════════════════ */

.bt-badge {
	display: inline-block;
	padding: var(--bt-space-1) var(--bt-space-3);
	border-radius: var(--bt-radius-pill);
	background: var(--bt-primary-soft);
	color: var(--bt-primary);
	font-size: var(--bt-text-xs);
	font-weight: 600;
	letter-spacing: 0.02em;
}

.bt-badge--son-koltuklar {
	background: var(--bt-danger-soft);
	color: var(--bt-danger-ink);
}

.bt-badge--kampanyali {
	background: var(--bt-accent);
	color: var(--bt-surface);
}

.bt-badge--vizesiz {
	background: var(--bt-primary);
	color: var(--bt-surface);
}

/* ════════════════════════ 5. DUYURU BANDI ═════════════════════════ */

.bt-announcement {
	background: var(--bt-primary);
	color: var(--bt-surface);
}

.bt-announcement__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--bt-space-4);
	min-height: 40px;
	padding-block: var(--bt-space-2);
}

.bt-announcement__text {
	margin: 0;
	font-size: var(--bt-text-sm);
	text-align: center;
}

.bt-announcement__text a {
	color: var(--bt-surface);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.bt-announcement__close {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: var(--bt-radius-pill);
	color: var(--bt-surface);
	font-size: var(--bt-text-md);
	line-height: 1;
	transition: background-color var(--bt-transition);
}

.bt-announcement__close:hover {
	background: var(--bt-primary-dark);
}

/* ════════════════════════ 6. HEADER ═══════════════════════════════ */

.bt-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--bt-bg);
	border-bottom: 1px solid transparent;
	transition: background-color var(--bt-transition), border-color var(--bt-transition), box-shadow var(--bt-transition);
}

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

.bt-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bt-space-4);
	min-height: var(--bt-header-height);
}

.bt-logo__link {
	display: inline-flex;
	align-items: center;
}

.bt-logo__img {
	max-height: 48px;
	width: auto;
}

.bt-logo__text {
	font-family: var(--bt-font-display);
	font-size: var(--bt-text-md);
	font-weight: 700;
	color: var(--bt-primary);
}

/* Desktop nav — mobilde gizli */
.bt-primary-nav {
	display: none;
}

.bt-primary-nav__list {
	display: flex;
	gap: var(--bt-space-5);
	list-style: none;
}

.bt-primary-nav__list a {
	font-size: var(--bt-text-sm);
	font-weight: 500;
	color: var(--bt-ink);
	padding-block: var(--bt-space-2);
}

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

/* Alt menü (depth 2) */
.bt-primary-nav__list .sub-menu {
	display: none;
	position: absolute;
	min-width: 220px;
	padding: var(--bt-space-2);
	list-style: none;
	background: var(--bt-surface);
	border: 1px solid var(--bt-border);
	border-radius: var(--bt-radius-md);
	box-shadow: var(--bt-shadow-md);
}

.bt-primary-nav__list li {
	position: relative;
}

.bt-primary-nav__list li:hover > .sub-menu,
.bt-primary-nav__list li:focus-within > .sub-menu {
	display: block;
}

.bt-primary-nav__list .sub-menu a {
	display: block;
	padding: var(--bt-space-2) var(--bt-space-3);
	border-radius: var(--bt-radius-sm);
}

.bt-primary-nav__list .sub-menu a:hover {
	background: var(--bt-primary-soft);
}

.bt-header-actions {
	display: flex;
	align-items: center;
	gap: var(--bt-space-3);
}

.bt-header-phone {
	display: none;
	align-items: center;
	gap: var(--bt-space-2);
	font-size: var(--bt-text-sm);
	font-weight: 600;
	color: var(--bt-ink);
}

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

/* Hamburger */
.bt-mobile-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: var(--bt-space-2);
	border-radius: var(--bt-radius-sm);
}

.bt-mobile-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--bt-ink);
	border-radius: var(--bt-radius-pill);
	transition: transform var(--bt-transition), opacity var(--bt-transition);
}

/* ════════════════════════ 7. MOBİL MENÜ ═══════════════════════════ */

.bt-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 150;
}

.bt-mobile-menu__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(33, 48, 58, 0.5);
}

.bt-mobile-menu-panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	width: min(86vw, 380px);
	padding: var(--bt-space-5);
	background: var(--bt-surface);
	box-shadow: var(--bt-shadow-lg);
	overflow-y: auto;
}

.bt-mobile-menu__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--bt-space-5);
}

.bt-mobile-menu__brand {
	font-family: var(--bt-font-display);
	font-size: var(--bt-text-md);
	font-weight: 700;
	color: var(--bt-primary);
}

.bt-mobile-menu__close {
	width: 40px;
	height: 40px;
	border-radius: var(--bt-radius-pill);
	font-size: var(--bt-text-lg);
	line-height: 1;
	color: var(--bt-muted);
	transition: background-color var(--bt-transition), color var(--bt-transition);
}

.bt-mobile-menu__close:hover {
	background: var(--bt-primary-soft);
	color: var(--bt-primary);
}

.bt-mobile-menu__list {
	list-style: none;
}

.bt-mobile-menu__list a {
	display: block;
	padding: var(--bt-space-3) 0;
	font-size: var(--bt-text-md);
	font-weight: 500;
	color: var(--bt-ink);
	border-bottom: 1px solid var(--bt-border);
}

.bt-mobile-menu__list .sub-menu {
	list-style: none;
	padding-left: var(--bt-space-4);
}

.bt-mobile-menu__list .sub-menu a {
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

.bt-mobile-menu__actions {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-3);
	margin-top: auto;
	padding-top: var(--bt-space-5);
}

/* ════════════════════════ 8. KART GRID ════════════════════════════ */

.bt-card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-5);
}

/* ════════════════════════ 9. TUR KARTI ════════════════════════════ */

.bt-tour-card {
	display: flex;
	flex-direction: column;
	background: var(--bt-surface);
	border-radius: var(--bt-radius-lg);
	box-shadow: var(--bt-shadow-md);
	overflow: hidden;
	transition: box-shadow var(--bt-transition), transform var(--bt-transition);
}

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

.bt-tour-card__image {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--bt-primary-soft);
}

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

.bt-tour-card__image-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--bt-primary-soft), var(--bt-border));
}

.bt-tour-card__badges {
	position: absolute;
	top: var(--bt-space-3);
	left: var(--bt-space-3);
	display: flex;
	flex-wrap: wrap;
	gap: var(--bt-space-2);
}

.bt-tour-card__body {
	flex: 1;
	padding: var(--bt-space-5) var(--bt-space-5) var(--bt-space-3);
}

.bt-tour-card__title {
	margin-bottom: var(--bt-space-3);
	font-size: var(--bt-text-md);
}

.bt-tour-card__title a {
	color: var(--bt-ink);
}

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

.bt-tour-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bt-space-2) var(--bt-space-3);
	list-style: none;
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

.bt-tour-card__meta li {
	display: flex;
	align-items: center;
	gap: var(--bt-space-1);
}

.bt-tour-card__meta li + li::before {
	content: "·";
	margin-right: var(--bt-space-2);
	color: var(--bt-border);
}

.bt-tour-card__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--bt-space-3);
	padding: var(--bt-space-3) var(--bt-space-5) var(--bt-space-5);
	border-top: 1px solid var(--bt-border);
	margin-top: var(--bt-space-3);
}

.bt-tour-card__info {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-1);
	min-width: 0;
}

.bt-tour-card__date {
	font-size: var(--bt-text-xs);
	color: var(--bt-muted);
}

.bt-tour-card__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: var(--bt-space-2);
}

.bt-tour-card__price strong {
	font-family: var(--bt-font-display);
	font-size: var(--bt-text-md);
	font-weight: 700;
	color: var(--bt-accent);
}

.bt-tour-card__price small {
	font-size: var(--bt-text-xs);
	color: var(--bt-muted);
}

.bt-tour-card__price-old {
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

.bt-tour-card__actions {
	display: flex;
	align-items: center;
	gap: var(--bt-space-2);
	flex-shrink: 0;
}

.bt-tour-card__wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--bt-radius-md);
	background: var(--bt-whatsapp);
	color: var(--bt-surface);
	transition: background-color var(--bt-transition);
}

.bt-tour-card__wa:hover {
	background: var(--bt-whatsapp-dark);
	color: var(--bt-surface);
}

/* ════════════════════════ 10. DESTİNASYON KARTI ═══════════════════ */

.bt-destination-card {
	display: flex;
	flex-direction: column;
	background: var(--bt-surface);
	border-radius: var(--bt-radius-lg);
	box-shadow: var(--bt-shadow-md);
	overflow: hidden;
	transition: box-shadow var(--bt-transition), transform var(--bt-transition);
}

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

.bt-destination-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--bt-primary-soft);
}

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

.bt-destination-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--bt-primary-soft), var(--bt-border));
}

.bt-destination-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bt-space-3);
	flex: 1;
	padding: var(--bt-space-5);
}

.bt-destination-card__title {
	margin: 0;
	font-size: var(--bt-text-md);
}

.bt-destination-card__title a {
	color: var(--bt-ink);
}

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

.bt-destination-card__text {
	margin: 0;
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

/* ════════════════════════ 11. BLOG KARTI ══════════════════════════ */

.bt-blog-card {
	display: flex;
	flex-direction: column;
	background: var(--bt-surface);
	border-radius: var(--bt-radius-lg);
	box-shadow: var(--bt-shadow-md);
	overflow: hidden;
	transition: box-shadow var(--bt-transition), transform var(--bt-transition);
}

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

.bt-blog-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--bt-primary-soft);
}

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

.bt-blog-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--bt-primary-soft), var(--bt-border));
}

.bt-blog-card__body {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-3);
	flex: 1;
	padding: var(--bt-space-5);
}

.bt-blog-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bt-space-3);
}

.bt-blog-card__category {
	padding: var(--bt-space-1) var(--bt-space-3);
	border-radius: var(--bt-radius-pill);
	background: var(--bt-primary-soft);
	color: var(--bt-primary);
	font-size: var(--bt-text-xs);
	font-weight: 600;
}

.bt-blog-card__date {
	font-size: var(--bt-text-xs);
	color: var(--bt-muted);
}

.bt-blog-card__title {
	margin: 0;
	font-size: var(--bt-text-md);
}

.bt-blog-card__title a {
	color: var(--bt-ink);
}

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

.bt-blog-card__text {
	margin: 0;
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

.bt-blog-card__more {
	margin-top: auto;
	font-size: var(--bt-text-sm);
	font-weight: 600;
	color: var(--bt-accent);
}

.bt-blog-card__more:hover {
	color: var(--bt-accent-dark);
}

/* ════════════════════════ 12. SAYFA İÇERİĞİ ═══════════════════════ */

.bt-page-header {
	margin-bottom: var(--bt-space-6);
}

.bt-page-title {
	font-size: var(--bt-text-xl);
}

.bt-page-desc {
	color: var(--bt-muted);
}

.bt-page-thumbnail {
	margin: 0 0 var(--bt-space-6);
	border-radius: var(--bt-radius-lg);
	overflow: hidden;
}

.bt-entry-content {
	max-width: 760px;
}

.bt-entry-content h2 {
	margin-top: var(--bt-space-6);
	font-size: var(--bt-text-lg);
}

.bt-entry-content h3 {
	margin-top: var(--bt-space-5);
	font-size: var(--bt-text-md);
}

.bt-entry-content img {
	border-radius: var(--bt-radius-md);
}

.bt-entry-content ul,
.bt-entry-content ol {
	margin: 0 0 var(--bt-space-4);
	padding-left: var(--bt-space-5);
}

.bt-page-links {
	margin-top: var(--bt-space-5);
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

/* ════════════════════════ 13. PAGINATION ══════════════════════════ */

.bt-pagination {
	margin-top: var(--bt-space-7);
}

.bt-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--bt-space-2);
}

.bt-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding-inline: var(--bt-space-3);
	border-radius: var(--bt-radius-md);
	background: var(--bt-surface);
	color: var(--bt-ink);
	font-size: var(--bt-text-sm);
	font-weight: 600;
	box-shadow: var(--bt-shadow-sm);
	transition: background-color var(--bt-transition), color var(--bt-transition);
}

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

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

/* ════════════════════════ 14. SONUÇ YOK ═══════════════════════════ */

.bt-no-results {
	max-width: 520px;
	margin-inline: auto;
	padding-block: var(--bt-space-8);
	text-align: center;
}

.bt-no-results__title {
	font-size: var(--bt-text-lg);
}

.bt-no-results__text {
	color: var(--bt-muted);
}

.bt-no-results__actions {
	margin-top: var(--bt-space-5);
}

/* ════════════════════════ 15. 404 ═════════════════════════════════ */

.bt-404 {
	max-width: 560px;
	margin-inline: auto;
	padding-block: var(--bt-space-9);
	text-align: center;
}

.bt-404__code {
	margin: 0 0 var(--bt-space-2);
	font-family: var(--bt-font-display);
	font-size: var(--bt-text-3xl);
	font-weight: 700;
	color: var(--bt-primary-soft);
	letter-spacing: 0.06em;
	-webkit-text-stroke: 2px var(--bt-primary);
}

.bt-404__title {
	font-size: var(--bt-text-xl);
}

.bt-404__text {
	color: var(--bt-muted);
}

.bt-404__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--bt-space-3);
	margin-top: var(--bt-space-6);
}

/* ════════════════════════ 16. FOOTER ══════════════════════════════ */

.bt-site-footer {
	margin-top: var(--bt-space-8);
	padding-block: var(--bt-space-8) var(--bt-space-5);
	background: var(--bt-primary);
	color: var(--bt-primary-soft);
}

.bt-site-footer a {
	color: var(--bt-primary-soft);
}

.bt-site-footer a:hover {
	color: var(--bt-surface);
}

.bt-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-6);
}

.bt-footer-heading {
	margin-bottom: var(--bt-space-4);
	font-family: var(--bt-font-body);
	font-size: var(--bt-text-sm);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bt-surface);
}

.bt-footer-brand__logo {
	margin-bottom: var(--bt-space-4);
}

.bt-footer-brand__logo .bt-logo__text {
	color: var(--bt-surface);
}

.bt-footer-brand__text {
	max-width: 320px;
	font-size: var(--bt-text-sm);
}

.bt-footer-brand__tursab {
	font-size: var(--bt-text-xs);
	opacity: 0.85;
}

.bt-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bt-space-3);
	list-style: none;
	margin-top: var(--bt-space-4);
	font-size: var(--bt-text-sm);
}

.bt-footer-menu__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-2);
	font-size: var(--bt-text-sm);
}

.bt-footer-contact__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-2);
	font-size: var(--bt-text-sm);
}

.bt-footer-contact__address {
	opacity: 0.85;
}

.bt-footer-bottom {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-3);
	margin-top: var(--bt-space-7);
	padding-top: var(--bt-space-5);
	border-top: 1px solid rgba(227, 238, 240, 0.2);
	font-size: var(--bt-text-xs);
}

.bt-footer-copy {
	margin: 0;
	opacity: 0.85;
}

.bt-footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bt-space-4);
	list-style: none;
}

/* ════════════════════════ 17. FLOATING WHATSAPP ═══════════════════ */

.bt-floating-whatsapp {
	position: fixed;
	right: var(--bt-space-4);
	bottom: var(--bt-space-4);
	z-index: 120;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: var(--bt-radius-pill);
	background: var(--bt-whatsapp);
	color: var(--bt-surface);
	box-shadow: var(--bt-shadow-lg);
	transition: background-color var(--bt-transition), transform var(--bt-transition);
}

.bt-floating-whatsapp:hover {
	background: var(--bt-whatsapp-dark);
	color: var(--bt-surface);
	transform: translateY(-2px);
}

.bt-floating-whatsapp svg {
	width: 26px;
	height: 26px;
}

/* ════════════════════════ 18. RESPONSIVE ══════════════════════════ */

/* sm: 640px — geniş telefon */
@media (min-width: 640px) {

	.bt-card-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bt-404__actions {
		flex-direction: row;
		justify-content: center;
	}
}

/* md: 768px — tablet */
@media (min-width: 768px) {

	:root {
		--bt-container-pad: var(--bt-space-5);
		--bt-section-y: var(--bt-space-8);
	}

	.bt-header-phone {
		display: inline-flex;
	}

	.bt-footer-grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}

	.bt-footer-bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

/* lg: 1024px — desktop */
@media (min-width: 1024px) {

	:root {
		--bt-section-y: var(--bt-space-9);
	}

	.bt-primary-nav {
		display: block;
	}

	.bt-mobile-toggle {
		display: none;
	}

	.bt-card-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--bt-space-6);
	}
}

/* =====================================================================
   AŞAMA 4 — ANA SAYFA + TUR ARŞİVİ STİLLERİ
   Tüm değerler tokens.css değişkenlerinden; ham hex yok.
   ===================================================================== */

/* ════════════════════════ 19. ORTAK SECTION ═══════════════════════ */

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

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

.bt-section-head {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-4);
	margin-bottom: var(--bt-space-6);
}

.bt-section-head--center {
	align-items: center;
	text-align: center;
}

.bt-section-eyebrow {
	margin: 0 0 var(--bt-space-2);
	font-size: var(--bt-text-sm);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bt-accent);
}

.bt-section-title {
	margin: 0;
	font-size: var(--bt-text-xl);
}

/* ════════════════════════ 20. HOME HERO ═══════════════════════════ */

.bt-home-hero {
	padding-block: var(--bt-space-7) var(--bt-space-6);
}

.bt-home-hero__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-6);
	align-items: center;
}

.bt-home-hero__eyebrow {
	margin: 0 0 var(--bt-space-3);
	font-size: var(--bt-text-sm);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bt-accent);
}

.bt-home-hero__title {
	margin: 0 0 var(--bt-space-4);
	font-size: var(--bt-text-2xl);
	max-width: 16ch;
}

.bt-home-hero__subtitle {
	margin: 0 0 var(--bt-space-5);
	max-width: 46ch;
	font-size: var(--bt-text-md);
	color: var(--bt-muted);
	line-height: var(--bt-leading-snug);
}

.bt-home-hero__actions {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-3);
}

.bt-home-hero__media {
	border-radius: var(--bt-radius-lg);
	overflow: hidden;
	box-shadow: var(--bt-shadow-md);
}

.bt-home-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

/* Arama kutusu */
.bt-home-search {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-3);
	margin-top: var(--bt-space-6);
	padding: var(--bt-space-5);
	background: var(--bt-surface);
	border-radius: var(--bt-radius-lg);
	box-shadow: var(--bt-shadow-md);
}

.bt-home-search__field {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-1);
}

.bt-home-search__label {
	font-size: var(--bt-text-xs);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--bt-muted);
}

.bt-home-search__input {
	min-height: 48px;
	padding: var(--bt-space-2) var(--bt-space-3);
	font: inherit;
	color: var(--bt-ink);
	background: var(--bt-bg);
	border: 1px solid var(--bt-border);
	border-radius: var(--bt-radius-md);
	transition: border-color var(--bt-transition);
}

.bt-home-search__input:focus {
	border-color: var(--bt-primary);
	outline: none;
}

.bt-home-search__submit {
	align-self: stretch;
}

/* ════════════════════════ 21. SEKMELİ VİTRİN ══════════════════════ */

.bt-tabs__list {
	display: flex;
	gap: var(--bt-space-2);
	margin-bottom: var(--bt-space-5);
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.bt-tabs__list::-webkit-scrollbar {
	display: none;
}

.bt-tabs__tab {
	flex-shrink: 0;
	min-height: 44px;
	padding: var(--bt-space-2) var(--bt-space-4);
	border-radius: var(--bt-radius-pill);
	background: var(--bt-surface);
	color: var(--bt-muted);
	font-size: var(--bt-text-sm);
	font-weight: 600;
	box-shadow: var(--bt-shadow-sm);
	transition: background-color var(--bt-transition), color var(--bt-transition);
}

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

.bt-tabs__tab[aria-selected="true"] {
	background: var(--bt-primary);
	color: var(--bt-surface);
}

/* Vitrin grid — mobilde yatay scroll, desktop'ta grid */
.bt-showcase-grid {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: min(82vw, 320px);
	gap: var(--bt-space-4);
	overflow-x: auto;
	padding-bottom: var(--bt-space-3);
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.bt-showcase-grid > * {
	scroll-snap-align: start;
}

.bt-showcase-empty {
	grid-column: 1 / -1;
	color: var(--bt-muted);
}

/* ════════════════════════ 22. KATEGORİ KARTLARI ═══════════════════ */

.bt-category-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-4);
}

.bt-category-card {
	position: relative;
	display: block;
	border-radius: var(--bt-radius-lg);
	overflow: hidden;
	box-shadow: var(--bt-shadow-md);
	transition: box-shadow var(--bt-transition), transform var(--bt-transition);
}

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

.bt-category-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--bt-primary-soft);
}

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

.bt-category-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--bt-primary), var(--bt-primary-dark));
}

.bt-category-card__body {
	position: absolute;
	inset: auto 0 0 0;
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-1);
	padding: var(--bt-space-5);
	background: linear-gradient(to top, rgba(33, 48, 58, 0.85), transparent);
}

.bt-category-card__title {
	font-family: var(--bt-font-display);
	font-size: var(--bt-text-md);
	font-weight: 700;
	color: var(--bt-surface);
}

.bt-category-card__desc {
	font-size: var(--bt-text-sm);
	color: var(--bt-primary-soft);
}

.bt-category-card__count {
	font-size: var(--bt-text-xs);
	font-weight: 600;
	color: var(--bt-primary-soft);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* ════════════════════════ 23. DESTİNASYON ŞERİDİ ══════════════════ */

.bt-destination-strip {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: min(70vw, 280px);
	gap: var(--bt-space-4);
	overflow-x: auto;
	padding-bottom: var(--bt-space-3);
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.bt-destination-strip > * {
	scroll-snap-align: start;
}

/* ════════════════════════ 24. NEDEN BİZ + STATS ═══════════════════ */

.bt-why__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-4);
}

.bt-why__card {
	padding: var(--bt-space-5);
	background: var(--bt-bg);
	border-radius: var(--bt-radius-lg);
}

.bt-why__icon {
	display: block;
	width: 44px;
	height: 44px;
	margin-bottom: var(--bt-space-3);
	border-radius: var(--bt-radius-md);
	background: var(--bt-primary-soft);
}

.bt-why__card-title {
	margin-bottom: var(--bt-space-2);
	font-size: var(--bt-text-md);
}

.bt-why__card-text {
	margin: 0;
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

.bt-stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-5);
	margin: var(--bt-space-7) 0 0;
	padding: var(--bt-space-6);
	background: var(--bt-primary);
	border-radius: var(--bt-radius-lg);
	text-align: center;
}

.bt-stats__item {
	margin: 0;
}

.bt-stats__number {
	margin: 0;
	font-family: var(--bt-font-display);
	font-size: var(--bt-text-xl);
	font-weight: 700;
	color: var(--bt-surface);
}

.bt-stats__label {
	margin: var(--bt-space-1) 0 0;
	font-size: var(--bt-text-sm);
	color: var(--bt-primary-soft);
}

/* ════════════════════════ 25. YORUMLAR ════════════════════════════ */

.bt-reviews__strip {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: min(84vw, 360px);
	gap: var(--bt-space-4);
	overflow-x: auto;
	padding-bottom: var(--bt-space-3);
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.bt-review-card {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-3);
	padding: var(--bt-space-5);
	background: var(--bt-surface);
	border-radius: var(--bt-radius-lg);
	box-shadow: var(--bt-shadow-md);
	scroll-snap-align: start;
}

.bt-review-card__stars {
	margin: 0;
	color: var(--bt-accent);
	letter-spacing: 0.1em;
}

.bt-review-card__text {
	margin: 0;
	font-size: var(--bt-text-sm);
	color: var(--bt-ink);
	line-height: var(--bt-leading-normal);
}

.bt-review-card__footer {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-1);
	margin-top: auto;
	padding-top: var(--bt-space-3);
	border-top: 1px solid var(--bt-border);
}

.bt-review-card__name {
	font-weight: 700;
	font-size: var(--bt-text-sm);
}

.bt-review-card__tour {
	font-size: var(--bt-text-xs);
	color: var(--bt-muted);
}

.bt-review-card__tour:hover {
	color: var(--bt-primary);
}

/* ════════════════════════ 26. CTA BANDI ═══════════════════════════ */

.bt-cta-band {
	padding-block: var(--bt-space-7);
}

.bt-cta-band__inner {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-5);
	padding: var(--bt-space-6);
	background: var(--bt-primary);
	border-radius: var(--bt-radius-lg);
}

.bt-cta-band__title {
	margin-bottom: var(--bt-space-2);
	font-size: var(--bt-text-xl);
	color: var(--bt-surface);
}

.bt-cta-band__text {
	margin: 0;
	max-width: 52ch;
	color: var(--bt-primary-soft);
}

.bt-cta-band__actions {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-3);
}

/* ════════════════════════ 27. ARŞİV HERO ══════════════════════════ */

.bt-archive-hero {
	padding-block: var(--bt-space-6);
	background: var(--bt-surface);
	border-bottom: 1px solid var(--bt-border);
}

.bt-archive-hero__eyebrow {
	display: flex;
	gap: var(--bt-space-2);
	margin: 0 0 var(--bt-space-2);
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

.bt-archive-hero__title {
	margin-bottom: var(--bt-space-2);
	font-size: var(--bt-text-2xl);
}

.bt-archive-hero__desc {
	max-width: 64ch;
	margin: 0 0 var(--bt-space-3);
	color: var(--bt-muted);
}

.bt-archive-hero__count {
	margin: 0;
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

.bt-archive-hero__count strong {
	color: var(--bt-accent);
}

/* ════════════════════════ 28. ARŞİV YERLEŞİM ══════════════════════ */

.bt-tour-archive {
	padding-block: var(--bt-space-6);
}

.bt-tour-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-5);
	align-items: start;
}

/* Filtrele butonu — mobilde görünür */
.bt-filter-open {
	position: relative;
	width: 100%;
}

.bt-filter-open__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding-inline: var(--bt-space-1);
	margin-left: var(--bt-space-2);
	border-radius: var(--bt-radius-pill);
	background: var(--bt-accent);
	color: var(--bt-surface);
	font-size: var(--bt-text-xs);
	font-weight: 700;
}

/* Mobil: drawer (bottom-sheet) */
.bt-filter-sidebar {
	position: fixed;
	inset: 0;
	z-index: 160;
	visibility: hidden;
	pointer-events: none;
}

.bt-filter-sidebar.is-open {
	visibility: visible;
	pointer-events: auto;
}

.bt-filter-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(33, 48, 58, 0.5);
	opacity: 0;
	transition: opacity var(--bt-transition);
}

.bt-filter-sidebar.is-open .bt-filter-drawer__backdrop {
	opacity: 1;
}

.bt-filter-panel {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	max-height: 86vh;
	display: flex;
	flex-direction: column;
	background: var(--bt-surface);
	border-radius: var(--bt-radius-lg) var(--bt-radius-lg) 0 0;
	box-shadow: var(--bt-shadow-lg);
	transform: translateY(100%);
	transition: transform var(--bt-transition);
	overflow: hidden;
}

.bt-filter-sidebar.is-open .bt-filter-panel {
	transform: translateY(0);
}

.bt-filter-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--bt-space-4) var(--bt-space-5);
	border-bottom: 1px solid var(--bt-border);
}

.bt-filter-panel__title {
	margin: 0;
	font-size: var(--bt-text-md);
}

.bt-filter-panel__close {
	width: 40px;
	height: 40px;
	border-radius: var(--bt-radius-pill);
	font-size: var(--bt-text-lg);
	line-height: 1;
	color: var(--bt-muted);
	transition: background-color var(--bt-transition), color var(--bt-transition);
}

.bt-filter-panel__close:hover {
	background: var(--bt-primary-soft);
	color: var(--bt-primary);
}

.bt-filter-form {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-4);
	padding: var(--bt-space-5);
	overflow-y: auto;
}

.bt-filter-group {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-1);
}

.bt-filter-label {
	font-size: var(--bt-text-xs);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--bt-muted);
}

.bt-filter-input {
	min-height: 44px;
	padding: var(--bt-space-2) var(--bt-space-3);
	font: inherit;
	color: var(--bt-ink);
	background: var(--bt-bg);
	border: 1px solid var(--bt-border);
	border-radius: var(--bt-radius-md);
	transition: border-color var(--bt-transition);
}

.bt-filter-input:focus {
	border-color: var(--bt-primary);
	outline: none;
}

.bt-filter-range {
	display: flex;
	align-items: center;
	gap: var(--bt-space-2);
}

.bt-filter-range .bt-filter-input {
	width: 100%;
	min-width: 0;
}

.bt-filter-range__sep {
	color: var(--bt-muted);
}

.bt-filter-actions {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-3);
	padding-top: var(--bt-space-2);
}

.bt-filter-reset {
	align-self: center;
	font-size: var(--bt-text-sm);
	font-weight: 600;
	color: var(--bt-muted);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.bt-filter-reset:hover {
	color: var(--bt-danger-ink);
}

/* ════════════════════════ 29. SONUÇ ALANI ═════════════════════════ */

.bt-tour-results {
	position: relative;
	min-width: 0;
}

.bt-tour-results.is-loading {
	opacity: 0.45;
	pointer-events: none;
	transition: opacity var(--bt-transition);
}

.bt-tour-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-5);
}

/* ════════════════════════ 30. BOŞ DURUM ═══════════════════════════ */

.bt-empty-state {
	grid-column: 1 / -1;
	max-width: 480px;
	margin-inline: auto;
	padding-block: var(--bt-space-8);
	text-align: center;
}

.bt-empty-state__title {
	font-size: var(--bt-text-lg);
}

.bt-empty-state__text {
	color: var(--bt-muted);
}

.bt-empty-state__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--bt-space-3);
	margin-top: var(--bt-space-5);
}

/* ════════════════════════ 31. ARAMA SONUÇ ÖĞESİ ═══════════════════ */

.bt-search-item {
	padding: var(--bt-space-5);
	background: var(--bt-surface);
	border-radius: var(--bt-radius-lg);
	box-shadow: var(--bt-shadow-sm);
}

.bt-search-item__title {
	margin-bottom: var(--bt-space-2);
	font-size: var(--bt-text-md);
}

.bt-search-item__excerpt {
	margin: 0;
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

/* ════════════════════════ 32. AŞAMA 4 RESPONSIVE ══════════════════ */

/* sm: 640px */
@media (min-width: 640px) {

	.bt-home-hero__actions,
	.bt-cta-band__actions,
	.bt-empty-state__actions,
	.bt-filter-actions {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.bt-empty-state__actions {
		justify-content: center;
	}

	.bt-category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bt-why__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bt-stats {
		grid-template-columns: repeat(3, 1fr);
	}

	.bt-home-search {
		grid-template-columns: 1fr 1fr;
	}

	.bt-home-search__field--grow {
		grid-column: 1 / -1;
	}
}

/* md: 768px */
@media (min-width: 768px) {

	.bt-section-head {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}

	.bt-section-head--center {
		justify-content: center;
	}

	.bt-home-search {
		grid-template-columns: 2fr 1fr 1fr auto;
		align-items: end;
	}

	.bt-home-search__field--grow {
		grid-column: auto;
	}

	.bt-cta-band__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: var(--bt-space-7);
	}

	.bt-cta-band__actions {
		flex-shrink: 0;
	}

	.bt-tour-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* lg: 1024px */
@media (min-width: 1024px) {

	.bt-home-hero__inner {
		grid-template-columns: 1.1fr 1fr;
	}

	.bt-home-hero__title {
		font-size: var(--bt-text-3xl);
	}

	/* Vitrin: yatay scroll'dan grid'e */
	.bt-showcase-grid {
		grid-auto-flow: row;
		grid-template-columns: repeat(3, 1fr);
		grid-auto-columns: unset;
		overflow-x: visible;
		scroll-snap-type: none;
		gap: var(--bt-space-6);
	}

	.bt-category-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.bt-why__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	/* Filtreler: drawer'dan kalıcı sidebar'a */
	.bt-filter-open {
		display: none;
	}

	.bt-filter-sidebar {
		position: static;
		visibility: visible;
		pointer-events: auto;
	}

	.bt-filter-drawer__backdrop {
		display: none;
	}

	.bt-filter-panel {
		position: sticky;
		top: calc(var(--bt-header-height) + var(--bt-space-4));
		max-height: none;
		border-radius: var(--bt-radius-lg);
		transform: none;
		transition: none;
		box-shadow: var(--bt-shadow-md);
	}

	.bt-filter-panel__close {
		display: none;
	}

	.bt-tour-layout {
		grid-template-columns: 280px 1fr;
		gap: var(--bt-space-6);
	}

	.bt-tour-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* xl: 1280px */
@media (min-width: 1280px) {

	.bt-tour-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* =====================================================================
   AŞAMA 5 — TUR / DESTİNASYON / BLOG DETAY STİLLERİ
   Tüm değerler tokens.css değişkenlerinden; ham hex yok.
   ===================================================================== */

/* ════════════════════════ 33. BREADCRUMB ══════════════════════════ */

.bt-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bt-space-2);
	margin-bottom: var(--bt-space-4);
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

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

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

.bt-breadcrumb--onimage,
.bt-breadcrumb--onimage a {
	color: var(--bt-primary-soft);
}

.bt-breadcrumb--onimage a:hover {
	color: var(--bt-surface);
}

/* ════════════════════════ 34. TUR HERO + GALERİ ═══════════════════ */

.bt-tour-hero {
	padding-block: var(--bt-space-5) 0;
}

.bt-tour-hero__head {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-3);
	margin-bottom: var(--bt-space-5);
}

.bt-tour-hero__title {
	margin: 0;
	font-size: var(--bt-text-2xl);
}

.bt-tour-badges {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bt-space-2);
}

.bt-tour-gallery__main {
	position: relative;
	border-radius: var(--bt-radius-lg);
	overflow: hidden;
	background: var(--bt-primary-soft);
	box-shadow: var(--bt-shadow-md);
}

.bt-tour-gallery__main img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.bt-tour-gallery__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, var(--bt-primary-soft), var(--bt-border));
}

.bt-tour-gallery__video {
	position: absolute;
	right: var(--bt-space-3);
	bottom: var(--bt-space-3);
	padding: var(--bt-space-2) var(--bt-space-4);
	border-radius: var(--bt-radius-pill);
	background: rgba(33, 48, 58, 0.75);
	color: var(--bt-surface);
	font-size: var(--bt-text-sm);
	font-weight: 600;
	transition: background-color var(--bt-transition);
}

.bt-tour-gallery__video:hover {
	background: var(--bt-primary);
	color: var(--bt-surface);
}

.bt-tour-gallery__thumbs {
	display: flex;
	gap: var(--bt-space-2);
	margin-top: var(--bt-space-3);
	overflow-x: auto;
	padding-bottom: var(--bt-space-2);
	-webkit-overflow-scrolling: touch;
}

.bt-tour-gallery__thumb {
	flex-shrink: 0;
	width: 88px;
	border-radius: var(--bt-radius-md);
	overflow: hidden;
	border: 2px solid transparent;
	padding: 0;
	transition: border-color var(--bt-transition), opacity var(--bt-transition);
	opacity: 0.7;
}

.bt-tour-gallery__thumb img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.bt-tour-gallery__thumb:hover {
	opacity: 1;
}

.bt-tour-gallery__thumb.is-active {
	border-color: var(--bt-accent);
	opacity: 1;
}

/* ════════════════════════ 35. ÖZET ŞERİDİ ═════════════════════════ */

.bt-tour-summary-wrap {
	padding-block: var(--bt-space-5);
}

.bt-tour-summary {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--bt-space-3);
	list-style: none;
	padding: var(--bt-space-4);
	background: var(--bt-surface);
	border-radius: var(--bt-radius-lg);
	box-shadow: var(--bt-shadow-sm);
}

.bt-tour-summary__item {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-1);
	padding: var(--bt-space-2);
}

.bt-tour-summary__label {
	font-size: var(--bt-text-xs);
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--bt-muted);
}

.bt-tour-summary__value {
	font-weight: 600;
	color: var(--bt-ink);
}

/* ════════════════════════ 36. TUR LAYOUT + SECTION ════════════════ */

.bt-tour-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-6);
	align-items: start;
	padding-block: var(--bt-space-4) var(--bt-space-7);
}

.bt-tour-main {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-7);
}

.bt-tour-section__title {
	margin-bottom: var(--bt-space-4);
	padding-bottom: var(--bt-space-3);
	font-size: var(--bt-text-lg);
	border-bottom: 1px solid var(--bt-border);
}

.bt-tour-section__desc {
	margin-top: calc(var(--bt-space-3) * -1);
	margin-bottom: var(--bt-space-4);
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

/* ════════════════════════ 37. STICKY TEKLİF KUTUSU ════════════════ */

.bt-tour-sticky {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-4);
	padding: var(--bt-space-5);
	background: var(--bt-surface);
	border-radius: var(--bt-radius-lg);
	box-shadow: var(--bt-shadow-md);
}

.bt-tour-price {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-1);
}

.bt-tour-price__label {
	font-size: var(--bt-text-xs);
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--bt-muted);
}

.bt-tour-price__row {
	display: flex;
	align-items: baseline;
	gap: var(--bt-space-3);
	flex-wrap: wrap;
}

.bt-tour-price__old {
	font-size: var(--bt-text-md);
	color: var(--bt-muted);
}

.bt-tour-price__current {
	font-family: var(--bt-font-display);
	font-size: var(--bt-text-xl);
	font-weight: 700;
	color: var(--bt-accent);
}

.bt-tour-price__note {
	font-size: var(--bt-text-xs);
	color: var(--bt-muted);
}

.bt-tour-sticky__date {
	margin: 0;
	padding: var(--bt-space-3);
	background: var(--bt-primary-soft);
	border-radius: var(--bt-radius-md);
	font-size: var(--bt-text-sm);
	color: var(--bt-primary);
}

.bt-tour-actions {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-3);
}

.bt-tour-actions .bt-btn {
	width: 100%;
}

.bt-tour-sticky__phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--bt-space-2);
	font-weight: 600;
	color: var(--bt-ink);
}

.bt-tour-sticky__phone:hover {
	color: var(--bt-primary);
}

.bt-tour-sticky__pdf {
	font-size: var(--bt-text-sm);
	font-weight: 600;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--bt-muted);
}

.bt-tour-sticky__pdf:hover {
	color: var(--bt-primary);
}

.bt-tour-sticky__trust {
	margin: 0;
	padding-top: var(--bt-space-3);
	border-top: 1px solid var(--bt-border);
	font-size: var(--bt-text-xs);
	color: var(--bt-muted);
	text-align: center;
}

/* ════════════════════════ 38. PROGRAM TIMELINE ════════════════════ */

.bt-tour-timeline {
	list-style: none;
	display: flex;
	flex-direction: column;
}

.bt-tour-day {
	position: relative;
	display: flex;
	gap: var(--bt-space-4);
	padding-bottom: var(--bt-space-6);
}

.bt-tour-day::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 19px;
	bottom: 0;
	width: 2px;
	background: var(--bt-border);
}

.bt-tour-day:last-child::before {
	display: none;
}

.bt-tour-day:last-child {
	padding-bottom: 0;
}

.bt-tour-day__number {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--bt-radius-pill);
	background: var(--bt-primary);
	color: var(--bt-surface);
	font-family: var(--bt-font-display);
	font-weight: 700;
}

.bt-tour-day__content {
	min-width: 0;
	flex: 1;
}

.bt-tour-day__title {
	margin-bottom: var(--bt-space-2);
	font-size: var(--bt-text-md);
}

.bt-tour-day__text {
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
	line-height: var(--bt-leading-normal);
}

.bt-tour-day__text p:last-child {
	margin-bottom: 0;
}

.bt-tour-day__image {
	margin: var(--bt-space-3) 0 0;
	border-radius: var(--bt-radius-md);
	overflow: hidden;
	max-width: 420px;
}

/* ════════════════════════ 39. TARİH TABLOSU ═══════════════════════ */

.bt-date-table-wrap {
	border-radius: var(--bt-radius-lg);
	background: var(--bt-surface);
	box-shadow: var(--bt-shadow-sm);
	overflow: hidden;
}

.bt-date-table {
	width: 100%;
	border-collapse: collapse;
}

/* Mobil: tablo → kart liste */
.bt-date-table thead {
	display: none;
}

.bt-date-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--bt-space-2);
	padding: var(--bt-space-4);
	border-bottom: 1px solid var(--bt-border);
}

.bt-date-card:last-child {
	border-bottom: 0;
}

.bt-date-card.is-full {
	opacity: 0.6;
}

.bt-date-card td {
	display: block;
	padding: 0;
	border: 0;
}

.bt-date-card td::before {
	content: attr(data-label);
	display: block;
	font-size: var(--bt-text-xs);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--bt-muted);
	margin-bottom: var(--bt-space-1);
}

.bt-date-card td[data-label=""]::before {
	display: none;
}

.bt-date-card__range {
	font-weight: 600;
}

.bt-date-card__old {
	display: block;
	font-size: var(--bt-text-xs);
	color: var(--bt-muted);
}

.bt-date-card__price {
	color: var(--bt-accent);
	font-size: var(--bt-text-md);
	font-weight: 700;
}

.bt-status {
	display: inline-block;
	padding: var(--bt-space-1) var(--bt-space-3);
	border-radius: var(--bt-radius-pill);
	font-size: var(--bt-text-xs);
	font-weight: 700;
}

.bt-status--ok {
	background: var(--bt-primary-soft);
	color: var(--bt-success);
}

.bt-status--warn {
	background: var(--bt-danger-soft);
	color: var(--bt-danger-ink);
}

.bt-status--full {
	background: var(--bt-border);
	color: var(--bt-muted);
}

.bt-date-card__ask {
	display: inline-block;
	font-size: var(--bt-text-sm);
	font-weight: 700;
	color: var(--bt-whatsapp);
}

.bt-date-card__ask:hover {
	color: var(--bt-whatsapp-dark);
}

.bt-date-card__ask--secondary {
	color: var(--bt-muted);
}

.bt-tour-dates__note {
	margin: var(--bt-space-3) 0 0;
	font-size: var(--bt-text-xs);
	color: var(--bt-muted);
}

/* ════════════════════════ 40. DAHİL / HARİÇ ═══════════════════════ */

.bt-included-excluded__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-5);
}

.bt-included-excluded__heading {
	margin-bottom: var(--bt-space-3);
	font-family: var(--bt-font-body);
	font-size: var(--bt-text-sm);
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.bt-included-excluded__heading--in {
	color: var(--bt-success);
}

.bt-included-excluded__heading--out {
	color: var(--bt-muted);
}

.bt-check-list,
.bt-cross-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-2);
	font-size: var(--bt-text-sm);
}

.bt-check-list li,
.bt-cross-list li {
	position: relative;
	padding-left: var(--bt-space-5);
}

.bt-check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	font-weight: 700;
	color: var(--bt-success);
}

.bt-cross-list li::before {
	content: "—";
	position: absolute;
	left: 0;
	font-weight: 700;
	color: var(--bt-muted);
}

/* ════════════════════════ 41. EKSTRA TURLAR + OTELLER ═════════════ */

.bt-extra-tours__grid,
.bt-hotels__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-3);
}

.bt-extra-card,
.bt-hotel-card {
	padding: var(--bt-space-4);
	background: var(--bt-surface);
	border-radius: var(--bt-radius-md);
	box-shadow: var(--bt-shadow-sm);
}

.bt-extra-card__head,
.bt-hotel-card__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--bt-space-3);
	flex-wrap: wrap;
}

.bt-extra-card__title,
.bt-hotel-card__name {
	margin: 0;
	font-size: var(--bt-text-base);
	font-family: var(--bt-font-body);
	font-weight: 700;
}

.bt-extra-card__price {
	font-weight: 700;
	color: var(--bt-accent);
	white-space: nowrap;
}

.bt-extra-card__desc,
.bt-hotel-card__note {
	margin: var(--bt-space-2) 0 0;
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

.bt-hotel-card__stars {
	color: var(--bt-accent);
	letter-spacing: 0.1em;
	white-space: nowrap;
}

.bt-hotel-card__city {
	display: block;
	margin-top: var(--bt-space-1);
	font-size: var(--bt-text-xs);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--bt-muted);
}

.bt-hotels__note {
	margin: var(--bt-space-3) 0 0;
	font-size: var(--bt-text-xs);
	color: var(--bt-muted);
}

/* ════════════════════════ 42. NOTLAR + SSS ════════════════════════ */

.bt-tour-notes__content {
	padding: var(--bt-space-5);
	background: var(--bt-danger-soft);
	border-radius: var(--bt-radius-lg);
	font-size: var(--bt-text-sm);
	line-height: var(--bt-leading-normal);
}

.bt-tour-notes__content > :last-child {
	margin-bottom: 0;
}

.bt-tour-notes__content ul,
.bt-tour-notes__content ol {
	padding-left: var(--bt-space-5);
	margin-bottom: var(--bt-space-3);
}

.bt-accordion {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-3);
}

.bt-accordion__item {
	background: var(--bt-surface);
	border-radius: var(--bt-radius-md);
	box-shadow: var(--bt-shadow-sm);
	overflow: hidden;
}

.bt-accordion__question {
	padding: var(--bt-space-4);
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	position: relative;
	padding-right: var(--bt-space-7);
	transition: color var(--bt-transition);
}

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

.bt-accordion__question::after {
	content: "+";
	position: absolute;
	right: var(--bt-space-4);
	top: 50%;
	transform: translateY(-50%);
	font-size: var(--bt-text-md);
	color: var(--bt-accent);
	transition: transform var(--bt-transition);
}

.bt-accordion__item[open] .bt-accordion__question::after {
	transform: translateY(-50%) rotate(45deg);
}

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

.bt-accordion__answer {
	padding: 0 var(--bt-space-4) var(--bt-space-4);
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

.bt-accordion__answer p:last-child {
	margin-bottom: 0;
}

/* ════════════════════════ 43. MOBİL ACTION BAR ════════════════════ */

.bt-mobile-action-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 130;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--bt-space-3);
	padding: var(--bt-space-3) var(--bt-space-4);
	padding-bottom: calc(var(--bt-space-3) + env(safe-area-inset-bottom, 0px));
	background: var(--bt-surface);
	border-top: 1px solid var(--bt-border);
	box-shadow: var(--bt-shadow-lg);
	transform: translateY(0);
	transition: transform var(--bt-transition);
}

/* JS yoksa bar her zaman görünür (varsayılan durum).
   single.js yalnızca iyileştirme yapar: sayfa başında ve footer'da
   is-hidden ekleyerek barı zarifçe gizler. */
.bt-mobile-action-bar.is-hidden {
	transform: translateY(110%);
}

.bt-mobile-action-bar__price {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.bt-mobile-action-bar__label {
	font-size: var(--bt-text-xs);
	color: var(--bt-muted);
}

.bt-mobile-action-bar__value {
	font-family: var(--bt-font-display);
	font-size: var(--bt-text-md);
	color: var(--bt-accent);
	white-space: nowrap;
}

.bt-mobile-action-bar__actions {
	display: flex;
	align-items: center;
	gap: var(--bt-space-2);
	flex-shrink: 0;
}

.bt-mobile-action-bar__wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--bt-radius-md);
	background: var(--bt-whatsapp);
	color: var(--bt-surface);
	transition: background-color var(--bt-transition);
}

.bt-mobile-action-bar__wa:hover {
	background: var(--bt-whatsapp-dark);
	color: var(--bt-surface);
}

/* Sayfa sonunda içerik bar altında kalmasın */
.bt-single-tour {
	padding-bottom: var(--bt-space-8);
}

/* ════════════════════════ 44. DESTİNASYON DETAY ═══════════════════ */

.bt-destination-hero {
	position: relative;
	padding-block: var(--bt-space-7);
	background: var(--bt-primary);
	overflow: hidden;
}

.bt-destination-hero__media {
	position: absolute;
	inset: 0;
}

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

.bt-destination-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(33, 48, 58, 0.85), rgba(33, 48, 58, 0.35));
}

.bt-destination-hero__inner {
	position: relative;
}

.bt-destination-hero__title {
	margin-bottom: var(--bt-space-3);
	font-size: var(--bt-text-2xl);
	color: var(--bt-surface);
}

.bt-destination-hero__desc {
	max-width: 56ch;
	margin: 0 0 var(--bt-space-4);
	color: var(--bt-primary-soft);
}

.bt-destination-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bt-space-4);
	list-style: none;
}

.bt-destination-hero__facts li {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-1);
	padding: var(--bt-space-3) var(--bt-space-4);
	background: rgba(250, 247, 242, 0.12);
	border-radius: var(--bt-radius-md);
}

.bt-destination-hero__fact-label {
	font-size: var(--bt-text-xs);
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--bt-primary-soft);
}

.bt-destination-hero__fact-value {
	font-weight: 600;
	color: var(--bt-surface);
	font-size: var(--bt-text-sm);
}

.bt-destination-intro {
	padding-block: var(--bt-space-6) 0;
}

.bt-destination-places__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-4);
}

.bt-place-card {
	display: flex;
	flex-direction: column;
	background: var(--bt-surface);
	border-radius: var(--bt-radius-lg);
	box-shadow: var(--bt-shadow-sm);
	overflow: hidden;
}

.bt-place-card__image {
	margin: 0;
	aspect-ratio: 16 / 10;
	background: var(--bt-primary-soft);
}

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

.bt-place-card__body {
	padding: var(--bt-space-4);
}

.bt-place-card__title {
	margin-bottom: var(--bt-space-2);
	font-size: var(--bt-text-md);
}

.bt-place-card__desc {
	margin: 0;
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

/* ════════════════════════ 45. BLOG DETAY ══════════════════════════ */

.bt-blog-hero {
	padding-block: var(--bt-space-6) 0;
}

.bt-blog-hero__inner {
	max-width: 820px;
}

.bt-blog-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--bt-space-3);
	margin-bottom: var(--bt-space-4);
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

.bt-blog-hero__title {
	margin-bottom: var(--bt-space-5);
	font-size: var(--bt-text-2xl);
}

.bt-blog-hero__image {
	margin: 0;
	border-radius: var(--bt-radius-lg);
	overflow: hidden;
	box-shadow: var(--bt-shadow-md);
}

.bt-blog-content-wrap {
	padding-block: var(--bt-space-6);
}

.bt-blog-content {
	max-width: 720px;
	font-size: var(--bt-text-base);
	line-height: var(--bt-leading-normal);
}

.bt-blog-content h2 {
	margin-top: var(--bt-space-7);
	font-size: var(--bt-text-lg);
}

.bt-blog-content h3 {
	margin-top: var(--bt-space-6);
	font-size: var(--bt-text-md);
}

.bt-blog-content img {
	border-radius: var(--bt-radius-md);
}

.bt-blog-content ul,
.bt-blog-content ol {
	margin: 0 0 var(--bt-space-4);
	padding-left: var(--bt-space-5);
}

.bt-blog-content li {
	margin-bottom: var(--bt-space-2);
}

.bt-blog-content blockquote {
	margin: var(--bt-space-5) 0;
	padding: var(--bt-space-4) var(--bt-space-5);
	background: var(--bt-primary-soft);
	border-left: 4px solid var(--bt-primary);
	border-radius: 0 var(--bt-radius-md) var(--bt-radius-md) 0;
	font-style: italic;
	color: var(--bt-primary-dark);
}

.bt-blog-content blockquote p:last-child {
	margin-bottom: 0;
}

.bt-blog-content table {
	width: 100%;
	margin: var(--bt-space-5) 0;
	border-collapse: collapse;
	font-size: var(--bt-text-sm);
}

.bt-blog-content th,
.bt-blog-content td {
	padding: var(--bt-space-3);
	border: 1px solid var(--bt-border);
	text-align: left;
}

.bt-blog-content th {
	background: var(--bt-primary-soft);
	font-weight: 700;
}

.bt-blog-content .wp-block-image figcaption {
	font-size: var(--bt-text-xs);
	color: var(--bt-muted);
	text-align: center;
}

/* İlgili tur kutusu */
.bt-blog-related-tour__box {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-5);
	padding: var(--bt-space-6);
	background: var(--bt-surface);
	border-radius: var(--bt-radius-lg);
	box-shadow: var(--bt-shadow-md);
}

.bt-blog-related-tour__title {
	margin-bottom: var(--bt-space-2);
	font-size: var(--bt-text-lg);
}

.bt-blog-related-tour__text {
	margin-bottom: var(--bt-space-4);
	color: var(--bt-muted);
}

/* ════════════════════════ 46. AŞAMA 5 RESPONSIVE ══════════════════ */

/* sm: 640px */
@media (min-width: 640px) {

	.bt-tour-summary {
		grid-template-columns: repeat(3, 1fr);
	}

	.bt-extra-tours__grid,
	.bt-hotels__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bt-destination-places__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* md: 768px */
@media (min-width: 768px) {

	.bt-tour-hero__head {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.bt-included-excluded__grid {
		grid-template-columns: 1fr 1fr;
	}

	/* Tarih: kart → gerçek tablo */
	.bt-date-table thead {
		display: table-header-group;
	}

	.bt-date-table thead th {
		padding: var(--bt-space-3) var(--bt-space-4);
		background: var(--bt-primary-soft);
		font-size: var(--bt-text-xs);
		font-weight: 700;
		letter-spacing: 0.04em;
		text-transform: uppercase;
		color: var(--bt-primary);
		text-align: left;
	}

	.bt-date-card {
		display: table-row;
	}

	.bt-date-card td {
		display: table-cell;
		padding: var(--bt-space-4);
		vertical-align: middle;
		border-bottom: 1px solid var(--bt-border);
	}

	.bt-date-card td::before {
		display: none;
	}

	.bt-blog-related-tour__box {
		grid-template-columns: 1.2fr 1fr;
		align-items: center;
	}
}

/* lg: 1024px */
@media (min-width: 1024px) {

	.bt-tour-layout {
		grid-template-columns: 1fr 360px;
		gap: var(--bt-space-7);
	}

	.bt-tour-sidebar {
		position: sticky;
		top: calc(var(--bt-header-height) + var(--bt-space-4));
	}

	/* Action bar yalnızca mobil/tablet */
	.bt-mobile-action-bar {
		display: none;
	}

	.bt-single-tour {
		padding-bottom: 0;
	}

	.bt-tour-summary {
		grid-template-columns: repeat(6, 1fr);
	}

	.bt-destination-places__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* =====================================================================
   AŞAMA 6 — FORM + TEKLİF + İLETİŞİM STİLLERİ
   Tüm değerler tokens.css değişkenlerinden; ham hex yok.
   ===================================================================== */

/* ════════════════════════ 47. FORM TEMELİ ═════════════════════════ */

.bt-lead-form {
	background: var(--bt-surface);
	border-radius: var(--bt-radius-lg);
	box-shadow: var(--bt-shadow-md);
	padding: var(--bt-space-5);
}

.bt-lead-form__selected {
	margin: 0 0 var(--bt-space-4);
	padding: var(--bt-space-3) var(--bt-space-4);
	background: var(--bt-primary-soft);
	border-radius: var(--bt-radius-md);
	font-size: var(--bt-text-sm);
	color: var(--bt-primary);
}

.bt-form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-4);
}

.bt-form-field {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-1);
}

.bt-form-field__label {
	font-size: var(--bt-text-sm);
	font-weight: 600;
	color: var(--bt-ink);
}

.bt-form-field__req {
	color: var(--bt-accent);
}

.bt-form-field__input {
	min-height: 48px;
	padding: var(--bt-space-3);
	font: inherit;
	color: var(--bt-ink);
	background: var(--bt-bg);
	border: 1px solid var(--bt-border);
	border-radius: var(--bt-radius-md);
	transition: border-color var(--bt-transition);
}

textarea.bt-form-field__input {
	min-height: 0;
	resize: vertical;
}

.bt-form-field__input:focus {
	border-color: var(--bt-primary);
	outline: none;
}

.bt-form-field.has-error .bt-form-field__input {
	border-color: var(--bt-danger-ink);
}

.bt-form-field__check {
	display: flex;
	gap: var(--bt-space-2);
	align-items: flex-start;
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
	cursor: pointer;
}

.bt-form-field__check input {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	accent-color: var(--bt-primary);
}

.bt-form-error {
	margin: 0;
	font-size: var(--bt-text-xs);
	font-weight: 600;
	color: var(--bt-danger-ink);
}

.bt-form-error--general {
	margin-top: var(--bt-space-4);
	padding: var(--bt-space-3) var(--bt-space-4);
	background: var(--bt-danger-soft);
	border-radius: var(--bt-radius-md);
	font-size: var(--bt-text-sm);
}

.bt-form-submit {
	width: 100%;
	margin-top: var(--bt-space-4);
}

/* Honeypot — görsel gizli, botlara açık */
.bt-form-honeypot {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Loading durumu */
.bt-form-loading {
	opacity: 0.6;
	pointer-events: none;
	transition: opacity var(--bt-transition);
}

/* Başarı kutusu */
.bt-form-success {
	text-align: center;
	padding: var(--bt-space-6) var(--bt-space-4);
}

.bt-form-success__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 0 var(--bt-space-4);
	border-radius: var(--bt-radius-pill);
	background: var(--bt-primary-soft);
	color: var(--bt-success);
	font-size: var(--bt-text-xl);
	font-weight: 700;
}

.bt-form-success__title {
	margin-bottom: var(--bt-space-2);
	font-size: var(--bt-text-lg);
}

.bt-form-success__text {
	max-width: 40ch;
	margin: 0 auto var(--bt-space-5);
	color: var(--bt-muted);
	font-size: var(--bt-text-sm);
}

/* ════════════════════════ 48. TEKLİF SAYFASI ══════════════════════ */

.bt-quote-page__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-6);
	padding-block: var(--bt-space-6) var(--bt-space-8);
}

/* Mobilde form üstte gelsin — dönüşüm önce */
.bt-quote-page__form {
	order: -1;
}

.bt-trust-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-4);
	margin-top: var(--bt-space-4);
}

.bt-trust-list li {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-1);
	padding: var(--bt-space-4);
	background: var(--bt-surface);
	border-radius: var(--bt-radius-md);
	box-shadow: var(--bt-shadow-sm);
}

.bt-trust-list strong {
	font-size: var(--bt-text-sm);
	color: var(--bt-primary);
}

.bt-trust-list span {
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

.bt-quote-page__wa-note {
	margin-top: var(--bt-space-5);
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

.bt-quote-page__wa-note a {
	font-weight: 700;
	color: var(--bt-whatsapp);
}

.bt-quote-page__wa-note a:hover {
	color: var(--bt-whatsapp-dark);
}

/* ════════════════════════ 49. İLETİŞİM SAYFASI ════════════════════ */

.bt-contact-page__body {
	padding-block: var(--bt-space-6) var(--bt-space-8);
}

.bt-contact-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-4);
	margin-bottom: var(--bt-space-6);
}

.bt-contact-card {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-1);
	padding: var(--bt-space-5);
	background: var(--bt-surface);
	border-radius: var(--bt-radius-lg);
	box-shadow: var(--bt-shadow-sm);
	color: var(--bt-ink);
	transition: box-shadow var(--bt-transition), transform var(--bt-transition);
}

a.bt-contact-card:hover {
	box-shadow: var(--bt-shadow-md);
	transform: translateY(-2px);
	color: var(--bt-ink);
}

.bt-contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: var(--bt-space-2);
	border-radius: var(--bt-radius-md);
	background: var(--bt-primary-soft);
	color: var(--bt-primary);
}

.bt-contact-card--wa .bt-contact-card__icon {
	background: var(--bt-whatsapp);
	color: var(--bt-surface);
}

.bt-contact-card__label {
	font-size: var(--bt-text-xs);
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--bt-muted);
}

.bt-contact-card__value {
	font-weight: 600;
	font-size: var(--bt-text-sm);
}

.bt-contact-extra {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-3);
	margin-bottom: var(--bt-space-6);
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

.bt-contact-extra__tursab {
	margin: 0;
}

.bt-contact-extra__social {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bt-space-4);
	list-style: none;
	font-weight: 600;
}

.bt-contact-page__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-6);
}

.bt-contact-page__form-title {
	margin-bottom: var(--bt-space-4);
	font-size: var(--bt-text-lg);
}

.bt-map-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--bt-space-3);
	min-height: 280px;
	padding: var(--bt-space-6);
	background: var(--bt-primary-soft);
	border-radius: var(--bt-radius-lg);
	text-align: center;
}

.bt-map-placeholder__icon {
	font-size: var(--bt-text-xl);
}

.bt-map-placeholder__address {
	margin: 0;
	max-width: 36ch;
	font-size: var(--bt-text-sm);
	color: var(--bt-primary-dark);
}

/* ════════════════════════ 50. AŞAMA 6 RESPONSIVE ══════════════════ */

/* sm: 640px */
@media (min-width: 640px) {

	.bt-form-grid {
		grid-template-columns: 1fr 1fr;
	}

	.bt-form-field--full {
		grid-column: 1 / -1;
	}

	.bt-form-submit {
		width: auto;
		min-width: 240px;
	}

	.bt-contact-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* lg: 1024px */
@media (min-width: 1024px) {

	.bt-quote-page__layout {
		grid-template-columns: 1fr 1.3fr;
		align-items: start;
	}

	.bt-quote-page__form {
		order: 0;
		position: sticky;
		top: calc(var(--bt-header-height) + var(--bt-space-4));
	}

	.bt-contact-cards {
		grid-template-columns: repeat(4, 1fr);
	}

	.bt-contact-page__layout {
		grid-template-columns: 1.4fr 1fr;
		align-items: start;
	}

	.bt-contact-page__map {
		position: sticky;
		top: calc(var(--bt-header-height) + var(--bt-space-4));
	}
}

/* =====================================================================
   v1.2.0 — GERÇEK SEYAHAT SİTESİ GİYDİRMESİ
   Gradient placeholder sistemi, hero kolajı, yaklaşan tarihler,
   dolu footer ve premium polish. Ham hex yok; gradient renkleri
   tokens.css'teki --bt-g-* tokenlarından gelir.
   ===================================================================== */

/* ════════════════════════ 51. GRADIENT PLACEHOLDER ════════════════ */

.bt-ph {
	position: relative;
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.bt-ph--balkan { background: linear-gradient(135deg, var(--bt-g-balkan-a), var(--bt-g-balkan-b)); }
.bt-ph--avrupa { background: linear-gradient(135deg, var(--bt-g-avrupa-a), var(--bt-g-avrupa-b)); }
.bt-ph--col    { background: linear-gradient(135deg, var(--bt-g-col-a), var(--bt-g-col-b)); }
.bt-ph--uzak   { background: linear-gradient(135deg, var(--bt-g-uzak-a), var(--bt-g-uzak-b)); }
.bt-ph--deniz  { background: linear-gradient(135deg, var(--bt-g-deniz-a), var(--bt-g-deniz-b)); }
.bt-ph--notr   { background: linear-gradient(135deg, var(--bt-g-notr-a), var(--bt-g-notr-b)); }

/* Seyahat hissi veren doku: yumuşak ışık halkaları + ufuk çizgisi */
.bt-ph__pattern {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 78% 18%, rgba(250, 247, 242, 0.22) 0, rgba(250, 247, 242, 0) 28%),
		radial-gradient(circle at 15% 85%, rgba(250, 247, 242, 0.1) 0, rgba(250, 247, 242, 0) 35%),
		linear-gradient(to top, rgba(33, 48, 58, 0.35), rgba(33, 48, 58, 0) 45%);
}

.bt-ph__label {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: var(--bt-space-2);
	margin: var(--bt-space-3);
	padding: var(--bt-space-1) var(--bt-space-3);
	border-radius: var(--bt-radius-pill);
	background: rgba(33, 48, 58, 0.45);
	backdrop-filter: blur(2px);
	color: var(--bt-surface);
	font-size: var(--bt-text-xs);
	font-weight: 600;
	letter-spacing: 0.03em;
	max-width: calc(100% - var(--bt-space-5));
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bt-ph__pin {
	color: var(--bt-accent);
	font-size: 8px;
}

.bt-ph--card { aspect-ratio: 4 / 3; }
.bt-ph--hero { aspect-ratio: 16 / 9; }
.bt-ph--mini { aspect-ratio: 16 / 10; }

/* Tur galerisi placeholder kabı */
.bt-tour-gallery__placeholder {
	aspect-ratio: auto;
}

.bt-tour-gallery__placeholder .bt-ph {
	aspect-ratio: 16 / 9;
}

/* ════════════════════════ 52. HERO v1.2.0 ═════════════════════════ */

/* Vurgu chip'leri */
.bt-home-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bt-space-2);
	list-style: none;
	margin: 0 0 var(--bt-space-5);
	padding: 0;
}

.bt-hero-chip {
	display: inline-flex;
	align-items: center;
	gap: var(--bt-space-1);
	padding: var(--bt-space-1) var(--bt-space-3);
	border-radius: var(--bt-radius-pill);
	background: var(--bt-surface);
	box-shadow: var(--bt-shadow-sm);
	font-size: var(--bt-text-xs);
	font-weight: 600;
	color: var(--bt-primary);
}

.bt-hero-chip::before {
	content: "✓";
	color: var(--bt-success);
	font-weight: 700;
}

/* Rota kolajı — görsel atanana kadar bile premium duran sağ alan */
.bt-home-hero__collage {
	display: grid;
	gap: var(--bt-space-3);
}

.bt-hero-route-card {
	position: relative;
	display: block;
	border-radius: var(--bt-radius-lg);
	overflow: hidden;
	box-shadow: var(--bt-shadow-md);
	transition: transform var(--bt-transition), box-shadow var(--bt-transition);
}

.bt-hero-route-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--bt-shadow-lg);
}

.bt-hero-route-card .bt-ph--mini {
	aspect-ratio: 21 / 9;
}

.bt-hero-route-card__body {
	position: absolute;
	inset: auto 0 0 0;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--bt-space-3);
	padding: var(--bt-space-3) var(--bt-space-4);
	background: linear-gradient(to top, rgba(33, 48, 58, 0.78), rgba(33, 48, 58, 0));
}

.bt-hero-route-card__title {
	font-family: var(--bt-font-display);
	font-weight: 700;
	font-size: var(--bt-text-sm);
	color: var(--bt-surface);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bt-hero-route-card__price {
	flex-shrink: 0;
	padding: 2px var(--bt-space-2);
	border-radius: var(--bt-radius-pill);
	background: var(--bt-accent);
	color: var(--bt-surface);
	font-size: var(--bt-text-xs);
	font-weight: 700;
}

/* ════════════════════════ 53. YAKLAŞAN TARİHLER ═══════════════════ */

.bt-upcoming__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	border-radius: var(--bt-radius-lg);
	background: var(--bt-bg);
	box-shadow: var(--bt-shadow-sm);
	overflow: hidden;
}

.bt-upcoming__row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: var(--bt-space-2) var(--bt-space-4);
	padding: var(--bt-space-4);
	border-bottom: 1px solid var(--bt-border);
	transition: background-color var(--bt-transition);
}

.bt-upcoming__row:hover {
	background: var(--bt-surface);
}

.bt-upcoming__row:last-child {
	border-bottom: 0;
}

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

.bt-upcoming__date strong {
	color: var(--bt-primary);
	font-size: var(--bt-text-sm);
}

.bt-upcoming__date span {
	font-size: var(--bt-text-xs);
	color: var(--bt-muted);
}

.bt-upcoming__tour {
	grid-column: 1 / -1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.bt-upcoming__tour a {
	font-weight: 700;
	color: var(--bt-ink);
}

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

.bt-upcoming__departure {
	font-size: var(--bt-text-xs);
	color: var(--bt-muted);
}

.bt-upcoming__price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.bt-upcoming__price strong {
	color: var(--bt-accent);
	font-size: var(--bt-text-md);
	font-family: var(--bt-font-display);
}

.bt-upcoming__price span {
	font-size: var(--bt-text-xs);
	color: var(--bt-muted);
}

.bt-upcoming__actions {
	display: flex;
	align-items: center;
	gap: var(--bt-space-3);
	justify-self: end;
	align-self: center;
}

.bt-upcoming__wa {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 var(--bt-space-3);
	border-radius: var(--bt-radius-pill);
	background: var(--bt-whatsapp);
	color: var(--bt-surface);
	font-size: var(--bt-text-xs);
	font-weight: 700;
	transition: background-color var(--bt-transition);
}

.bt-upcoming__wa:hover {
	background: var(--bt-whatsapp-dark);
	color: var(--bt-surface);
}

.bt-upcoming__view {
	font-size: var(--bt-text-sm);
	font-weight: 700;
	color: var(--bt-primary);
}

/* ════════════════════════ 54. ARŞİV PILL'LERİ ═════════════════════ */

.bt-archive-hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bt-space-2);
	list-style: none;
	margin: var(--bt-space-4) 0 0;
	padding: 0;
}

.bt-archive-pill {
	display: inline-flex;
	align-items: center;
	gap: var(--bt-space-2);
	min-height: 40px;
	padding: 0 var(--bt-space-4);
	border-radius: var(--bt-radius-pill);
	background: var(--bt-bg);
	border: 1px solid var(--bt-border);
	color: var(--bt-ink);
	font-size: var(--bt-text-sm);
	font-weight: 600;
	transition: border-color var(--bt-transition), color var(--bt-transition), background-color var(--bt-transition);
}

.bt-archive-pill:hover {
	border-color: var(--bt-primary);
	color: var(--bt-primary);
}

.bt-archive-pill.is-active {
	background: var(--bt-primary);
	border-color: var(--bt-primary);
	color: var(--bt-surface);
}

.bt-archive-pill__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding-inline: var(--bt-space-1);
	border-radius: var(--bt-radius-pill);
	background: var(--bt-primary-soft);
	color: var(--bt-primary);
	font-size: var(--bt-text-xs);
	font-weight: 700;
}

.bt-archive-pill.is-active .bt-archive-pill__count {
	background: rgba(250, 247, 242, 0.2);
	color: var(--bt-surface);
}

/* ════════════════════════ 55. CTA BANDI POLISH ════════════════════ */

.bt-cta-band__inner,
.bt-destination-cta .bt-cta-band__inner {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 85% 15%, rgba(224, 130, 63, 0.25) 0, rgba(224, 130, 63, 0) 45%),
		radial-gradient(circle at 8% 90%, rgba(250, 247, 242, 0.08) 0, rgba(250, 247, 242, 0) 40%),
		linear-gradient(135deg, var(--bt-g-notr-a), var(--bt-g-balkan-a));
}

/* ════════════════════════ 56. KART POLISH ═════════════════════════ */

/* Tur kartı görsel overlay'i — fotoğraflı kartlarda da seyahat hissi */
.bt-tour-card__image {
	position: relative;
}

.bt-tour-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(33, 48, 58, 0.25), rgba(33, 48, 58, 0) 40%);
	pointer-events: none;
	opacity: 0;
	transition: opacity var(--bt-transition);
}

.bt-tour-card:hover .bt-tour-card__image::after {
	opacity: 1;
}

.bt-tour-card__departure {
	color: var(--bt-primary);
	font-weight: 600;
}

/* Section eyebrow'a marka çizgisi */
.bt-section-eyebrow::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 2px;
	margin-right: var(--bt-space-2);
	vertical-align: middle;
	background: var(--bt-accent);
	border-radius: 2px;
}

.bt-section-head--center .bt-section-eyebrow::before {
	display: none;
}

/* ════════════════════════ 57. FOOTER 5 KOLON ══════════════════════ */

.bt-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bt-space-6);
}

/* ════════════════════════ 58. v1.2.0 RESPONSIVE ═══════════════════ */

/* sm: 640px */
@media (min-width: 640px) {

	.bt-upcoming__row {
		grid-template-columns: 150px 1fr auto;
		align-items: center;
	}

	.bt-upcoming__tour {
		grid-column: auto;
	}

	.bt-upcoming__price {
		align-items: flex-end;
	}

	.bt-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* md: 768px */
@media (min-width: 768px) {

	.bt-upcoming__row {
		grid-template-columns: 160px 1.6fr 1fr auto;
	}
}

/* lg: 1024px */
@media (min-width: 1024px) {

	.bt-footer-grid {
		grid-template-columns: 1.6fr 1fr 1.2fr 1fr 1.2fr;
		gap: var(--bt-space-7);
	}

	.bt-home-hero__collage {
		grid-template-columns: 1fr;
	}

	/* Kolaj kartlarına hafif kaydırmalı kompozisyon */
	.bt-hero-route-card--1 { transform: translateX(0); }
	.bt-hero-route-card--2 { transform: translateX(var(--bt-space-5)); }
	.bt-hero-route-card--3 { transform: translateX(var(--bt-space-2)); }

	.bt-hero-route-card--2:hover { transform: translateX(var(--bt-space-5)) translateY(-3px); }
	.bt-hero-route-card--3:hover { transform: translateX(var(--bt-space-2)) translateY(-3px); }
}

/* =====================================================================
   v1.3.0 — AR MİMARİSİ BİREBİR GİYDİRME
   Para birimi, hero arama, kıta gezgini, son çağrı, SEO linkleri,
   güven şeridi, keşif bandı, sabit widget'lar, footer ekleri.
   ===================================================================== */

/* ════════════════════════ 60. PARA BİRİMİ SEÇİCİ ══════════════════ */

.bt-currency {
	position: relative;
}

.bt-currency__toggle {
	display: inline-flex;
	align-items: center;
	gap: var(--bt-space-1);
	min-height: 40px;
	padding: 0 var(--bt-space-3);
	border: 1px solid var(--bt-border);
	border-radius: var(--bt-radius-pill);
	background: var(--bt-surface);
	font-size: var(--bt-text-sm);
	font-weight: 700;
	color: var(--bt-ink);
	cursor: pointer;
	transition: border-color var(--bt-transition);
}

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

.bt-currency__flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--bt-primary-soft);
	color: var(--bt-primary);
	font-size: var(--bt-text-xs);
}

.bt-currency__list {
	position: absolute;
	top: calc(100% + var(--bt-space-1));
	right: 0;
	z-index: 60;
	min-width: 120px;
	margin: 0;
	padding: var(--bt-space-1);
	list-style: none;
	background: var(--bt-bg);
	border: 1px solid var(--bt-border);
	border-radius: var(--bt-radius-md);
	box-shadow: var(--bt-shadow-lg);
}

.bt-currency__list button {
	display: flex;
	align-items: center;
	gap: var(--bt-space-2);
	width: 100%;
	padding: var(--bt-space-2) var(--bt-space-3);
	border: 0;
	border-radius: var(--bt-radius-sm);
	background: transparent;
	font-size: var(--bt-text-sm);
	font-weight: 600;
	color: var(--bt-ink);
	cursor: pointer;
	text-align: left;
}

.bt-currency__list button:hover,
.bt-currency__list button[aria-selected="true"] {
	background: var(--bt-primary-soft);
	color: var(--bt-primary);
}

.bt-currency--footer .bt-currency__toggle {
	background: transparent;
	color: var(--bt-surface);
	border-color: rgba(250, 247, 242, 0.3);
}

.bt-currency--footer .bt-currency__list {
	bottom: calc(100% + var(--bt-space-1));
	top: auto;
	left: 0;
	right: auto;
}

.bt-header-login {
	display: none;
	align-items: center;
	gap: var(--bt-space-1);
	font-size: var(--bt-text-sm);
	font-weight: 700;
	color: var(--bt-primary);
	white-space: nowrap;
}

.bt-header-login:hover {
	color: var(--bt-primary-dark);
}

/* ════════════════════════ 61. HERO ARAMA KUTUSU ═══════════════════ */

.bt-hero-search {
	position: relative;
	margin: 0 0 var(--bt-space-4);
	padding: var(--bt-space-3);
	border-radius: var(--bt-radius-lg);
	background: var(--bt-bg);
	box-shadow: var(--bt-shadow-lg);
}

.bt-hero-search__fields {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-2);
}

.bt-hero-search__field {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: var(--bt-space-1) var(--bt-space-3);
	border: 1px solid var(--bt-border);
	border-radius: var(--bt-radius-md);
	background: var(--bt-surface);
}

.bt-hero-search__field:focus-within {
	border-color: var(--bt-primary);
}

.bt-hero-search__label {
	font-size: var(--bt-text-xs);
	font-weight: 700;
	color: var(--bt-primary);
	letter-spacing: 0.02em;
}

.bt-hero-search__input {
	border: 0;
	padding: 0;
	background: transparent;
	font-size: var(--bt-text-md);
	color: var(--bt-ink);
	min-height: 28px;
}

.bt-hero-search__input:focus {
	outline: none;
}

.bt-hero-search__submit {
	width: 100%;
}

.bt-hero-search__dropdown {
	position: absolute;
	top: calc(100% + var(--bt-space-1));
	left: 0;
	right: 0;
	z-index: 50;
	padding: var(--bt-space-3);
	background: var(--bt-bg);
	border: 1px solid var(--bt-border);
	border-radius: var(--bt-radius-lg);
	box-shadow: var(--bt-shadow-lg);
}

.bt-hero-search__tabs {
	display: flex;
	gap: var(--bt-space-2);
	margin-bottom: var(--bt-space-2);
	padding-bottom: var(--bt-space-2);
	border-bottom: 1px solid var(--bt-border);
}

.bt-hero-search__tab {
	font-size: var(--bt-text-xs);
	font-weight: 700;
	color: var(--bt-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.bt-hero-search__tab.is-active {
	color: var(--bt-primary);
}

.bt-hero-search__results {
	margin: 0;
	padding: 0;
	list-style: none;
	max-height: 280px;
	overflow: auto;
}

.bt-hero-search__results a {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: var(--bt-space-2) var(--bt-space-3);
	border-radius: var(--bt-radius-sm);
	font-weight: 700;
	color: var(--bt-ink);
}

.bt-hero-search__results a:hover {
	background: var(--bt-primary-soft);
	color: var(--bt-primary);
}

.bt-hero-search__geo {
	font-size: var(--bt-text-xs);
	font-weight: 500;
	color: var(--bt-muted);
}

.bt-hero-search__empty {
	margin: 0;
	padding: var(--bt-space-3);
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
	text-align: center;
}

.bt-hero-ai {
	display: flex;
	align-items: center;
	gap: var(--bt-space-3);
	margin: 0 0 var(--bt-space-4);
	padding: var(--bt-space-2) var(--bt-space-3);
	border-radius: var(--bt-radius-pill);
	background: var(--bt-primary-soft);
	color: var(--bt-ink);
	transition: background-color var(--bt-transition);
}

.bt-hero-ai:hover {
	background: var(--bt-accent-soft);
	color: var(--bt-ink);
}

.bt-hero-ai__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--bt-bg);
	box-shadow: var(--bt-shadow-sm);
}

.bt-hero-ai__text {
	display: flex;
	flex-direction: column;
	font-size: var(--bt-text-xs);
	line-height: 1.4;
}

.bt-hero-ai__text strong {
	font-size: var(--bt-text-sm);
	color: var(--bt-primary);
}

/* ════════════════════════ 62. VİTRİN + SEKME ROZETİ ═══════════════ */

.bt-showcase-cta {
	margin-top: var(--bt-space-6);
	text-align: center;
}

.bt-tabs__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	margin-left: var(--bt-space-1);
	padding-inline: var(--bt-space-1);
	border-radius: var(--bt-radius-pill);
	background: var(--bt-primary-soft);
	color: var(--bt-primary);
	font-size: var(--bt-text-xs);
	font-weight: 700;
}

.bt-tabs__tab[aria-selected="true"] .bt-tabs__count {
	background: rgba(250, 247, 242, 0.25);
	color: var(--bt-surface);
}

/* ════════════════════════ 63. KITA GEZGİNİ + CHIP'LER ═════════════ */

.bt-continent-list {
	display: grid;
	gap: var(--bt-space-4);
}

.bt-continent-tour {
	padding: var(--bt-space-4);
	border-radius: var(--bt-radius-lg);
	background: var(--bt-bg);
	box-shadow: var(--bt-shadow-sm);
	transition: box-shadow var(--bt-transition);
}

.bt-continent-tour:hover {
	box-shadow: var(--bt-shadow-md);
}

.bt-continent-tour__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--bt-space-2);
	margin-bottom: var(--bt-space-3);
}

.bt-continent-tour__title {
	margin: 0;
	font-size: var(--bt-text-lg);
}

.bt-continent-tour__title a {
	color: var(--bt-ink);
}

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

.bt-continent-tour__summary {
	margin: 0;
	font-family: var(--bt-font-display);
	font-weight: 700;
	font-size: var(--bt-text-sm);
	color: var(--bt-primary);
}

.bt-chip-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--bt-space-1);
	margin-bottom: var(--bt-space-2);
}

.bt-chip-row__label {
	margin-right: var(--bt-space-1);
	font-size: var(--bt-text-xs);
	font-weight: 700;
	color: var(--bt-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.bt-chip {
	display: inline-flex;
	align-items: center;
	padding: 2px var(--bt-space-2);
	border-radius: var(--bt-radius-pill);
	background: var(--bt-primary-soft);
	color: var(--bt-primary);
	font-size: var(--bt-text-xs);
	font-weight: 700;
}

.bt-chip--soft {
	background: var(--bt-surface);
	border: 1px solid var(--bt-border);
	color: var(--bt-ink);
	font-weight: 600;
}

.bt-chip-more {
	display: inline;
}

.bt-chip-more summary {
	display: inline-flex;
	align-items: center;
	padding: 2px var(--bt-space-2);
	border-radius: var(--bt-radius-pill);
	border: 1px dashed var(--bt-border-dark);
	color: var(--bt-muted);
	font-size: var(--bt-text-xs);
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.bt-chip-more summary::-webkit-details-marker {
	display: none;
}

.bt-chip-more[open] summary {
	display: none;
}

.bt-chip-more__rest {
	display: contents;
}

.bt-continent-tour__cta {
	margin-top: var(--bt-space-2);
}

.bt-continent-tour__link {
	font-size: var(--bt-text-sm);
	font-weight: 700;
	color: var(--bt-accent);
}

.bt-continent-tour__link:hover {
	color: var(--bt-accent-dark);
}

/* ════════════════════════ 64. AVANTAJ KARTLARI ════════════════════ */

.bt-advantages__grid {
	display: grid;
	gap: var(--bt-space-3);
}

.bt-advantage-card {
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-2);
	padding: var(--bt-space-5);
	border-radius: var(--bt-radius-lg);
	background: var(--bt-surface);
	box-shadow: var(--bt-shadow-sm);
	color: var(--bt-ink);
	transition: transform var(--bt-transition), box-shadow var(--bt-transition);
}

.bt-advantage-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--bt-shadow-md);
	color: var(--bt-ink);
}

.bt-advantage-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: var(--bt-radius-md);
	background: var(--bt-accent-soft);
	color: var(--bt-accent);
	font-size: var(--bt-text-md);
}

.bt-advantage-card__title {
	font-family: var(--bt-font-display);
	font-weight: 700;
	font-size: var(--bt-text-md);
	color: var(--bt-primary);
}

.bt-advantage-card__text {
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
	line-height: 1.6;
}

/* ════════════════════════ 65. SON ÇAĞRI TABLOSU ═══════════════════ */

.bt-last-call__box {
	padding: var(--bt-space-5);
	border-radius: var(--bt-radius-xl);
	background: linear-gradient(135deg, var(--bt-g-notr-a), var(--bt-g-balkan-a));
	color: var(--bt-surface);
}

.bt-last-call__head {
	margin-bottom: var(--bt-space-4);
	text-align: center;
}

.bt-last-call__eyebrow {
	margin: 0 0 var(--bt-space-1);
	font-size: var(--bt-text-sm);
	font-weight: 800;
	letter-spacing: 0.12em;
	color: var(--bt-accent);
}

.bt-last-call__title {
	margin: 0;
	color: var(--bt-surface);
}

.bt-last-call__table-wrap {
	overflow-x: auto;
	border-radius: var(--bt-radius-lg);
	background: rgba(250, 247, 242, 0.05);
}

.bt-last-call__table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--bt-text-sm);
}

.bt-last-call__table th,
.bt-last-call__table td {
	padding: var(--bt-space-3) var(--bt-space-4);
	border-bottom: 1px solid rgba(250, 247, 242, 0.12);
	text-align: left;
	white-space: nowrap;
}

.bt-last-call__table th {
	font-size: var(--bt-text-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(250, 247, 242, 0.6);
}

.bt-last-call__table tbody tr:last-child td {
	border-bottom: 0;
}

.bt-last-call__table a {
	color: var(--bt-surface);
	font-weight: 700;
}

.bt-last-call__table a:hover {
	color: var(--bt-accent);
}

.bt-status {
	display: inline-flex;
	align-items: center;
	padding: 2px var(--bt-space-2);
	border-radius: var(--bt-radius-pill);
	font-size: var(--bt-text-xs);
	font-weight: 800;
	letter-spacing: 0.04em;
}

.bt-status--warn {
	background: var(--bt-accent-soft);
	color: var(--bt-accent-dark);
}

.bt-last-call__link {
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--bt-accent);
}

.bt-last-call__cta {
	margin-top: var(--bt-space-4);
	text-align: center;
}

/* ════════════════════════ 66. SEO LİNK BLOKLARI ═══════════════════ */

.bt-seo-links__grid {
	display: grid;
	gap: var(--bt-space-4) var(--bt-space-5);
}

.bt-seo-links__label {
	margin: 0 0 var(--bt-space-2);
	font-size: var(--bt-text-md);
	color: var(--bt-primary);
}

.bt-seo-links__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-1);
}

.bt-seo-links__list a {
	font-size: var(--bt-text-sm);
	color: var(--bt-muted);
}

.bt-seo-links__list a:hover {
	color: var(--bt-accent);
}

/* ════════════════════════ 67. İSTATİSTİK BANDI ════════════════════ */

.bt-stats-band__intro {
	max-width: 640px;
	margin: 0 auto var(--bt-space-5);
	text-align: center;
	font-size: var(--bt-text-md);
	color: var(--bt-muted);
}

/* ════════════════════════ 68. GÜVEN ŞERİDİ ════════════════════════ */

.bt-trust-strip {
	padding: var(--bt-space-5) 0;
	background: var(--bt-surface);
	border-top: 1px solid var(--bt-border);
}

.bt-trust-strip__grid {
	display: grid;
	gap: var(--bt-space-3);
}

.bt-trust-strip__item {
	display: flex;
	align-items: flex-start;
	gap: var(--bt-space-2);
}

.bt-trust-strip__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--bt-success-soft);
	color: var(--bt-success);
	font-weight: 800;
}

.bt-trust-strip__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: var(--bt-text-xs);
	color: var(--bt-muted);
}

.bt-trust-strip__body strong {
	font-size: var(--bt-text-sm);
	color: var(--bt-ink);
}

/* ════════════════════════ 69. KEŞİF BANDI ═════════════════════════ */

.bt-discover__band {
	display: grid;
	gap: var(--bt-space-5);
	align-items: center;
	padding: var(--bt-space-6);
	border-radius: var(--bt-radius-xl);
	background:
		radial-gradient(circle at 85% 20%, rgba(224, 130, 63, 0.3) 0, rgba(224, 130, 63, 0) 50%),
		linear-gradient(135deg, var(--bt-g-avrupa-a), var(--bt-g-balkan-b));
	color: var(--bt-surface);
}

.bt-discover__eyebrow {
	margin: 0 0 var(--bt-space-1);
	font-size: var(--bt-text-xs);
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bt-accent);
}

.bt-discover__title {
	margin: 0 0 var(--bt-space-2);
	color: var(--bt-surface);
}

.bt-discover__text {
	margin: 0 0 var(--bt-space-4);
	max-width: 520px;
	color: rgba(250, 247, 242, 0.85);
}

.bt-discover__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bt-space-2);
}

.bt-discover__visual {
	display: none;
	align-items: center;
	justify-content: center;
}

.bt-discover__globe {
	font-size: 96px;
	filter: drop-shadow(0 12px 24px rgba(33, 48, 58, 0.4));
}

.bt-btn--ghost-light {
	background: transparent;
	border: 1px solid rgba(250, 247, 242, 0.4);
	color: var(--bt-surface);
}

.bt-btn--ghost-light:hover {
	background: rgba(250, 247, 242, 0.1);
	border-color: var(--bt-surface);
	color: var(--bt-surface);
}

/* ════════════════════════ 70. SABİT WIDGET YIĞINI ═════════════════ */

.bt-floating {
	position: fixed;
	right: var(--bt-space-3);
	bottom: var(--bt-space-3);
	z-index: 80;
	display: flex;
	flex-direction: column;
	gap: var(--bt-space-2);
}

.bt-floating__btn {
	display: inline-flex;
	align-items: center;
	gap: var(--bt-space-2);
	min-height: 48px;
	padding: 0 var(--bt-space-3);
	border-radius: var(--bt-radius-pill);
	box-shadow: var(--bt-shadow-lg);
	font-size: var(--bt-text-sm);
	font-weight: 700;
	transition: transform var(--bt-transition);
}

.bt-floating__btn:hover {
	transform: translateY(-2px);
}

.bt-floating__btn--wa {
	background: var(--bt-whatsapp);
	color: var(--bt-surface);
}

.bt-floating__btn--wa:hover {
	background: var(--bt-whatsapp-dark);
	color: var(--bt-surface);
}

.bt-floating__btn--phone {
	background: var(--bt-primary);
	color: var(--bt-surface);
}

.bt-floating__btn--phone:hover {
	color: var(--bt-surface);
}

.bt-floating__btn--form {
	background: var(--bt-bg);
	color: var(--bt-primary);
}

.bt-floating__btn--form:hover {
	color: var(--bt-primary);
}

.bt-floating__label {
	display: none;
}

/* ════════════════════════ 71. FOOTER EKLERİ ═══════════════════════ */

.bt-footer-extras {
	display: grid;
	gap: var(--bt-space-5);
	margin-top: var(--bt-space-6);
	padding-top: var(--bt-space-5);
	border-top: 1px solid rgba(250, 247, 242, 0.12);
}

.bt-footer-extras p {
	margin: 0 0 var(--bt-space-2);
	font-size: var(--bt-text-sm);
	color: rgba(250, 247, 242, 0.7);
}

.bt-app-badge {
	display: inline-flex;
	align-items: center;
	margin-right: var(--bt-space-2);
	padding: var(--bt-space-1) var(--bt-space-3);
	border: 1px solid rgba(250, 247, 242, 0.3);
	border-radius: var(--bt-radius-md);
	font-size: var(--bt-text-xs);
	font-weight: 700;
	color: rgba(250, 247, 242, 0.7);
	cursor: default;
}

/* ════════════════════════ 72. v1.3.0 RESPONSIVE ═══════════════════ */

/* sm: 640px */
@media (min-width: 640px) {

	.bt-advantages__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bt-trust-strip__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bt-seo-links__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bt-footer-extras {
		grid-template-columns: repeat(3, 1fr);
	}

	.bt-floating__label {
		display: inline;
	}
}

/* md: 768px */
@media (min-width: 768px) {

	.bt-hero-search__fields {
		flex-direction: row;
		align-items: stretch;
	}

	.bt-hero-search__field {
		flex: 1;
	}

	.bt-hero-search__field--grow {
		flex: 1.6;
	}

	.bt-hero-search__submit {
		width: auto;
		align-self: center;
	}

	.bt-trust-strip__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.bt-seo-links__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.bt-discover__band {
		grid-template-columns: 1.6fr 1fr;
	}

	.bt-discover__visual {
		display: flex;
	}

	.bt-continent-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* lg: 1024px */
@media (min-width: 1024px) {

	.bt-header-login {
		display: inline-flex;
	}

	.bt-advantages__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.bt-trust-strip__grid {
		grid-template-columns: repeat(6, 1fr);
	}

	.bt-seo-links__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Mobil son çağrı tablosu: kart düzeni */
@media (max-width: 639px) {

	.bt-last-call__table thead {
		display: none;
	}

	.bt-last-call__table tr {
		display: block;
		padding: var(--bt-space-2) 0;
		border-bottom: 1px solid rgba(250, 247, 242, 0.12);
	}

	.bt-last-call__table td {
		display: flex;
		justify-content: space-between;
		gap: var(--bt-space-3);
		padding: var(--bt-space-1) var(--bt-space-3);
		border-bottom: 0;
		white-space: normal;
	}

	.bt-last-call__table td[data-label]::before {
		content: attr(data-label);
		font-size: var(--bt-text-xs);
		font-weight: 700;
		color: rgba(250, 247, 242, 0.55);
	}
}
