/* ── UZSans local fonts ───────────────────────────────────────────── */
@font-face {
	font-family: 'UZSans';
	src: url('../fonts/UZSans-Light.ttf') format('truetype');
	font-weight: 300;
	font-display: swap;
}

@font-face {
	font-family: 'UZSans';
	src: url('../fonts/UZSans-Regular.ttf') format('truetype');
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: 'UZSans';
	src: url('../fonts/UZSans-Medium.ttf') format('truetype');
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: 'UZSans';
	src: url('../fonts/UZSans-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-display: swap;
}

@font-face {
	font-family: 'UZSans';
	src: url('../fonts/UZSans-Bold.ttf') format('truetype');
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: 'UZSans';
	src: url('../fonts/UZSans-Bold.ttf') format('truetype');
	font-weight: 800;
	font-display: swap;
}

@font-face {
	font-family: 'UZSans';
	src: url('../fonts/UZSans-Bold.ttf') format('truetype');
	font-weight: 900;
	font-display: swap;
}

/* ── Reset & Base ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'UZSans', sans-serif;
	background: #f5f5f7;
	color: #0f1f6e;
	overflow-x: hidden;
}

a {
	text-decoration: none;
}

button {
	font-family: inherit;
	cursor: pointer;
}

img {
	display: block;
}

::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: #f5f5f7;
}

::-webkit-scrollbar-thumb {
	background: #c8c8d8;
	border-radius: 3px;
}

/* ── Tokens ───────────────────────────────────────────────────────── */
:root {
	--navy: #0f1f6e;
	--navy-d: #09154f;
	--navy-m: #162580;
	--navy-l: #1e3099;
	--gold: #f5c000;
	--gold-d: #d9ab00;
	--white: #ffffff;
	--off: #f5f5f7;
	--border: #e2e2ee;
	--muted: rgba(15, 31, 110, 0.45);
	--muted-l: rgba(15, 31, 110, 0.18);
}

/* ── Nav ──────────────────────────────────────────────────────────── */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: rgba(9, 21, 79, 0.97);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid transparent;
	transition: border-color .25s;
	height: 60px;
}

.nav.scrolled {
	border-color: rgba(255, 255, 255, 0.08);
}

.nav__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
}

.nav__logo-svg {
	height: 22px;
	width: auto;
	flex-shrink: 0;
}

.nav__logo-sep {
	width: 1px;
	height: 18px;
	background: rgba(255, 255, 255, 0.25);
	flex-shrink: 0;
}

.nav__sub {
	color: rgba(255, 255, 255, 0.5);
	font-size: 11px;
	font-weight: 500;
}

.nav__divider {
	width: 1px;
	height: 24px;
	background: rgba(255, 255, 255, 0.12);
	margin: 0 18px;
}

.nav__links {
	display: flex;
	gap: 24px;
}

.nav__links a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: 500;
	transition: color .15s;
}

.nav__links a:hover {
	color: #fff;
}

.nav__right {
	display: flex;
	align-items: center;
	gap: 12px;
}

.btn-buy {
	background: var(--gold);
	color: var(--navy);
	border: none;
	border-radius: 8px;
	padding: 7px 18px;
	font-weight: 700;
	font-size: 13px;
	transition: background .15s;
}

.btn-buy:hover {
	background: var(--gold-d);
}

/* Hamburger */
.nav__burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	padding: 8px;
}

.nav__burger span {
	width: 22px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: all .2s;
	display: block;
}

.nav__burger.open span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger.open span:nth-child(2) {
	transform: scaleX(0);
}

.nav__burger.open span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

.nav__mobile {
	display: none;
	background: rgba(9, 21, 79, 0.98);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 16px 20px;
}

.nav__mobile.open {
	display: block;
}

.nav__mobile a {
	display: block;
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	font-weight: 600;
	padding: 11px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__mobile a:last-of-type {
	border-bottom: none;
}

.nav__mobile .btn-buy {
	width: 100%;
	margin-top: 16px;
	padding: 12px;
	font-size: 14px;
	border-radius: 8px;
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
	background: linear-gradient(135deg, var(--navy-d) 0%, #162580 60%, #2233aa 100%);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	padding-top: 60px;
}

.hero__content {
	flex: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 24px 80px;
	width: 100%;
}

.hero__breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 24px;
}

.hero__breadcrumb .accent {
	color: var(--gold);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.hero__breadcrumb .sep {
	color: rgba(255, 255, 255, 0.3);
	font-size: 11px;
}

.hero__breadcrumb .curr {
	color: rgba(255, 255, 255, 0.55);
	font-size: 11px;
	font-weight: 500;
}

.hero__title {
	color: #fff;
	font-weight: 900;
	font-size: 56px;
	line-height: 1.06;
	letter-spacing: -.02em;
	text-wrap: balance;
}

.hero__divider {
	width: 48px;
	height: 3px;
	background: var(--gold);
	margin: 20px 0;
}

.hero__desc {
	color: rgba(255, 255, 255, 0.6);
	font-size: 15px;
	line-height: 1.75;
	max-width: 400px;
	margin-bottom: 36px;
}

.hero__stats {
	display: flex;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 36px;
}

.hero__stat {
	flex: 1;
	padding: 14px 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stat:last-child {
	border-right: none;
}

.hero__stat-val {
	color: var(--gold);
	font-weight: 800;
	font-size: 18px;
}

.hero__stat-label {
	color: rgba(255, 255, 255, 0.4);
	font-size: 10px;
	font-weight: 500;
	margin-top: 2px;
	letter-spacing: .04em;
}

.hero__btns {
	display: flex;
	gap: 12px;
}

.btn-primary {
	background: var(--gold);
	color: var(--navy);
	border: none;
	border-radius: 10px;
	padding: 13px 28px;
	font-weight: 800;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 8px 28px rgba(245, 192, 0, 0.35);
	transition: all .15s;
}

.btn-primary:hover {
	background: var(--gold-d);
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	color: rgba(255, 255, 255, 0.8);
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	border-radius: 10px;
	padding: 13px 24px;
	font-weight: 600;
	font-size: 14px;
	transition: all .15s;
}

.btn-outline:hover {
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
}

/* Train image */
.hero__visual {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.hero__train-wrap {
	filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.55));
	animation: floatTrain 4s ease-in-out infinite;
}

.hero__train-wrap img {
	width: 100%;
	max-width: 460px;
}

@keyframes floatTrain {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-14px);
	}
}

.hero__route {
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	gap: 20px;
	color: #fff;
	width: 85%;
}

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

.hero__route-city-label {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.4);
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.hero__route-city-name {
	font-weight: 800;
	font-size: 17px;
	line-height: 1;
}

.hero__route-city-time {
	color: var(--gold);
	font-size: 11px;
	font-weight: 600;
	margin-top: 3px;
}

.hero__route-line {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
}

.hero__route-line .line {
	height: 1px;
	width: 100%;
}

.hero__route-line .line-left {
	background: linear-gradient(90deg, transparent, var(--gold));
}

.hero__route-line .line-right {
	background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__route-dur {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.35);
	font-weight: 500;
}

/* ── Search ───────────────────────────────────────────────────────── */
.search-section {
	position: relative;
	z-index: 10;
	margin-top: -56px;
	margin-bottom: -56px;
	padding: 0 40px;
}

.search-card {
	max-width: 900px;
	margin: 0 auto;
	background: #fff;
	border-radius: 16px;
	padding: 14px 16px 12px;
	box-shadow: 0 8px 40px rgba(9, 21, 79, 0.18);
	border: 1px solid var(--border);
}

.search-tabs {
	display: flex;
	gap: 20px;
	margin-bottom: 10px;
}

.search-tab {
	background: none;
	border: none;
	padding: 0 0 6px;
	font-size: 13px;
	font-weight: 500;
	color: var(--muted);
	border-bottom: 2px solid transparent;
	transition: all .15s;
}

.search-tab.active {
	font-weight: 700;
	color: var(--navy);
	border-color: var(--gold);
}

.search-row {
	display: grid;
	grid-template-columns: 1fr 36px 1fr auto auto;
	align-items: stretch;
}

.search-field {
	border: 1.5px solid var(--border);
	padding: 10px 16px;
	background: #fafafa;
	cursor: text;
}

.search-field:first-child {
	border-radius: 10px 0 0 10px;
	border-right: none;
}

.search-field.dest {
	border-radius: 0;
	border-left: none;
	border-right: none;
}

.search-field.date {
	border-radius: 0 10px 10px 0;
	border-left: none;
	min-width: 160px;
}

.search-field-label {
	font-size: 10px;
	color: var(--muted);
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: 3px;
}

.search-field-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.search-field-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--navy);
	flex-shrink: 0;
}

.search-field-dot.hollow {
	background: transparent;
	border: 2px solid var(--navy);
}

.search-field input {
	border: none;
	background: transparent;
	font-family: inherit;
	font-weight: 700;
	font-size: 15px;
	color: var(--navy);
	outline: none;
	width: 100%;
}

.search-field-hint {
	font-size: 10px;
	color: var(--muted-l);
	margin-top: 4px;
}

.search-date-val {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 14px;
	color: var(--navy);
}

.search-swap {
	width: 36px;
	border: 1.5px solid var(--border);
	border-left: none;
	border-right: none;
	background: #fff;
	color: var(--navy);
	transition: background .15s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-swap:hover {
	background: var(--off);
}

.search-btn {
	background: var(--navy);
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 0 28px;
	height: 56px;
	font-weight: 800;
	font-size: 15px;
	margin-left: 8px;
	box-shadow: 0 4px 16px rgba(9, 21, 79, 0.25);
	transition: background .15s;
	white-space: nowrap;
}

.search-btn:hover {
	background: var(--navy-l);
}

/* Dropdown */
.search-dest-wrap {
	position: relative;
}

.search-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	z-index: 200;
	background: #fff;
	border-radius: 12px;
	border: 1px solid var(--border);
	box-shadow: 0 12px 40px rgba(9, 21, 79, 0.14);
	overflow: hidden;
}

.search-dropdown.open {
	display: block;
}

.search-dropdown-item {
	padding: 10px 16px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	color: var(--navy);
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid var(--border);
	transition: background .1s;
}

.search-dropdown-item:last-child {
	border-bottom: none;
}

.search-dropdown-item:hover {
	background: #f5f5f7;
}

/* ── Section header ───────────────────────────────────────────────── */
.section-title {
	font-weight: 900;
	font-size: 30px;
	color: var(--navy);
	margin-bottom: 8px;
}

.section-divider {
	width: 44px;
	height: 2.5px;
	background: var(--gold);
}

/* ── Schedule ─────────────────────────────────────────────────────── */
.schedule-section {
	background: var(--off);
	padding: 112px 24px 72px;
}

.schedule-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 32px;
}

.schedule-updated {
	font-size: 11px;
	color: var(--muted);
	font-weight: 500;
}

.boards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.board {
	background: #0a1240;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.07);
}

.board-header {
	background: rgba(255, 255, 255, 0.04);
	padding: 12px 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.board-type {
	font-size: 14px;
}

.board-type.dep {
	color: #f5c000;
}

.board-type.arr {
	color: #7ab4ff;
}

.board-title {
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.board-cols {
	display: grid;
	grid-template-columns: 48px 1fr 72px 44px;
	padding: 7px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.board-col-label {
	color: rgba(255, 255, 255, 0.28);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.board-row {
	display: grid;
	grid-template-columns: 48px 1fr 72px 44px;
	padding: 10px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	cursor: pointer;
	transition: background .12s;
}

.board-row:hover {
	background: rgba(255, 255, 255, 0.04);
}

.board-row.first {
	background: rgba(245, 192, 0, 0.05);
}

.board-num {
	color: #f5c000;
	font-weight: 700;
	font-size: 13px;
}

.board-route {
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	font-weight: 500;
}

.board-time {
	display: flex;
	align-items: center;
	gap: 5px;
}

.board-time-val {
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	font-variant-numeric: tabular-nums;
}

.board-delay {
	font-size: 8px;
	font-weight: 700;
	padding: 2px 5px;
	border-radius: 4px;
}

.board-delay.warn {
	background: rgba(245, 192, 0, 0.18);
	color: #f5c000;
}

.board-delay.err {
	background: rgba(229, 57, 53, 0.2);
	color: #ef9a9a;
}

.board-track {
	color: rgba(255, 255, 255, 0.4);
	font-size: 13px;
	font-weight: 600;
}

.board-more {
	padding: 10px 18px;
	text-align: right;
}

.board-more a {
	color: #f5c000;
	font-size: 11px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

/* ── Services ─────────────────────────────────────────────────────── */
.services-section {
	background: #fff;
	padding: 72px 24px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 40px;
}

.service-card {
	background: var(--off);
	border-radius: 12px;
	padding: 22px;
	border: 1px solid var(--border);
	transition: all .18s;
	cursor: default;
}

.service-card:hover {
	background: #fff;
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(15, 31, 110, 0.1);
}

.service-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(15, 31, 110, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	color: var(--navy);
}

.service-title {
	font-weight: 700;
	font-size: 14px;
	color: var(--navy);
	margin-bottom: 5px;
}

.service-desc {
	color: var(--muted);
	font-size: 12px;
	line-height: 1.6;
}

.services-footer {
	margin-top: 28px;
	display: flex;
	align-items: center;
	gap: 18px;
}

.btn-secondary {
	background: var(--navy);
	color: #fff;
	border: none;
	border-radius: 9px;
	padding: 12px 24px;
	font-weight: 700;
	font-size: 13px;
	transition: background .15s;
}

.btn-secondary:hover {
	background: var(--navy-l);
}

.services-link {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 500;
}

.services-link-line {
	height: 1px;
	width: 60px;
	background: var(--gold);
}

/* ── Booking ──────────────────────────────────────────────────────── */
.booking-section {
	background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy-m) 100%);
	padding: 72px 24px;
}

.booking-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

.booking-tag {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.booking-tag-line {
	width: 24px;
	height: 2px;
	background: var(--gold);
}

.booking-tag-text {
	color: var(--gold);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.booking-title {
	color: #fff;
	font-weight: 900;
	font-size: 38px;
	line-height: 1.1;
	margin-bottom: 16px;
}

.booking-divider {
	width: 48px;
	height: 2px;
	background: var(--gold);
	margin-bottom: 20px;
}

.booking-desc {
	color: rgba(255, 255, 255, 0.55);
	font-size: 13px;
	line-height: 1.75;
	margin-bottom: 28px;
}

.room-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 32px;
}

.room-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 11px 16px;
	cursor: pointer;
	transition: all .15s;
}

.room-item:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(245, 192, 0, 0.5);
}

.room-item.selected {
	background: rgba(245, 192, 0, 0.12);
	border-color: rgba(245, 192, 0, 0.7);
	box-shadow: 0 0 0 1px rgba(245, 192, 0, 0.4);
}

.room-item.selected .room-name {
	color: #f5c000;
}

.room-info .room-name {
	color: #fff;
	font-weight: 700;
	font-size: 13px;
}

.room-info .room-meta {
	color: rgba(255, 255, 255, 0.4);
	font-size: 11px;
	margin-top: 1px;
}

.room-price {
	text-align: right;
}

.room-price-val {
	color: var(--gold);
	font-weight: 800;
	font-size: 14px;
}

.room-price-unit {
	color: rgba(255, 255, 255, 0.3);
	font-size: 10px;
}

.cta-bar {
	display: flex;
	align-items: center;
	border-radius: 10px;
	overflow: hidden;
}

.cta-btn {
	background: var(--gold);
	color: var(--navy);
	border: none;
	padding: 14px 28px;
	font-weight: 800;
	font-size: 15px;
	flex-shrink: 0;
	transition: background .15s;
}

.cta-btn:hover {
	background: var(--gold-d);
}

.cta-label {
	flex: 1;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-left: none;
	padding: 14px 20px;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
	font-size: 14px;
}

.cta-label span {
	color: var(--gold);
	font-weight: 900;
}

/* Photo panel */
.booking-photo-wrap {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	height: 420px;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.booking-photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity .3s ease;
}

.booking-photo-wrap.fading .booking-photo-img {
	opacity: 0;
}

.photo-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(9, 21, 79, 0.65) 0%, transparent 55%);
	pointer-events: none;
}

.booking-photo-badge {
	position: absolute;
	bottom: 20px;
	left: 22px;
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	transition: opacity .3s ease;
}

.booking-photo-wrap.fading .booking-photo-badge {
	opacity: 0;
}

.booking-photo-empty {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.2);
	font-size: 13px;
}

/* Carousel controls */
.carousel-prev, .carousel-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: rgba(0,0,0,0.38); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.18); color: #fff;
  width: 38px; height: 38px; border-radius: 50%; padding: 0;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s; flex-shrink: 0;
}
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-prev:hover, .carousel-next:hover { background: rgba(0,0,0,0.65); }
.carousel-dots {
  position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 3;
}
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.38); cursor: pointer; transition: all .25s;
}
.carousel-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }

/* ── Station ──────────────────────────────────────────────────────── */
.station-section {
	background: #fff;
	padding: 88px 24px;
}

.station-wrap {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}

.station-tag {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.station-tag-line {
	width: 24px;
	height: 2px;
	background: var(--gold);
}

.station-tag-text {
	color: var(--gold);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.station-title {
	color: var(--navy);
	font-weight: 900;
	font-size: 38px;
	line-height: 1.1;
	margin-bottom: 16px;
}

.station-divider {
	width: 48px;
	height: 2px;
	background: var(--gold);
	margin-bottom: 20px;
}

.station-desc {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.85;
	margin-bottom: 32px;
}

.station-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: var(--navy);
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 28px;
	box-shadow: 0 8px 32px rgba(15, 31, 110, 0.18);
}

.station-stat {
	padding: 18px 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.station-stat:last-child {
	border-right: none;
}

.station-stat-val {
	color: var(--gold);
	font-size: 26px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 5px;
}

.station-stat-lbl {
	color: rgba(255, 255, 255, 0.4);
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.station-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.station-feature {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 11px 16px;
	background: var(--off);
	border-radius: 10px;
	border: 1px solid var(--border);
	transition: border-color .15s, box-shadow .15s;
}

.station-feature:hover {
	border-color: rgba(15, 31, 110, 0.2);
	box-shadow: 0 2px 12px rgba(15, 31, 110, 0.07);
}

.station-feature-icon {
	font-size: 19px;
	flex-shrink: 0;
	line-height: 1;
}

.station-feature-text {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--navy);
}

.station-photo-col {
	position: relative;
}

.station-photo-col::after {
	content: '';
	position: absolute;
	top: -16px;
	right: -16px;
	width: 75%;
	height: 75%;
	border: 2px solid var(--gold);
	border-radius: 20px;
	opacity: 0.18;
	z-index: 0;
	pointer-events: none;
}

.station-photo-frame {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 32px 80px rgba(15, 31, 110, 0.2);
	z-index: 1;
}

.station-photo-img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
}

.station-photo-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 45%, rgba(9, 21, 79, 0.65) 100%);
}

.station-photo-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 22px 24px;
}

.station-photo-label {
	display: inline-block;
	background: var(--gold);
	color: var(--navy);
	border-radius: 8px;
	padding: 6px 14px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .04em;
}

.station-photo-empty {
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--off);
	border-radius: 20px;
	border: 2px dashed var(--border);
	color: var(--muted);
	font-size: 14px;
	z-index: 1;
	position: relative;
}

/* ── Sights ───────────────────────────────────────────────────────── */
.sights-section {
	background: var(--off);
	padding: 72px 24px;
}

.sights-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 40px;
}

.sights-more {
	font-size: 12px;
	font-weight: 700;
	color: var(--navy);
	display: flex;
	align-items: center;
	gap: 4px;
}

.sights-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.sight-card {
	border-radius: 14px;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid var(--border);
	background: #fff;
	box-shadow: 0 2px 12px rgba(15, 31, 110, 0.07);
	transition: all .2s;
}

.sight-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 40px rgba(15, 31, 110, 0.16);
}

.sight-img {
	height: 160px;
	position: relative;
	overflow: hidden;
}

.sight-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
}

.sight-card:hover .sight-img img {
	transform: scale(1.06);
}

.sight-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 31, 110, 0.3) 0%, transparent 50%);
}

.sight-tag {
	position: absolute;
	top: 8px;
	left: 8px;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(4px);
	border-radius: 20px;
	padding: 3px 10px;
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.sight-body {
	padding: 14px 16px;
}

.sight-name {
	font-weight: 800;
	font-size: 14px;
	color: var(--navy);
	margin-bottom: 4px;
}

.sight-desc {
	color: var(--muted);
	font-size: 12px;
	line-height: 1.5;
}

/* Sights popup */
.sights-popup-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(9,21,79,0.72); backdrop-filter: blur(10px);
  align-items: center; justify-content: center; padding: 20px;
}
.sights-popup-overlay.open { display: flex; }
.sights-popup {
  background: #fff; border-radius: 20px; overflow: hidden;
  max-width: 520px; width: 100%;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  max-height: 88vh; display: flex; flex-direction: column;
  animation: popup-in .22s ease;
}
@keyframes popup-in {
  from { opacity: 0; transform: scale(.94) translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.sights-popup__img-wrap { position: relative; height: 250px; flex-shrink: 0; }
.sights-popup__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sights-popup__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(9,21,79,0.5) 100%);
}
.sights-popup__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,0.45); border: none; color: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.sights-popup__close:hover { background: rgba(0,0,0,0.7); }
.sights-popup__tag {
  position: absolute; bottom: 14px; left: 16px; z-index: 2;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(4px);
  border-radius: 20px; padding: 4px 12px;
  color: #fff; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
}
.sights-popup__body { padding: 24px 28px 28px; overflow-y: auto; flex: 1; }
.sights-popup__name {
  color: var(--navy); font-size: 22px; font-weight: 900;
  line-height: 1.15; margin-bottom: 12px;
}
.sights-popup__desc {
  color: var(--muted); font-size: 14px; line-height: 1.75; margin-bottom: 0;
}
.sights-popup__full-desc {
  color: rgba(15,31,110,0.55); font-size: 13px; line-height: 1.8;
  margin-top: 10px; margin-bottom: 20px;
}
.sights-popup__link {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold); color: var(--navy);
  border-radius: 10px; padding: 11px 20px;
  font-weight: 800; font-size: 13px;
  transition: background .15s;
}
.sights-popup__link:hover { background: var(--gold-d); }
@media (max-width: 480px) {
  .sights-popup { border-radius: 16px; }
  .sights-popup__body { padding: 18px 20px 24px; }
  .sights-popup__name { font-size: 18px; }
}

/* ── Footer ───────────────────────────────────────────────────────── */
.footer {
	background: var(--navy-d);
	padding: 56px 24px 28px;
	color: rgba(255, 255, 255, 0.6);
}

.footer__grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 40px;
}

.footer__logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	color: #fff;
}

.footer__logo-svg {
	height: 22px;
	width: auto;
	flex-shrink: 0;
}

.footer__brand-sub {
	color: rgba(255, 255, 255, 0.4);
	font-size: 11px;
	font-weight: 500;
	margin-top: 1px;
}

.footer__desc {
	font-size: 12px;
	line-height: 1.85;
	max-width: 260px;
}

.footer__col-title {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.footer__col-item {
	font-size: 12px;
	margin-bottom: 9px;
	line-height: 1.5;
}

.footer__col-link {
	color: rgba(255, 255, 255, 0.55);
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color .15s;
}

.footer__col-link:hover {
	color: var(--gold);
}

.footer__bottom {
	max-width: 1200px;
	margin: 0 auto;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer__copy {
	font-size: 11px;
}

.footer__links {
	display: flex;
	gap: 20px;
}

.footer__links a {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.4);
	transition: color .15s;
}

.footer__links a:hover {
	color: #fff;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
	}
}

@media (max-width: 768px) {

	.nav__links,
	.nav__divider {
		display: none;
	}

	.nav__burger {
		display: flex;
	}

	.nav__inner {
		padding: 0 16px;
	}

	.hero__content {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 32px 16px 80px;
	}

	.hero__visual {
		display: none;
	}

	.hero__title {
		font-size: 36px;
	}

	.search-section {
		padding: 0 12px;
	}

	.search-row {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.search-field:first-child {
		border-radius: 10px;
		border-right: 1.5px solid var(--border);
	}

	.search-field.dest {
		border-radius: 10px;
		border-left: 1.5px solid var(--border);
		border-right: 1.5px solid var(--border);
	}

	.search-field.date {
		border-radius: 10px;
		border-left: 1.5px solid var(--border);
	}

	.search-swap {
		display: none;
	}

	.search-btn {
		border-radius: 10px;
		padding: 13px;
		height: auto;
		margin-left: 0;
	}

	.schedule-section {
		padding: 88px 16px 48px;
	}

	.schedule-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.boards {
		grid-template-columns: 1fr;
	}

	.services-section {
		padding: 48px 16px;
	}

	.services-grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.station-section {
		padding: 56px 16px;
	}

	.station-wrap {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.station-title {
		font-size: 28px;
	}

	.station-photo-img {
		height: 300px;
	}

	.station-photo-empty {
		height: 300px;
	}

	.station-photo-col::after {
		display: none;
	}

	.station-photo-col {
		order: -1;
	}

	.booking-section {
		padding: 48px 16px;
	}

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

	.booking-title {
		font-size: 28px;
	}

	.sights-section {
		padding: 48px 16px;
	}

	.sights-grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.sight-img {
		height: 110px;
	}

	.section-title {
		font-size: 22px;
	}

	.sights-header {
		margin-bottom: 24px;
	}

	.footer {
		padding: 40px 16px 28px;
	}

	.footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	.footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

/* ── Booking popup ─────────────────────────────────────────────────── */
.booking-popup-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(9, 21, 79, 0.6);
	backdrop-filter: blur(6px);
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.booking-popup-overlay.open {
	display: flex;
}

.booking-popup {
	background: #fff;
	border-radius: 16px;
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 24px 64px rgba(9, 21, 79, 0.35);
	animation: popupIn .22s ease;
}

@keyframes popupIn {
	from {
		opacity: 0;
		transform: translateY(16px) scale(.97);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.booking-popup__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f0f2fa;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0f1f6e;
	cursor: pointer;
	transition: background .15s;
	z-index: 1;
}

.booking-popup__close:hover {
	background: #e0e4f4;
}

.booking-popup__head {
	background: linear-gradient(135deg, #09154f 0%, #162580 100%);
	border-radius: 16px 16px 0 0;
	padding: 28px 28px 22px;
}

.booking-popup__title {
	color: rgba(255, 255, 255, 0.55);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.booking-popup__room-name {
	color: #fff;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.2;
}

.booking-popup__body {
	padding: 24px 28px 28px;
}

.booking-popup__no-form {
	font-size: 13px;
	color: #888;
	text-align: center;
	padding: 20px 0;
}

/* CF7 form overrides inside popup */
.booking-popup__body .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* p tags are layout wrappers — strip their default styling */
.booking-popup__body .wpcf7-form>p,
.booking-popup__body .cf7-row p {
	margin: 0;
	display: contents;
}

/* Two-column rows: the <p> inside .cf7-row is the grid parent */
.booking-popup__body .cf7-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.booking-popup__body .cf7-row p {
	display: contents;
}

.booking-popup__body .cf7-row p br {
	display: none;
}

/* Wrap each control so it fills its grid cell */
.booking-popup__body .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

/* Base input / textarea */
.booking-popup__body .wpcf7-form input[type="text"],
.booking-popup__body .wpcf7-form input[type="email"],
.booking-popup__body .wpcf7-form input[type="tel"],
.booking-popup__body .wpcf7-form input[type="date"],
.booking-popup__body .wpcf7-form textarea,
.booking-popup__body .wpcf7-form select {
	display: block;
	width: 100%;
	box-sizing: border-box;
	height: 46px;
	padding: 0 14px;
	border: 1.5px solid #dde1f0;
	border-radius: 10px;
	background: #f7f8fc;
	font-family: 'UZSans', sans-serif;
	font-size: 13.5px;
	color: #0f1f6e;
	outline: none;
	transition: border-color .18s, box-shadow .18s, background .18s;
}

.booking-popup__body .wpcf7-form input::placeholder,
.booking-popup__body .wpcf7-form textarea::placeholder {
	color: #a0a8c8;
	font-weight: 400;
}

.booking-popup__body .wpcf7-form input:focus,
.booking-popup__body .wpcf7-form textarea:focus {
	border-color: #0f1f6e;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(15, 31, 110, 0.08);
}

.booking-popup__body .wpcf7-form input[aria-invalid="true"],
.booking-popup__body .wpcf7-form textarea[aria-invalid="true"] {
	border-color: #e53935;
	background: #fff8f8;
}

/* Textarea */
.booking-popup__body .wpcf7-form textarea {
	height: auto;
	min-height: 88px;
	padding: 12px 14px;
	resize: vertical;
	line-height: 1.5;
}

/* Date inputs — fix native appearance */
.booking-popup__body .wpcf7-form input[type="date"] {
	color-scheme: light;
}

/* Submit button */
.booking-popup__body .wpcf7-form p:has(> [type="submit"]) {
	display: block;
	margin-top: 4px;
}

.booking-popup__body .wpcf7-form input[type="submit"],
.booking-popup__body .wpcf7-form .wpcf7-submit {
	display: block;
	width: 100%;
	height: 48px;
	background: var(--gold);
	color: var(--navy);
	border: none;
	border-radius: 10px;
	font-family: 'UZSans', sans-serif;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: .01em;
	cursor: pointer;
	transition: background .15s, transform .1s;
}

.booking-popup__body .wpcf7-form input[type="submit"]:hover {
	background: var(--gold-d);
}

.booking-popup__body .wpcf7-form input[type="submit"]:active {
	transform: scale(.98);
}

/* Spinner */
.booking-popup__body .wpcf7-spinner {
	display: inline-block;
	vertical-align: middle;
	margin-left: 8px;
}

/* Validation tip */
.booking-popup__body .wpcf7-not-valid-tip {
	display: block;
	color: #e53935;
	font-size: 11px;
	margin-top: 4px;
	padding-left: 2px;
}

/* Response output */
.booking-popup__body .wpcf7-response-output {
	border-radius: 10px;
	padding: 11px 14px;
	font-size: 13px;
	font-weight: 600;
	margin-top: 2px;
	border: 1.5px solid transparent;
}

.booking-popup__body .wpcf7-mail-sent-ok {
	background: #edf7ee;
	border-color: #a5d6a7;
	color: #2e7d32;
}

.booking-popup__body .wpcf7-validation-errors,
.booking-popup__body .wpcf7-acceptance-missing {
	background: #fff4e5;
	border-color: #ffcc80;
	color: #b45309;
}

@media (max-width: 480px) {
	.booking-popup__body .cf7-row {
		grid-template-columns: 1fr;
	}

	.station-stats {
		grid-template-columns: 1fr;
	}

	.station-stat {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.station-stat:last-child {
		border-bottom: none;
	}
}