@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@600;700;800&family=PT+Serif:ital,wght@0,400;0,700;1,400&display=swap");

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--blue: #1f5fbf;
	--blue-dark: #1a4fa0;
	--blue-light: #eaf2ff;
	--red: #d94141;
	--red-war: #9b1b1f;
	--red-dark: #88161a;
	--text: #2f343b;
	--muted: #6b7280;
	--border: #e6eaf0;
	--white-96: rgba(255, 255, 255, 0.96);
	--shadow-card: 0 4px 14px rgba(28, 39, 64, 0.06);
	--shadow-lg: 0 12px 28px rgba(28, 39, 64, 0.08);
	--radius-lg: 28px;
	--radius-md: 20px;
	--radius-sm: 18px;
	--pad-x: 60px;
}

html,
body {
	width: 1080px;
	height: 1920px;
	overflow: hidden;
	font-family: "Inter", "Segoe UI", sans-serif;
	color: var(--text);
	background: #fff;
	-webkit-font-smoothing: antialiased;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

a {
	color: inherit;
	text-decoration: none;
}

.kiosk {
	position: relative;
	width: 1080px;
	height: 1920px;
	overflow: hidden;
}

.kiosk__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	z-index: 0;
}

.kiosk__content {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 56px var(--pad-x) 36px;
}

.kiosk__content--scroll {
	overflow: hidden;
}

.kiosk__scroll {
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	margin: 0 calc(var(--pad-x) * -1);
	padding: 0 var(--pad-x);
	scrollbar-width: none;
}

.kiosk__scroll::-webkit-scrollbar {
	display: none;
}

.top-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
	flex-shrink: 0;
}

.city-badge {
	display: flex;
	align-items: center;
	gap: 14px;
	height: 60px;
	padding: 0 22px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(31, 95, 191, 0.08);
	border-radius: 999px;
	box-shadow: 0 1px 2px rgba(28, 39, 64, 0.05);
	backdrop-filter: blur(4px);
	font-family: "Manrope", sans-serif;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.22px;
}

.city-badge__dot {
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background: linear-gradient(135deg, #1f5fbf, #d94141);
	box-shadow: 0 0 0 4px rgba(31, 95, 191, 0.1);
	flex-shrink: 0;
}

.clock-box {
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: center;
	height: 73px;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(31, 95, 191, 0.08);
	border-radius: 18px;
	box-shadow: 0 1px 2px rgba(28, 39, 64, 0.05);
	backdrop-filter: blur(4px);
}

.clock-box__time {
	font-family: "Manrope", sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
}

.clock-box__date {
	font-size: 14px;
	color: var(--muted);
	margin-top: 4px;
	text-transform: lowercase;
}

.sub-nav {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 35px;
	flex-shrink: 0;
}

.sub-nav--center {
	justify-content: center;
	position: relative;
}

.sub-nav--center .back-btn {
	position: absolute;
	left: 0;
}

.back-btn {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(31, 95, 191, 0.1);
	border-radius: 18px;
	box-shadow: 0 1px 2px rgba(28, 39, 64, 0.05);
	backdrop-filter: blur(5px);
	flex-shrink: 0;
	transition: transform 0.12s;
}

.back-btn:active {
	transform: scale(0.95);
}

.back-btn svg {
	width: 26px;
	height: 26px;
	color: var(--text);
}

.back-btn--text {
	width: auto;
	height: 52px;
	padding: 0 20px 0 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--border);
	gap: 6px;
	font-size: 16px;
	font-weight: 600;
}

.back-btn--text svg {
	width: 20px;
	height: 20px;
}

.back-btn--war {
	background: rgba(254, 250, 240, 0.92);
	border-color: rgba(155, 27, 31, 0.22);
}

.page-title {
	flex: 1;
	text-align: center;
	padding: 12px 35px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(31, 95, 191, 0.12);
	border-radius: 22px;
	box-shadow:
		0 14px 36px rgba(15, 23, 42, 0.1),
		0 4px 10px rgba(15, 23, 42, 0.05);
	backdrop-filter: blur(7px);
	font-family: "Manrope", sans-serif;
	font-size: 34px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 1.1;
	max-width: fit-content;
}

.page-title span {
	color: var(--blue);
}

.page-title--war {
	background: rgba(254, 250, 240, 0.75);
	border-color: rgba(155, 27, 31, 0.24);
	box-shadow: 0 14px 36px rgba(74, 36, 12, 0.14);
}

.page-title--war .accent {
	color: var(--red-war);
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 52px;
	padding: 0 22px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 14px;
	flex-shrink: 0;
}

.breadcrumb a {
	color: var(--muted);
	font-weight: 600;
}

.breadcrumb__sep {
	color: var(--muted);
	opacity: 0.5;
}

.breadcrumb__current {
	font-weight: 600;
}

.home-footer-wrap {
	width: 100%;
	margin-top: auto;
}

.bottom-cards {
	display: grid;
	grid-template-columns: 1fr 1fr 1.45fr;
	gap: 22px;
	flex-shrink: 0;
}

.bottom-card {
	background: var(--white-96);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.12s;
	gap: 20px;
}

.bottom-card:active {
	transform: scale(0.98);
}

.bottom-card__top {
	display: flex;
	align-items: center;
	gap: 16px;
}

.bottom-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.bottom-card__icon--gray {
	background: #f4f6f8;
}

.bottom-card__icon--blue {
	background: var(--blue-light);
}

.bottom-card__icon svg {
	width: 28px;
	height: 28px;
}

.bottom-card__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.68px;
	text-transform: uppercase;
	color: var(--muted);
	line-height: 1.3;
}

.bottom-card__title {
	font-family: "Manrope", sans-serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.11px;
	line-height: 1.2;
	margin-top: 8px;
}

.bottom-card__sub {
	font-size: 13px;
	color: var(--muted);
	margin-top: 4px;
}

.bottom-card--contact {
	background: linear-gradient(135deg, #1f5fbf, #1a4fa0);
	border: none;
	box-shadow: 0 22px 48px rgba(31, 95, 191, 0.3);
	color: #fff;
}

.bottom-card--contact-war {
	background: linear-gradient(135deg, var(--red-war), var(--red-dark));
	box-shadow: 0 22px 48px rgba(136, 22, 26, 0.3);
}

.bottom-card--contact .bottom-card__label {
	color: rgba(255, 255, 255, 0.78);
}

.bottom-card--contact .bottom-card__icon {
	background: rgba(255, 255, 255, 0.18);
}

.bottom-card--contact .bottom-card__icon svg {
	color: #fff;
}

.contact-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 8px;
	align-items: center;
}

.contact-row__phone {
	font-family: "Manrope", sans-serif;
	font-size: 22px;
	font-weight: 700;
}

.contact-row__email {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 4px;
}

.socials {
	display: flex;
	gap: 8px;
}

.socials a,
.socials span {
	width: 33px;
	height: 33px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
}

.socials svg {
	width: 16px;
	height: 16px;
	fill: #fff;
}

.site-footer {
	border-top: 1px solid var(--border);
	margin-top: 35px;
	text-align: center;
	font-size: 14px;
	flex-shrink: 0;
}

.site-footer strong {
	font-weight: 600;
}

.site-footer span {
	color: var(--muted);
}

.site-footer .dot {
	color: #97a0ad;
	margin: 0 15px;
}

.badge-pill {
	display: inline-flex;
	align-items: center;
	height: 33px;
	padding: 0 16px;
	background: var(--blue-light);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2.52px;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 16px;
}

.badge-pill--war {
	background: rgba(136, 22, 26, 0.05);
	color: var(--red-dark);
}

.gradient-text {
	background: linear-gradient(120deg, #1f5fbf, #d94141);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.card-link:active {
	transform: scale(0.98);
}

.card-link {
	transition: transform 0.12s;
}
