/* ============================================================
   AMOLAB Travel — Modern Design System
   Brand: #139fd4 / #FE846D preserved for widget harmony
   ============================================================ */

:root {
	--primary: #0ea5e9;
	--primary-dark: #0284c7;
	--primary-light: #e0f2fe;
	--accent: #f97316;
	--accent-dark: #ea580c;
	--accent-light: #fff7ed;
	--bg: #f8fafc;
	--surface: #ffffff;
	--text: #0f172a;
	--text-secondary: #475569;
	--text-muted: #94a3b8;
	--border: #e2e8f0;
	--radius-sm: 8px;
	--radius: 12px;
	--radius-lg: 20px;
	--radius-full: 9999px;
	--shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
	--shadow: 0 4px 16px rgba(0,0,0,.08);
	--shadow-lg: 0 20px 50px -12px rgba(0,0,0,.18);
	--header-h: 64px;
	--transition: .2s ease;
	--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	text-decoration: none;
}

ol, ul { list-style: none; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--font);
	overflow-y: scroll;
	letter-spacing: 0;
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
	background: rgba(148,163,184,.4);
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Typography */
h2 { font-size: 1.125rem; font-weight: 600; }
h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text);
	text-transform: none;
	text-align: center;
	letter-spacing: -.02em;
}
h4 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--primary);
	text-transform: none;
	text-align: center;
}
h3, h4, h5, h6 { margin: 0; padding: 0; font-weight: 600; }
strong { font-weight: 600; text-transform: none; }

/* Preloader — временно отключён */
#preloader {
	display: none !important;
	position: fixed;
	z-index: 99999999;
	background: var(--surface);
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}
#preloader .icon {
	width: 48px;
	height: 48px;
	animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: .5; transform: scale(.92); }
}

/* Layout */
.container {
	position: relative;
	max-width: 1140px;
	padding: 0 24px;
	margin: 0 auto;
}

.zag { max-width: fit-content; margin: auto; }
.zag h3 { text-align: center; margin-left: 0; }
.subtitle {
	color: var(--text-muted);
	margin: 12px 0 40px;
	text-align: center;
	font-size: .9375rem;
}

/* Header */
.whitefix {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 999;
}

.fixtop {
	background: rgba(255,255,255,.82);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: var(--shadow-sm);
	height: var(--header-h);
	border-bottom: 1px solid var(--border);
	transition: background var(--transition), box-shadow var(--transition);
}

.fixtop > .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	padding: 0 24px;
	height: var(--header-h);
	gap: 16px;
}

.header-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.header-logo__img {
	height: 36px;
	width: 120px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
}

.top-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
	letter-spacing: 0;
}

.top-menu > a {
	color: var(--text-secondary);
	font-size: .8125rem;
	font-weight: 500;
	padding: 6px 12px;
	border-radius: var(--radius-full);
	border-bottom: none;
	text-transform: none;
	transition: color var(--transition), background var(--transition);
	white-space: nowrap;
}

.top-menu > a:hover {
	color: var(--primary);
	background: var(--primary-light);
	border-bottom: none;
}

.top-menu > a.active {
	color: var(--primary);
	background: var(--primary-light);
	font-weight: 600;
	pointer-events: none;
}

.top-menu > a > sup {
	font-size: .625rem;
	margin-left: 4px;
	vertical-align: super;
}

.top-button {
	display: flex;
	align-items: center;
	gap: 8px;
	opacity: .85;
	flex-shrink: 0;
}

.app-link {
	position: relative;
	width: 28px;
	height: 28px;
	margin-left: 0;
	border-radius: var(--radius-sm);
	transition: opacity var(--transition), transform var(--transition);
}
.app-link:hover { opacity: 1; transform: translateY(-1px); }
.app-link, .app-link:active, .app-link:focus, .app-link:hover { color: #fff; }

.app-link::after {
	content: '';
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	width: 28px;
	height: 28px;
	background-size: contain;
	background-repeat: no-repeat;
	transition: opacity .3s;
}

.app-link.\--whatsapp::after { background-image: url(/img/social-whatsapp.png); }
.app-link.\--viber::after { background-image: url(/img/social-viber.png); }
.app-link.\--telegram::after { background-image: url(/img/social-telegram.png); }
.app-link.\--youtube::after { background-image: url(/img/social-youtube.png); }
.app-link.\--in::after { background-image: url(/img/social-instagram.png); }
.app-link.\--vk::after { background-image: url(/img/social-vk.png); }
.app-link.\--fb::after { background-image: url(/img/social-facebook.png); }
.app-link.\--ok::after { background-image: url(/img/social-ok.png); }
.app-link.\--zen::after { background-image: url(/img/social-zen.png); }
.app-link.\--ios::after { background-image: url(/img/social-ios.png); }
.app-link.\--android::after { background-image: url(/img/social-android.png); }
.app-link.\--googleplay::after { background-image: url(/img/social-googleplay.png); }
.app-link.\--rustore::after { background-image: url(/img/social-rustore.png); }
.app-link.\--scam::after { background-image: url(/img/social-scam.png); }

.navbar-toggle {
	padding: 8px;
	margin-left: -8px;
	background: none;
	border: none;
	display: none;
	cursor: pointer;
	border-radius: var(--radius-sm);
}
.navbar-toggle:hover { background: var(--bg); }
.navbar-toggle .icon-bar {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: var(--text);
	margin-top: 5px;
	transition: var(--transition);
}
.navbar-toggle .icon-bar:first-child { margin-top: 0; }

.mobile { display: flex; align-items: center; }

/* Hero */
.back-present {
	position: relative;
	z-index: 9;
	background-size: cover;
	background-position: center;
	margin-top: var(--header-h);
	min-height: calc(100vh - var(--header-h));
	min-height: calc(100dvh - var(--header-h));
	display: flex;
	align-items: center;
}

.back-present::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		160deg,
		rgba(14,165,233,.12) 0%,
		rgba(248,250,252,.88) 45%,
		rgba(255,247,237,.6) 100%
	);
	z-index: 0;
}

.present {
	position: relative;
	z-index: 1;
	padding: 48px 0 64px;
	text-align: center;
	color: var(--text);
	background: transparent;
	width: 100%;
}

.present_logo {
	text-transform: none;
	margin: 0 0 32px;
	color: var(--text);
	font-size: .9375rem;
	font-weight: 400;
}

.logo_img {
	height: 64px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: 16px;
}

.logo_text {
	margin-bottom: 8px;
	color: var(--text-muted);
	font-size: .875rem;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.logo_host {
	color: var(--text);
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: -.03em;
}

.present h1 {
	font-size: clamp(.875rem, 2vw, 1rem);
	font-weight: 500;
	color: var(--text-secondary);
	line-height: 1.5;
	max-width: 600px;
	margin: 0 auto;
}

/* Search card */
.present__form {
	margin: 0 auto 32px;
	max-width: 920px;
	background: var(--surface);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 8px;
	border: 1px solid var(--border);
}

.search-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 8px;
	border: 1px solid var(--border);
}

.form_load {
	box-shadow: none;
	border-radius: var(--radius);
	overflow: hidden;
}

/* Service tabs */
nav.tabs { margin-bottom: 0; }

ul.tabs_list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px;
	padding: 4px;
	background: var(--bg);
	border-radius: var(--radius);
	margin-bottom: 12px;
}

ul.tabs_list > a {
	margin-bottom: 0;
	cursor: pointer;
	flex: 1 1 auto;
	min-width: 0;
}

li.tabs_list_item {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 12px;
	color: var(--text-secondary);
	font-size: .75rem;
	font-weight: 500;
	text-transform: none;
	background: transparent;
	border-radius: var(--radius-sm);
	transition: all var(--transition);
	width: 100%;
	white-space: nowrap;
}

li.tabs_list_item > img {
	width: 18px;
	height: 18px;
	margin-right: 0;
	border-radius: 4px;
	object-fit: contain;
	flex-shrink: 0;
}

.tabs_list_item:hover,
a.active > .tabs_list_item {
	background: var(--surface);
	color: var(--primary);
	box-shadow: var(--shadow-sm);
}

a.active > .tabs_list_item { font-weight: 600; }

.tabs_list > a.active { pointer-events: none; }

/* Stats row */
.present__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

.present__list li {
	padding: 10px 20px;
	background: rgba(255,255,255,.9);
	backdrop-filter: blur(8px);
	box-shadow: var(--shadow-sm);
	border-radius: var(--radius-full);
	color: var(--text);
	width: auto;
	border: 1px solid var(--border);
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.present__list div {
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: none;
	color: var(--primary);
	letter-spacing: -.02em;
}

.avia .present__list div,
.hotels .present__list div { font-size: 1.5rem; }

.present__list strong {
	font-size: .75rem;
	color: var(--text-muted);
	font-weight: 500;
	text-transform: none;
}

/* Promo strip */
.promo {
	box-shadow: none;
	padding: 20px 0;
	position: relative;
	z-index: 8;
	background: var(--surface);
	border-bottom: 1px solid var(--border);
}

.onboard {
	color: var(--text-secondary);
	display: flex;
	margin: auto;
	align-items: center;
	justify-content: center;
	gap: 12px;
	max-width: 700px;
}

.onboard-icon {
	width: 32px;
	height: 32px;
	background: url(/img/shit.svg) no-repeat center;
	background-size: contain;
	flex-shrink: 0;
	opacity: .7;
}

.onboard h2, .onboard-title {
	line-height: 1.5;
	font-size: .9375rem;
	font-weight: 500;
}

.onboard-text {
	text-align: left;
}

.onboard-text .logo_text {
	margin-bottom: 4px;
	text-align: left;
}

/* Sections */
.popular, .calendar, .texter, .hotels-map, .cruizar {
	margin-top: 64px;
	color: var(--text);
	padding-bottom: 16px;
}

.popular__list {
	font-size: 0;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
	gap: 0;
}

.popular__list > li {
	font-size: 1rem;
	width: 33.33%;
	padding: 0 12px;
	margin-bottom: 24px;
	vertical-align: top;
	display: inline-block;
	position: relative;
}

/* Calendar steps */
.cal {
	display: flex;
	align-items: stretch;
	margin: 32px 0;
	gap: 16px;
}

.cal-item {
	flex: 1;
	text-align: center;
	padding: 24px 16px 20px;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--surface);
	transition: box-shadow var(--transition), transform var(--transition);
	margin: 10px 0 0;
}

.cal-item:hover {
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.cal-num {
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 50%;
	margin: -38px auto 12px;
	color: white;
	font-weight: 700;
	font-size: .875rem;
	box-shadow: 0 4px 12px rgba(249,115,22,.35);
}

.insurance .cal-num { margin: -38px auto -6px; }

.cal-img {
	width: 80px;
	height: 80px;
	margin: 12px auto;
}
.insurance .cal-img { width: 120px; }
.cal-img img { width: 100%; height: auto; }

.cal-desc {
	font-size: .8125rem;
	line-height: 1.5;
	color: var(--text-muted);
}

/* Cruise tabs */
.checks {
	display: flex;
	justify-content: center;
	gap: 0;
	margin-bottom: -1px;
}

.checks div {
	background: var(--bg);
	padding: 10px 24px;
	color: var(--text-secondary);
	font-size: .8125rem;
	font-weight: 500;
	border: 1px solid var(--border);
	cursor: pointer;
	transition: all var(--transition);
}

.checks div:first-child { border-radius: var(--radius-sm) 0 0 0; }
.checks div:last-child { border-radius: 0 var(--radius-sm) 0 0; border-left: none; }
.checks div.active {
	background: var(--accent);
	color: white;
	border-color: var(--accent);
}

.onmob, .form_load > div.sea, .form_load > div.river { display: none; }
.form_load > div.active { display: block; }

/* City grid */
.flights_list { margin-top: 48px; }

.flights_list .flights_wrapper {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin: 32px 0;
}

.item_other { display: none; }

.item_other.show {
	display: block;
	border: none;
	border-radius: var(--radius);
	padding: 0;
	overflow: hidden;
}

.item_other_flights {
	width: 100%;
	height: 140px;
	display: flex;
	background-color: #334155 !important;
	background-blend-mode: overlay;
	justify-content: center;
	align-items: center;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	font-weight: 600 !important;
	color: #fff;
	border-radius: var(--radius);
	text-align: center;
	transition: transform var(--transition), box-shadow var(--transition);
	box-shadow: var(--shadow-sm);
}

.item_other_flights:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: var(--shadow-lg);
}

.item_other_flights a {
	font-weight: 600 !important;
	color: #fff;
	padding: 25% 15%;
	font-size: .9375rem;
}

.add_hotels {
	width: fit-content;
	text-transform: none;
	font-size: .875rem;
	font-weight: 600;
	color: #ffffff;
	cursor: pointer;
	border: none;
	padding: 12px 28px;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	border-radius: var(--radius-full);
	margin: 16px auto;
	display: block;
	transition: transform var(--transition), box-shadow var(--transition);
	box-shadow: 0 4px 14px rgba(14,165,233,.35);
}

.add_hotels:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(14,165,233,.45);
}

/* Content blocks */
.fullstat {
	color: var(--text-secondary);
	font-size: .9375rem;
	display: flex;
	max-width: 100%;
	margin: 24px 0;
	gap: 20px;
}

.fullstat > div {
	background: var(--surface);
	border-radius: var(--radius);
	width: 100%;
	padding: 28px;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}

.fullstat.two > div:first-child { margin-right: 0; }

.tflex {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.tzag {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 12px;
	text-transform: none;
	color: var(--text);
	letter-spacing: -.01em;
}

.ttext {
	font-size: .9375rem;
	color: var(--text-muted);
	letter-spacing: 0;
	line-height: 1.7;
}

.ttext.seo { margin-bottom: 40px; }
.texter > .container > .ttext { margin: 20px 0; text-align: center; }
.left { text-align: left !important; }

.ullstat {
	background: var(--surface);
	padding: 24px;
	margin: 20px 0;
	border-radius: var(--radius);
	color: var(--text-secondary);
	border: 1px solid var(--border);
}

.ullstat > div {
	text-transform: none;
	font-size: .9375rem;
	font-weight: 600;
	color: var(--text);
}

.ullstat.norm > div {
	font-size: .8125rem;
	font-weight: 400;
}

.ullstat li {
	margin: 12px 0;
	padding-left: 20px;
	background-image: url(/img/Ellipse.png);
	background-position: left center;
	background-size: 8px;
	background-repeat: no-repeat;
}

.whitestat {
	display: flex;
	justify-content: space-between;
	box-shadow: var(--shadow);
	border-radius: var(--radius);
	margin: 24px 0;
	align-items: center;
	padding: 4px;
	border: 1px solid var(--border);
	background: var(--surface);
}

.whitestat .ttext { padding: 20px; }
span.title { font-size: 1.25rem; color: var(--text); font-weight: 600; }

.map {
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

/* Gallery (insurance) */
.gallery { margin-bottom: 48px; }
.gallery .container > div { overflow: hidden; border-radius: var(--radius); }
.gallery .container .images { display: inline-flex; }
.images > img {
	width: 140px;
	padding: 0 28px;
	height: 36px;
	object-fit: contain;
	filter: grayscale(.3);
	transition: filter var(--transition);
}
.images > img:hover { filter: grayscale(0); }

.icons {
	display: flex;
	width: 90px;
	justify-content: center;
	margin-bottom: 10px;
}

/* Footer */
.footer {
	margin-top: 64px;
	padding: 48px 0 32px;
	color: #94a3b8;
	font-size: .875rem;
	background: #0f172a;
	position: relative;
}

.footer > .container > div {
	display: flex;
	padding: 20px 0;
	border-top: 1px solid rgba(255,255,255,.08);
	justify-content: space-between;
	align-items: center;
	line-height: 1.6;
	gap: 16px;
}

.footer > .container > div.noborder {
	padding: 0 0 32px;
	border-top: none;
	flex-wrap: wrap;
}

.copyright { color: #64748b; }

.license {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}
.license img {
	opacity: .6;
	filter: brightness(2);
	transition: opacity var(--transition);
	height: 28px;
}
.license img:hover { opacity: 1; }

.refs, .blog { margin-left: 0; }

.support, .chatSupport { white-space: nowrap; }

.blog > a, .refs > a, .support > div {
	display: flex;
	align-items: center;
	width: auto;
	max-width: 280px;
	color: #e2e8f0;
	letter-spacing: 0;
	gap: 12px;
	transition: opacity var(--transition);
}

.support > div { width: auto; margin-left: 0; }
.support a { color: var(--primary); }

.blog > a > img, .refs > a > img, .support > div > img {
	margin-right: 0;
	height: 40px;
	min-width: 40px;
	border-radius: var(--radius-sm);
}

.blog > a > span, .refs > a > span, .support > div > span {
	text-align: left;
	color: #94a3b8;
	line-height: 1.5;
	font-size: .8125rem;
}

.support > button, .chatSupport > button {
	border-radius: var(--radius-full);
	border: none;
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	color: white;
	text-transform: none;
	font-size: .8125rem;
	font-weight: 600;
	padding: 0 24px;
	letter-spacing: 0;
	cursor: pointer;
	height: 44px;
	line-height: 44px;
	transition: transform var(--transition), box-shadow var(--transition);
	box-shadow: 0 4px 14px rgba(249,115,22,.3);
}

.support > button:hover, .chatSupport > button:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(249,115,22,.4);
	opacity: 1;
}

.support, .chatSupport, .refs, .blog { opacity: 1; }
.support:hover, .refs:hover, .blog:hover, .chatSupport:hover { opacity: .85; }

.footer > .container > div.coferta {
	justify-content: flex-start;
	font-size: .75rem;
	color: #64748b;
}
.footer > .container > div.coferta a {
	color: var(--primary);
	margin-left: 4px;
}

/* Scroll to top */
.button-up {
	display: none;
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 44px;
	height: 44px;
	cursor: pointer;
	border-radius: 50%;
	z-index: 999998;
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	box-shadow: 0 4px 16px rgba(249,115,22,.4);
	transition: transform var(--transition);
}

.button-up:hover { transform: translateY(-2px); }

.arrow-left, .arrow-right {
	position: absolute;
	top: 17px;
	left: 10px;
	transform: rotate(35deg);
}
.arrow-right { left: 20px; transform: rotate(-35deg); }

.arrow-left::after, .arrow-right::after {
	content: "";
	background-color: #fff;
	width: 14px;
	height: 3px;
	float: right;
	border-radius: 3px 0 0 3px;
	transform-origin: center center;
	transform: rotate(-70deg);
}
.arrow-right::after {
	border-radius: 0 3px 3px 0;
	transform: rotate(70deg);
}

/* Modals */
.over, .overlay {
	top: 0;
	left: 0;
	position: fixed;
	z-index: 99999999;
	background: rgba(15,23,42,.6);
	backdrop-filter: blur(4px);
	width: 100%;
	height: 100%;
	display: none;
}

.subscription {
	background-color: var(--surface);
	z-index: 160;
	width: 100%;
	max-width: 440px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 48px 40px 32px;
	text-align: center;
	margin: 45px auto;
}

.subscription-close {
	background: #ef4444;
	box-shadow: var(--shadow-sm);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	float: right;
	margin: -32px -24px 0 0;
	transition: background var(--transition);
}
.subscription-close:hover { background: #dc2626; }

.subscription-close::before {
	content: "";
	display: block;
	background: url(/img/exit.svg) no-repeat 50%;
	width: 10px;
	height: 10px;
	position: absolute;
	margin: 11px;
}

.subscription-content { display: block; color: var(--text-secondary); }

.subscription-form::before {
	content: "";
	display: block;
	width: 80px;
	height: 80px;
	background: url(/img/form.svg) no-repeat center;
	background-size: contain;
	margin: auto;
}

.subscription-form.before::before { display: none; }

.subscription-result-img {
	margin: -10px auto;
	width: 120px;
	display: none;
}

.subscription-title {
	font-size: 1.125rem;
	text-transform: none;
	font-weight: 700;
	letter-spacing: -.01em;
	text-align: center;
	line-height: 1.4;
	margin: 20px 0 10px;
	color: var(--text);
}

.subscription-info {
	font-size: .875rem;
	text-align: center;
	line-height: 1.6;
	color: var(--text-muted);
}

.subscription-input, .subscription-textarea {
	background-color: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	width: 100%;
	text-align: center;
	margin-top: 12px;
	font-family: var(--font);
	font-size: .9375rem;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.subscription-input {
	height: 48px;
	padding: 0 16px;
}

.subscription-textarea {
	min-width: 100%;
	max-width: 100%;
	min-height: 120px;
	max-height: 120px;
	padding: 12px 16px;
}

.subscription-input:focus, .subscription-textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(14,165,233,.15);
}

.subscription-button {
	background: linear-gradient(135deg, var(--accent), var(--accent-dark));
	border-radius: var(--radius);
	font-size: .8125rem;
	font-weight: 600;
	color: #fff;
	text-align: center;
	display: block;
	width: 100%;
	padding: 14px 0;
	margin-top: 12px;
	border: none;
	box-shadow: 0 4px 14px rgba(249,115,22,.3);
	cursor: pointer;
	transition: transform var(--transition);
}

.subscription-button:hover { transform: translateY(-1px); }

.subscription-bottom-text {
	font-size: .75rem;
	color: var(--text-muted);
	line-height: 1.4;
	margin-top: 16px;
}
.subscription-bottom-text a { color: var(--accent); }

/* Chat widget */
body .buttonChat .icon {
	background-color: var(--accent);
	box-shadow: 0 4px 16px rgba(249,115,22,.35);
}

/* Utility */
.show-xs { display: none !important; }
.hide-xs { display: inline !important; }
.cell { display: table-cell; vertical-align: middle; text-align: center; }
.table { display: table; width: 100%; }
.tooltip { display: none; }

.present__list li, .calendar__list li, .popular__list > li,
[class^="btn-"], [class*=" btn-"],
[class^="icon-"], [class*=" icon-"] {
	vertical-align: top;
	display: inline-block;
	position: relative;
}

.birds, .plane { display: none; }

.mblog { display: none; margin-top: -3px; }
body.blog { margin: 0; }

.cruizar .container .cal { justify-content: center; }
.cruizar .container .cal .cal-desc { margin-top: 12px; }

.footer > .container > .rekviz {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.footer > .container > .rekviz > div { margin-right: 15px; }

.sub.noactive,
.top-button > a:hover,
.top-button > a:focus,
.subscription-block .subscription-button:hover { opacity: 0.85; }

/* SVG icons legacy */
svg[class^='icon-'], svg[class*=' icon-'] { display: inline-block; }
.icon-plain, .icon-deal, .icon-search { fill: #fff; }
.icon-logo { width: 80px; }
.icon-map, .icon-arrows, .icon-calendar, .icon-thumbup, .icon-arrow { fill: var(--primary); }

/* Avia White Label */
.avia-wl .form_load--wl {
	padding: 0;
	background: transparent;
	overflow: visible;
}

.avia-wl .present__form {
	overflow: visible;
}

.avia-wl #tpwl-search {
	min-height: 0;
}

.wl-results {
	background: var(--bg);
	padding: 24px 0 48px;
	border-bottom: 1px solid var(--border);
}

.wl-results:empty,
.wl-results .container:empty {
	display: none;
	padding: 0;
}

.avia-wl #tpwl-tickets {
	min-height: 0;
}

.avia-wl .TPWL-widget .TPWL-template-header {
	display: none !important;
}

.avia-wl .popular {
	margin-top: 48px;
}

.avia-wl.wl-has-results .popular,
.avia-wl.wl-has-results .calendar {
	opacity: .6;
	transition: opacity var(--transition);
}

.avia-wl.wl-has-results .popular:hover,
.avia-wl.wl-has-results .calendar:hover {
	opacity: 1;
}

/* ============================================================
   Hero first screen — WL avia
   ============================================================ */

.avia-wl .hero-screen {
	min-height: auto;
	align-items: stretch;
	background-position: center 30%;
}

/* Override heavy legacy avia overlay — keep photo visible */
.avia-wl .hero-screen::before {
	background: linear-gradient(
		160deg,
		rgba(14, 165, 233, .12) 0%,
		rgba(248, 250, 252, .88) 45%,
		rgba(255, 247, 237, .6) 100%
	) !important;
}

.avia-wl .hero-screen::after {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: .25;
	pointer-events: none;
	z-index: 0;
}

.avia-wl .hero-screen .present {
	padding: 28px 0 40px;
}

.avia-wl .hero-screen__intro {
	margin-bottom: 24px;
}

.avia-wl .hero-screen__eyebrow {
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 10px;
}

.avia-wl .hero-screen__intro h1 {
	font-size: clamp(1.375rem, 3.5vw, 2rem);
	font-weight: 700;
	color: var(--text);
	line-height: 1.25;
	max-width: 640px;
	margin: 0 auto;
	letter-spacing: -.03em;
}

.avia-wl .hero-screen__trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 20px;
	margin-top: 14px;
	padding: 0;
	list-style: none;
}

.avia-wl .hero-screen__trust li {
	font-size: .8125rem;
	color: var(--text-secondary);
	padding-left: 18px;
	position: relative;
}

.avia-wl .hero-screen__trust li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), #38bdf8);
	box-shadow: 0 0 0 3px rgba(14,165,233,.15);
}

.avia-wl .hero-screen__card {
	position: relative;
	z-index: 1;
}

.avia-wl .hero-screen__card::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 10%;
	left: 5%;
	right: 5%;
	bottom: -8%;
	background: radial-gradient(ellipse at center, rgba(14,165,233,.12) 0%, transparent 70%);
	filter: blur(24px);
	pointer-events: none;
}

.avia-wl .hero-screen__card {
	max-width: 960px;
	margin: 0 auto;
}

.avia-wl .hero-screen .present__form {
	margin: 0;
	padding: 10px;
	border-radius: 24px;
	border: 1px solid rgba(255,255,255,.9);
	background: rgba(255,255,255,.94);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow:
		0 4px 6px -1px rgba(0,0,0,.04),
		0 24px 48px -12px rgba(14,165,233,.22),
		0 0 0 1px rgba(14,165,233,.06);
}

.avia-wl .hero-screen ul.tabs_list {
	justify-content: flex-start;
	flex-wrap: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	gap: 6px;
	padding: 6px;
	margin-bottom: 10px;
	background: #f1f5f9;
	border-radius: 14px;
}

.avia-wl .hero-screen ul.tabs_list::-webkit-scrollbar {
	display: none;
}

.avia-wl .hero-screen ul.tabs_list > a {
	flex: 0 0 auto;
}

.avia-wl .hero-screen li.tabs_list_item {
	padding: 10px 14px;
	font-size: .8125rem;
	border-radius: 10px;
}

.avia-wl .hero-screen a.active > .tabs_list_item {
	background: var(--surface);
	color: var(--primary);
	box-shadow: 0 2px 8px rgba(14,165,233,.15);
}

.avia-wl .hero-screen .form_load--wl {
	border-radius: 0;
	overflow: visible;
	background: transparent;
}

.avia-wl .hero-screen__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	max-width: 720px;
	margin: 28px auto 0;
	padding: 0;
	background: rgba(255,255,255,.75);
	backdrop-filter: blur(12px);
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,.9);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.avia-wl .hero-screen__stats li {
	flex-direction: row;
	justify-content: center;
	gap: 8px;
	padding: 16px 12px;
	border-radius: 0;
	border: none;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.avia-wl .hero-screen__stats li:not(:last-child) {
	border-right: 1px solid var(--border);
}

.avia-wl .hero-screen__stats li div {
	font-size: 1.125rem;
}

.avia-wl .hero-screen__stats li strong {
	font-size: .6875rem;
	white-space: nowrap;
}

.avia-wl .fixtop {
	background: rgba(255,255,255,.75);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom-color: rgba(226,232,240,.6);
}

@media screen and (max-width: 767px) {
	.avia-wl .hero-screen .present {
		padding: 16px 0 28px;
	}

	.avia-wl .hero-screen__intro {
		margin-bottom: 16px;
	}

	.avia-wl .hero-screen__intro h1 {
		font-size: 1.125rem;
		padding: 0 8px;
	}

	.avia-wl .hero-screen .present__form {
		padding: 8px;
		border-radius: 20px;
	}

	.avia-wl .hero-screen__stats {
		grid-template-columns: 1fr;
		margin-top: 20px;
	}

	.avia-wl .hero-screen__stats li {
		padding: 12px 16px;
		justify-content: flex-start;
	}

	.avia-wl .hero-screen__stats li:not(:last-child) {
		border-right: none;
		border-bottom: 1px solid var(--border);
	}
}

@media screen and (max-width: 599px) {
	.avia-wl .hero-screen li.tabs_list_item span {
		display: none;
	}

	.avia-wl .hero-screen li.tabs_list_item {
		padding: 12px;
	}

	.avia-wl .hero-screen li.tabs_list_item > img {
		width: 24px;
		height: 24px;
	}
}
