/* ============================================================
   Bootstrap 5 theme + AMOLAB Travel custom layer
   ============================================================ */

:root {
	--bs-primary: #0ea5e9;
	--bs-primary-rgb: 14, 165, 233;
	--bs-secondary: #475569;
	--bs-body-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--bs-body-color: #0f172a;
	--bs-body-bg: #f8fafc;
	--bs-border-color: #e2e8f0;
	--bs-link-color: #0ea5e9;
	--bs-link-hover-color: #0284c7;
	--header-main-h: 64px;
	--promo-h: 32px;
	--header-h: var(--header-main-h);
	--page-max: 1140px;
}

/* Bootstrap container — override legacy reset */
.container,
.container-lg,
.container-xl {
	position: relative;
	width: 100%;
	max-width: var(--page-max) !important;
	padding-left: 1rem;
	padding-right: 1rem;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
	:root { --header-h: calc(var(--promo-h) + var(--header-main-h)); }
	.site-navbar { top: var(--promo-h); }
}

body {
	font-family: var(--bs-body-font-family);
	background-color: var(--bs-body-bg);
}

/* ===== HEADER ===== */

.promo-strip-top {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1032;
	height: var(--promo-h);
	background: linear-gradient(90deg, #f97316, #ea580c);
	color: #fff;
	font-size: .75rem;
	font-weight: 600;
}

.site-header { z-index: 1030; }

.site-navbar {
	height: var(--header-main-h);
	padding: 0 !important;
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--bs-border-color);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
	display: block;
}

.site-navbar > .container {
	display: flex;
	align-items: center;
	height: var(--header-main-h);
	padding-top: 0;
	padding-bottom: 0;
}

.site-navbar.navbar-scrolled {
	box-shadow: 0 4px 20px rgba(15, 23, 42, .08);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	height: 40px;
}

.header-brand {
	display: flex;
	align-items: center;
	gap: .4rem;
	padding: 0 !important;
	margin: 0 !important;
	min-width: 0;
	height: 40px;
	line-height: 1;
}

.header-logo__img {
	height: 34px;
	width: 42px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
	flex-shrink: 0;
}

.brand-text {
	justify-content: center;
	line-height: 1.15;
	gap: 1px;
}

.brand-text__title {
	font-size: .8125rem;
	font-weight: 700;
	color: var(--bs-body-color);
	line-height: 1.15;
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.brand-text__tagline {
	font-size: .6875rem;
	color: var(--bs-secondary);
	line-height: 1.15;
	white-space: nowrap;
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: .5rem;
	margin-left: auto;
	height: 40px;
}

.header-actions > .dropdown {
	display: flex;
	align-items: center;
	height: 40px;
}

.header-social {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 40px;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
}

.header-social-link {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	margin: 0;
	border-radius: 12px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, .04);
	box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
	line-height: 0;
	transition: transform .15s ease, box-shadow .15s ease;
}

.header-social-link:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(15, 23, 42, .12);
}

.header-social-link img {
	width: 20px;
	height: 20px;
	display: block;
	object-fit: contain;
}

.theme-toggle.btn {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: auto;
	height: 32px;
	padding: 0 !important;
	margin: 0;
	border: none;
	background: transparent;
	box-shadow: none;
	line-height: 1 !important;
}

.theme-toggle__track {
	display: inline-flex;
	align-items: center;
	width: 52px;
	height: 28px;
	padding: 2px;
	border-radius: 9999px;
	background: #d8efe6;
	border: 1px solid rgba(15, 23, 42, .08);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
	transition: background .25s ease, border-color .25s ease;
}

.theme-toggle__thumb {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
	color: #0f172a;
	box-shadow: 0 2px 6px rgba(15, 23, 42, .14);
	transform: translateX(0);
	transition: transform .25s ease, background .25s ease, color .25s ease;
}

.theme-toggle__icon {
	display: none;
	line-height: 0;
}

html:not([data-theme="dark"]) .theme-toggle__icon--sun,
html[data-theme="dark"] .theme-toggle__icon--moon {
	display: inline-flex;
}

html[data-theme="dark"] .theme-toggle__track {
	background: #1e293b;
	border-color: #334155;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
	justify-content: flex-end;
}

html[data-theme="dark"] .theme-toggle__thumb {
	background: #0f172a;
	color: #e2e8f0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.header-menu-btn.btn {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	height: 40px;
	min-height: 40px;
	padding: 0 .95rem !important;
	margin: 0;
	border: 1px solid rgba(15, 23, 42, .06);
	border-radius: 9999px;
	background: #fff;
	color: #0f172a;
	font-size: .8125rem;
	font-weight: 600;
	line-height: 1 !important;
	box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
	box-sizing: border-box;
	transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.header-menu-btn:hover,
.header-menu-btn:focus,
.header-menu-btn.show {
	background: #f8fafc;
	color: #0f172a;
	border-color: rgba(15, 23, 42, .1);
	box-shadow: 0 4px 12px rgba(15, 23, 42, .12);
}

.header-menu-btn__icon {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 3.5px;
	width: 16px;
}

.header-menu-btn__icon span {
	display: block;
	height: 2px;
	width: 100%;
	border-radius: 2px;
	background: currentColor;
}

.header-menu-dd {
	min-width: 240px;
	padding: .5rem;
	margin-top: .5rem !important;
	border: 1px solid #e2e8f0;
	border-radius: 1rem;
	box-shadow: 0 16px 40px rgba(15, 23, 42, .14);
}

.header-menu-dd .menu-dd-item {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: .7rem .85rem;
	border-radius: .75rem;
	font-size: .875rem;
	font-weight: 500;
	color: #0f172a;
}

.header-menu-dd .menu-dd-item:hover,
.header-menu-dd .menu-dd-item:focus {
	background: #f1f5f9;
	color: var(--bs-primary);
}

.header-menu-dd .menu-dd-item.active {
	background: #e0f2fe;
	color: var(--bs-primary);
	font-weight: 600;
}

.menu-ico {
	display: inline-flex;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: var(--bs-primary);
}

.menu-ico svg {
	width: 100%;
	height: 100%;
}

/* ===== HERO — fix legacy flex from style.css ===== */

.page-flights .back-present,
.avia-wl .hero-screen {
	display: block !important;
	align-items: initial !important;
	margin-top: var(--header-h);
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.avia-wl .hero-screen::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;
}

.avia-wl .hero-container {
	position: relative;
	z-index: 1;
	padding-top: 2rem;
	padding-bottom: 2.5rem;
}

@media (min-width: 992px) {
	.avia-wl .hero-container {
		padding-top: 2.5rem;
		padding-bottom: 3rem;
	}
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: .375rem;
	padding: .375rem .75rem;
	margin-bottom: 1rem;
	border-radius: 9999px;
	background: #fff;
	border: 1px solid #bae6fd;
	color: var(--bs-primary);
	font-size: .75rem;
	font-weight: 600;
}

.hero-title {
	font-size: clamp(1.375rem, 3.5vw, 2rem);
	font-weight: 700;
	color: #0f172a;
	line-height: 1.25;
	margin-bottom: .75rem;
}

.hero-accent { color: var(--bs-primary); }

.hero-subtitle {
	color: var(--bs-secondary);
	font-size: .9375rem;
	line-height: 1.6;
	margin: 0 auto 1.5rem;
	max-width: 520px;
}

.hero-search-card {
	background: #fff;
	border-radius: 1.25rem !important;
	box-shadow: 0 8px 40px rgba(14, 165, 233, .12), 0 2px 8px rgba(0,0,0,.04) !important;
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.hero-search-card .card-body {
	padding: 1rem 1.25rem 1.25rem !important;
}

/* WL form — modern shell */
.avia-wl .form_load--wl,
.avia-wl .hero-screen .form_load--wl,
.avia-wl .hero-search-card .form_load--wl {
	background: transparent !important;
	border-radius: 0 !important;
	overflow: visible !important;
	box-shadow: none !important;
	border: none !important;
}

.tpwl-search-stage {
	position: relative;
	min-height: 140px;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	border: none;
}

.avia-wl #tpwl-search {
	position: relative;
	z-index: 1;
	min-height: 140px;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

/* Soft modern frame around the embedded form — only safe outer tweaks */
.avia-wl #tpwl-search {
	isolation: isolate;
}

.widget-stub {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .75rem;
	padding: 1.5rem 1rem 1.25rem;
	pointer-events: none;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.widget-stub[hidden],
.widget-stub.is-hidden {
	display: none !important;
}

.widget-stub__spinner {
	display: block;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	animation: widget-stub-spin .8s linear infinite;
}

.widget-stub__spinner-track {
	stroke: rgba(14, 165, 233, .2);
}

.widget-stub__spinner-arc {
	stroke: #0ea5e9;
	stroke-dasharray: 70 100;
	transform-origin: center;
}

.widget-stub__text {
	font-size: .9375rem;
	font-weight: 500;
	color: #64748b;
	line-height: 1.3;
}

.widget-stub__bars {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .45rem;
	width: 100%;
	max-width: 280px;
	margin-top: .15rem;
}

.widget-stub__bars span {
	display: block;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(90deg, #dbeafe 0%, #e0f2fe 45%, #dbeafe 90%);
	background-size: 200% 100%;
	animation: widget-stub-shimmer 1.3s ease-in-out infinite;
}

.widget-stub__bars span:nth-child(1) { width: 100%; }
.widget-stub__bars span:nth-child(2) { width: 78%; animation-delay: .12s; }
.widget-stub__bars span:nth-child(3) { width: 56%; animation-delay: .24s; }

@keyframes widget-stub-spin {
	to { transform: rotate(360deg); }
}

@keyframes widget-stub-shimmer {
	0% { background-position: 100% 0; }
	100% { background-position: -100% 0; }
}

html[data-theme="dark"] .widget-stub__text {
	color: #94a3b8;
}

html[data-theme="dark"] .widget-stub__bars span {
	background: linear-gradient(90deg, #1e293b 0%, #334155 45%, #1e293b 90%);
	background-size: 200% 100%;
}

html[data-theme="dark"] .tpwl-search-stage,
html[data-theme="dark"] .widget-stub,
html[data-theme="dark"] .avia-wl #tpwl-search {
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	border: none;
}

html[data-theme="dark"] .widget-stub__spinner-track {
	stroke: rgba(56, 189, 248, .22);
}

html[data-theme="dark"] .widget-stub__spinner-arc {
	stroke: #38bdf8;
}

html[data-theme="dark"] .promo {
	background: #111827;
	border-bottom-color: #1e293b;
}

html[data-theme="dark"] .onboard {
	color: #94a3b8;
}

html[data-theme="dark"] .onboard h2,
html[data-theme="dark"] .onboard-title {
	color: #cbd5e1;
}
/* Stats row — inside hero, centered */
.hero-stats {
	max-width: 720px;
	margin: 0 auto;
}

.stat-card {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: .875rem 1rem;
	background: #fff;
	border: 1px solid var(--bs-border-color);
	border-radius: .875rem;
	box-shadow: 0 2px 8px rgba(0,0,0,.04);
	height: 100%;
}

.stat-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: .625rem;
	flex-shrink: 0;
}

.stat-card--teal .stat-icon { background: #e0f2fe; color: #0284c7; }
.stat-card--amber .stat-icon { background: #fff7ed; color: #ea580c; }
.stat-card--violet .stat-icon { background: #f3e8ff; color: #7c3aed; }

.stat-value {
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.1;
}

.stat-label {
	display: block;
	font-size: .6875rem;
	color: var(--bs-secondary);
	line-height: 1.3;
}

/* ---- Service pills in search form ---- */

.service-pills {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
	gap: .35rem;
	margin: 0 0 .875rem;
	padding: 0 0 .875rem;
	border-bottom: 1px solid #e2e8f0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.service-pills::-webkit-scrollbar {
	display: none;
}

.service-pill {
	display: inline-flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .3rem;
	min-width: 0;
	padding: .5rem .25rem;
	border-radius: .75rem;
	background: #f1f5f9;
	border: 1px solid transparent;
	color: var(--bs-secondary);
	text-decoration: none;
	font-size: .6875rem;
	font-weight: 500;
	line-height: 1.15;
	text-align: center;
	transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-pill__icon {
	display: inline-flex;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: inherit;
}

.service-pill__icon svg {
	width: 100%;
	height: 100%;
}

.service-pill__text {
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.service-pill:hover {
	background: #e0f2fe;
	color: var(--bs-primary);
	border-color: #bae6fd;
}

.service-pill.active {
	background: #fff;
	color: var(--bs-primary);
	border-color: #7dd3fc;
	box-shadow: 0 2px 10px rgba(14, 165, 233, .15);
	font-weight: 600;
	pointer-events: none;
}

/* Legacy tabs inside old pages */
.present__form .service-tabs-nav,
.present__form .service-pills {
	margin-bottom: .75rem;
}

/* ---- Sections ---- */

.section-block {
	color: #0f172a;
}

.section-block--alt {
	background: #fff;
}

.section-header {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: .375rem;
	padding: .375rem .75rem;
	margin-bottom: .875rem;
	border-radius: 9999px;
	background: #e0f2fe;
	color: var(--bs-primary);
	font-size: .75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.section-title,
.section-title-left {
	letter-spacing: -.02em;
}

.section-desc-left {
	font-size: .9375rem;
	line-height: 1.6;
}

.feature-list li {
	position: relative;
	padding: .375rem 0 .375rem 1.25rem;
	color: var(--bs-secondary);
	font-size: .875rem;
}

.feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #22c55e;
	font-weight: 700;
}

.calendar-steps {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: .625rem;
}

.calendar-step {
	display: flex;
	align-items: center;
	gap: .625rem;
	padding: .625rem .75rem;
	border-radius: .625rem;
	background: #f8fafc;
	border: 1px solid var(--bs-border-color);
	font-size: .8125rem;
	font-weight: 500;
	color: var(--bs-body-color);
}

.calendar-step .step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f97316, #ea580c);
	color: #fff;
	font-size: .6875rem;
	font-weight: 700;
	flex-shrink: 0;
}

.calendar-widget-wrap {
	background: #fff;
	border-radius: 1rem;
	border: 1px solid var(--bs-border-color);
	padding: 1rem;
	box-shadow: 0 4px 20px rgba(15, 23, 42, .05);
}

.avia-wl.wl-has-results .section-block {
	opacity: .35;
	transition: opacity .2s ease;
}

.avia-wl.wl-has-results .section-block:hover {
	opacity: 1;
}

/* ---- Calendar steps ---- */

.cal-step-card {
	border-radius: .75rem !important;
	transition: transform .2s ease, box-shadow .2s ease;
}

.cal-step-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08) !important;
}

.cal-step-num {
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f97316, #ea580c);
	color: #fff;
	font-weight: 700;
	font-size: .875rem;
	box-shadow: 0 4px 12px rgba(249, 115, 22, .35);
	margin-top: -1.75rem;
}

.cal-step-img {
	max-height: 48px;
	width: auto;
	object-fit: contain;
}

/* ---- Feature cards ---- */

.feature-card {
	border-radius: .75rem !important;
}

/* ---- WL widget mount ---- */

.wl-results {
	padding: 1.5rem 0 2rem;
}

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

/* ---- Footer tweaks with Bootstrap ---- */

.footer .btn-support {
	font-size: .8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .02em;
}

/* ---- Responsive ---- */

@media (max-width: 767.98px) {
	.avia-wl .hero-subtitle {
		font-size: .875rem;
		padding: 0 .5rem;
	}

	.calendar-steps {
		grid-template-columns: 1fr;
	}

	.service-pills {
		gap: .25rem;
	}

	.service-pill {
		padding: .55rem .2rem;
	}

	.service-pill__text {
		display: none;
	}

	.service-pill__icon {
		width: 22px;
		height: 22px;
	}

	.brand-text {
		display: none !important;
	}
}

/* Hide legacy header wrappers if cached */
.whitefix,
.fixtop {
	display: none !important;
}

/* Backward compat: old hero on other pages */
.back-present:not(.hero-screen) {
	margin-top: var(--header-h);
}

.back-present:not(.hero-screen) .present__form {
	margin-bottom: 2rem;
}

.back-present:not(.hero-screen) .present__form .card-body,
.back-present:not(.hero-screen) .present__form > div {
	background: #fff;
	border-radius: 1.25rem;
	box-shadow: 0 20px 50px -12px rgba(0, 0, 0, .18);
	padding: .5rem;
	border: 1px solid var(--bs-border-color);
}

/* ===== Dark theme ===== */

html[data-theme="dark"] {
	--bs-body-color: #e2e8f0;
	--bs-body-bg: #0b1220;
	--bs-secondary: #94a3b8;
	--bs-border-color: #1e293b;
	--bs-primary: #38bdf8;
	--bs-primary-rgb: 56, 189, 248;
	--bs-link-color: #38bdf8;
	--bs-link-hover-color: #7dd3fc;
	--surface: #111827;
	--border: #1e293b;
	--bg: #0b1220;
	--text: #e2e8f0;
	--text-secondary: #94a3b8;
	--text-muted: #64748b;
	color-scheme: dark;
}

html[data-theme="dark"] body {
	background: #0b1220;
	color: #e2e8f0;
}

html[data-theme="dark"] .site-navbar {
	background: rgba(11, 18, 32, .92);
	border-bottom-color: #1e293b;
}

html[data-theme="dark"] .brand-text__title {
	color: #f8fafc;
}

html[data-theme="dark"] .brand-text__tagline {
	color: #94a3b8;
}

html[data-theme="dark"] .theme-toggle {
	background: transparent;
}

html[data-theme="dark"] .theme-toggle:hover,
html[data-theme="dark"] .theme-toggle:focus {
	background: transparent;
	color: inherit;
}

html[data-theme="dark"] .header-social-link {
	background: #111827;
	border-color: #1e293b;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

html[data-theme="dark"] .header-menu-btn.btn {
	background: #0f172a;
	color: #e2e8f0;
	border-color: #334155;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

html[data-theme="dark"] .header-menu-btn:hover,
html[data-theme="dark"] .header-menu-btn:focus,
html[data-theme="dark"] .header-menu-btn.show {
	background: #1e293b;
	color: #f8fafc;
	border-color: #475569;
}

html[data-theme="dark"] .header-menu-dd {
	background: #111827;
	border-color: #1e293b;
	box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}

html[data-theme="dark"] .header-menu-dd .menu-dd-item {
	color: #e2e8f0;
}

html[data-theme="dark"] .header-menu-dd .menu-dd-item:hover,
html[data-theme="dark"] .header-menu-dd .menu-dd-item:focus {
	background: #1e293b;
	color: #38bdf8;
}

html[data-theme="dark"] .header-menu-dd .menu-dd-item.active {
	background: rgba(56, 189, 248, .15);
	color: #38bdf8;
}

html[data-theme="dark"] .avia-wl .hero-screen::before,
html[data-theme="dark"] .back-present::before {
	background: linear-gradient(
		160deg,
		rgba(14, 165, 233, .16) 0%,
		rgba(11, 18, 32, .78) 42%,
		rgba(11, 18, 32, .92) 100%
	) !important;
}

html[data-theme="dark"] .avia-wl .hero-screen::after {
	opacity: .12;
}

html[data-theme="dark"] .hero-title {
	color: #f8fafc;
}

html[data-theme="dark"] .hero-subtitle,
html[data-theme="dark"] .text-muted {
	color: #94a3b8 !important;
}

html[data-theme="dark"] .hero-badge {
	background: #111827;
	border-color: #334155;
	color: #38bdf8;
}

html[data-theme="dark"] .hero-search-card,
html[data-theme="dark"] .stat-card,
html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .calendar-widget-wrap,
html[data-theme="dark"] .section-block--alt {
	background: #111827 !important;
	border-color: #1e293b !important;
	color: #e2e8f0;
}

html[data-theme="dark"] .hero-search-card {
	box-shadow: 0 12px 40px rgba(0, 0, 0, .35), 0 2px 8px rgba(0, 0, 0, .2) !important;
}

html[data-theme="dark"] .service-pills {
	border-bottom-color: #1e293b;
}

html[data-theme="dark"] .service-pill {
	background: #1e293b;
	color: #cbd5e1;
}

html[data-theme="dark"] .service-pill:hover,
html[data-theme="dark"] .service-pill.active {
	background: #0f172a;
	color: #38bdf8;
	border-color: #334155;
}

html[data-theme="dark"] .section-tag {
	background: rgba(56, 189, 248, .12);
	color: #38bdf8;
}

html[data-theme="dark"] .section-block,
html[data-theme="dark"] .wl-results,
html[data-theme="dark"] .footer {
	background: #0b1220;
	color: #e2e8f0;
}

html[data-theme="dark"] .calendar-step {
	background: #0f172a;
	border-color: #1e293b;
	color: #e2e8f0;
}

html[data-theme="dark"] .stat-value {
	color: #f8fafc;
}

html[data-theme="dark"] #preloader {
	background: #0b1220;
}
