:root {
	--bll-bg: #f7f8fb;
	--bll-surface: #ffffff;
	--bll-surface-alt: #f3f5f8;
	--bll-ink: #132033;
	--bll-muted: #5b6678;
	--bll-line: #dde3eb;
	--bll-navy: #0f2747;
	--bll-navy-soft: #173a67;
	--bll-red: #be3d32;
	--bll-accent: #be3d32;
	--bll-red-dark: #a52e24;
	--bll-gold: #e4c78a;
	--bll-shadow: 0 20px 46px rgba(15, 39, 71, 0.06);
	--bll-shadow-soft: 0 10px 22px rgba(15, 39, 71, 0.04);
	--bll-radius: 18px;
	--bll-radius-sm: 14px;
	--bll-container: 1180px;
	--bll-heading: "Georgia", "Times New Roman", serif;
	--bll-body: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
	--bll-topbar-start: #0f2747;
	--bll-topbar-end: #163963;
	--bll-footer-start: #f7f1e8;
	--bll-footer-end: #f4efe7;
	--bll-logo-max-width: 260px;
	--bll-logo-max-height: 72px;
	--bll-mobile-logo-max-width: 300px;
	--bll-mobile-logo-max-height: 58px;
	--bll-base-font-size: 16px;
	--bll-topbar-font-size: 13px;
	--bll-menu-font-size: 16px;
	--bll-hero-title-max: 74px;
	--bll-section-title-max: 52px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
}

body {
	margin: 0;
	background: linear-gradient(180deg, #fbfcfe 0%, #f5f7fa 34%, #f3f5f8 100%);
	color: var(--bll-ink);
	font-family: var(--bll-body);
	font-size: var(--bll-base-font-size);
	line-height: 1.65;
}

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

a {
	color: var(--bll-navy);
	text-decoration: none;
}

a:hover {
	color: var(--bll-red);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.bll-container {
	width: min(calc(100% - 32px), var(--bll-container));
	margin: 0 auto;
}

.bll-main {
	min-height: 60vh;
}

.bll-main--portal {
	padding: 0;
}

.bll-topbar {
	background: linear-gradient(90deg, var(--bll-topbar-start) 0%, var(--bll-topbar-end) 100%);
	color: #dbe7f7;
	font-size: var(--bll-topbar-font-size);
}

.bll-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 0;
}

.bll-topbar .bll-container {
	width: min(calc(100% - 34px), 1540px);
}

.bll-topbar__inner p {
	margin: 0;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.bll-topbar__links {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.bll-topbar__links a {
	display: inline-flex;
	align-items: center;
	color: #ffffff;
	font-weight: 600;
}

.bll-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(19, 32, 51, 0.08);
}

.bll-header.is-scrolled {
	box-shadow: 0 8px 22px rgba(15, 39, 71, 0.05);
}

.bll-header__inner {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 16px 0;
}

.bll-header > .bll-container {
	width: min(calc(100% - 34px), 1540px);
}

.bll-brand {
	display: inline-flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.bll-brand__name {
	font-family: var(--bll-heading);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--bll-navy);
}

.bll-brand__tag {
	font-size: 0.95rem;
	color: var(--bll-muted);
	max-width: 360px;
}

.custom-logo-link img {
	max-height: min(62px, var(--bll-logo-max-height));
	max-width: var(--bll-logo-max-width);
	width: auto;
}

.bll-brand__image img {
	max-height: min(62px, var(--bll-logo-max-height));
	max-width: var(--bll-logo-max-width);
	width: auto;
}

.bll-nav {
	display: flex;
	align-items: center;
	gap: 20px;
}

.bll-menu,
.bll-footer-menu,
.bll-check-list,
.bll-hero__chips,
.bll-city-meta {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bll-menu {
	display: flex;
	align-items: center;
	gap: 20px;
}

.bll-menu a {
	display: inline-flex;
	align-items: center;
	padding: 8px 0;
	color: var(--bll-ink);
	font-family: "Aptos", "Trebuchet MS", "Segoe UI", sans-serif;
	font-weight: 700;
	font-size: 1.02rem;
	letter-spacing: 0.01em;
}

.bll-nav__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: 12px;
}

.bll-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 48px;
	height: 48px;
	border: 1px solid var(--bll-line);
	background: var(--bll-surface);
	border-radius: 14px;
	cursor: pointer;
}

.bll-nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--bll-navy);
	border-radius: 999px;
}

.bll-primary-button,
.bll-secondary-button,
.bll-link-button,
.bll-whatsapp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 20px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.92rem;
	line-height: 1;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.bll-primary-button {
	background: linear-gradient(135deg, #18304f 0%, #0f2747 100%);
	color: #ffffff;
	box-shadow: 0 12px 24px rgba(15, 39, 71, 0.14);
}

.bll-secondary-button {
	background: var(--bll-surface);
	color: var(--bll-navy);
	border: 1px solid rgba(15, 39, 71, 0.14);
}

.bll-link-button {
	background: rgba(255, 255, 255, 0.72);
	color: var(--bll-navy);
	border: 1px solid rgba(15, 39, 71, 0.12);
}

.bll-whatsapp-button {
	background: linear-gradient(135deg, #17a34a 0%, #128c3b 100%);
	color: #ffffff;
	border: 1px solid rgba(18, 140, 59, 0.4);
	box-shadow: 0 16px 30px rgba(18, 140, 59, 0.2);
}

.bll-primary-button:hover,
.bll-secondary-button:hover,
.bll-link-button:hover,
.bll-whatsapp-button:hover {
	transform: translateY(-2px);
}

.bll-button--full {
	width: 100%;
}

.bll-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(190, 61, 50, 0.08);
	color: var(--bll-red);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bll-hero,
.bll-page-hero {
	position: relative;
	padding: 42px 0 34px;
}

.bll-hero--cinematic {
	padding-top: 0;
	padding-bottom: 72px;
}

.bll-page-hero {
	padding-bottom: 28px;
}

.bll-hero::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 72%;
	background:
		radial-gradient(circle at top left, rgba(228, 199, 138, 0.1), transparent 35%),
		radial-gradient(circle at top right, rgba(15, 39, 71, 0.06), transparent 42%),
		linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
}

.bll-page-hero::before {
	display: none;
}

.bll-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
	gap: 44px;
	align-items: start;
}

.bll-hero-stage {
	position: relative;
	overflow: visible;
	padding: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	isolation: isolate;
}

.bll-hero--cinematic > .bll-container {
	width: min(calc(100% - 24px), 1660px);
}

.bll-hero-stage__media,
.bll-hero-stage__overlay {
	position: absolute;
	inset: 0;
}

.bll-hero-stage__media img {
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center center;
	filter: saturate(1.06) contrast(1.01);
	border-radius: 0 0 30px 30px;
	box-shadow: 0 18px 44px rgba(11, 23, 38, 0.12);
}

.bll-hero-stage__media {
	position: relative;
}

.bll-mobile-hero-message {
	display: none;
}

.bll-hero-stage__overlay {
	display: none;
}

.bll-hero-stage__inner {
	position: absolute;
	inset: 0;
	z-index: 1;
	min-height: 0;
	padding: 28px;
	align-items: center;
	grid-template-columns: minmax(300px, 0.54fr) minmax(400px, 0.7fr);
	gap: 28px;
}

.bll-hero--cinematic::before {
	display: none;
}

.bll-hero__content h1,
.bll-page-hero h1,
.bll-section-heading h2,
.bll-info-card h2,
.bll-cta-panel h2,
.bll-service-card h3,
.bll-route-card h3,
.bll-route-card h2,
.bll-step-card h3 {
	margin: 0;
	font-family: var(--bll-heading);
	font-weight: 700;
	line-height: 1.1;
	color: var(--bll-navy);
}

.bll-hero__content h1 {
	margin-top: 18px;
	font-size: clamp(1.9rem, 2.8vw, 3.35rem);
	max-width: 11ch;
}

.bll-hero--cinematic .bll-kicker {
	background: rgba(19, 32, 51, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: #f5dfbf;
}

.bll-hero--cinematic .bll-hero__content h1 {
	max-width: 9ch;
	font-size: clamp(1.35rem, 2.45vw, 2.55rem);
	color: #ffffff;
	text-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.bll-page-hero h1 {
	margin-top: 16px;
	font-size: clamp(1.5rem, 1.55vw, 1.95rem);
	max-width: 15ch;
}

.bll-section-heading h2 {
	font-size: clamp(1.35rem, 1.6vw, 1.9rem);
}

.bll-info-card h2,
.bll-cta-panel h2 {
	font-size: clamp(1.18rem, 1.3vw, 1.45rem);
}

.bll-service-card h3 {
	font-size: clamp(1.12rem, 1.25vw, 1.38rem);
}

.bll-route-card h3,
.bll-route-card h2 {
	font-size: clamp(1.02rem, 1.05vw, 1.18rem);
}

.bll-step-card h3 {
	font-size: clamp(1.04rem, 1.05vw, 1.18rem);
}

.bll-hero__lead,
.bll-page-hero p,
.bll-section-heading p {
	margin: 18px 0 0;
	max-width: 58ch;
	font-size: 0.96rem;
	color: var(--bll-muted);
}

.bll-hero--cinematic .bll-hero__lead {
	max-width: 36ch;
	font-size: 0.86rem;
	line-height: 1.52;
	color: rgba(255, 255, 255, 0.84);
}

.bll-hero--cinematic .bll-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	max-width: 370px;
	padding: 18px;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(10, 17, 28, 0.34) 0%, rgba(10, 17, 28, 0.24) 60%, rgba(10, 17, 28, 0.16) 100%);
	backdrop-filter: blur(3px);
	box-shadow: 0 18px 40px rgba(6, 13, 24, 0.12);
	transform: translateY(-34px);
}

.bll-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.bll-hero__chips li {
	padding: 10px 13px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(15, 39, 71, 0.08);
	box-shadow: 0 6px 18px rgba(15, 39, 71, 0.04);
	font-weight: 600;
	font-size: 0.96rem;
	color: var(--bll-ink);
}

.bll-hero--cinematic .bll-hero__chips li {
	background: rgba(19, 32, 51, 0.34);
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: none;
	color: #ffffff;
	backdrop-filter: blur(6px);
}

.bll-hero--cinematic .bll-hero__chips {
	display: none;
}

.bll-hero--cinematic .bll-hero__actions {
	display: none;
}

.bll-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.bll-hero--cinematic .bll-primary-button {
	background: #ffffff;
	color: var(--bll-navy);
	box-shadow: 0 14px 30px rgba(7, 18, 30, 0.22);
}

.bll-hero--cinematic .bll-secondary-button {
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.bll-hero--cinematic .bll-secondary-button:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
}

.bll-trust-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 34px;
}

.bll-trust-strip div {
	padding: 16px 17px;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 249, 252, 0.97));
	border: 1px solid rgba(15, 39, 71, 0.08);
	box-shadow: 0 8px 18px rgba(15, 39, 71, 0.04);
}

.bll-trust-strip strong {
	display: block;
	margin-bottom: 5px;
	font-size: 0.9rem;
	color: var(--bll-navy);
}

.bll-trust-strip span {
	display: block;
	color: var(--bll-muted);
	font-size: 0.88rem;
}

.bll-hero__form {
	position: relative;
	scroll-margin-top: 110px;
}

.bll-quote-shell {
	padding: 18px;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.98));
	border: 1px solid rgba(15, 39, 71, 0.08);
	box-shadow: 0 18px 40px rgba(15, 39, 71, 0.05);
}

.bll-quote-shell--hero {
	max-width: 560px;
	padding: 18px;
	background: rgba(18, 23, 31, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.38);
	box-shadow: 0 18px 42px rgba(7, 18, 30, 0.14);
	backdrop-filter: blur(12px) saturate(1.08);
}

.bll-quote-shell--hero .bll-widget-blacklane {
	padding: 14px !important;
	background: rgba(18, 23, 31, 0.18) !important;
	border: 1px solid rgba(255, 255, 255, 0.22) !important;
	border-radius: 18px !important;
	box-shadow: none !important;
}

.bll-quote-shell--hero .bll-booking-wrap {
	max-width: 100%;
}

.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] {
	max-width: 100% !important;
	padding: 15px !important;
	background: rgba(18, 23, 31, 0.16) !important;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	border-radius: 18px !important;
	box-shadow: none !important;
	backdrop-filter: blur(8px);
}

.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] input[type="text"],
.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] input[type="date"],
.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] input[type="time"] {
	background: rgba(255, 255, 255, 0.84) !important;
	border-color: rgba(255, 255, 255, 0.5) !important;
}

.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] label,
.bll-quote-shell--hero .bll-booking-form.bll-widget-blacklane[data-mode="widget"] .bll-field label,
.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] .bll-field-label,
.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] .bll-form-label {
	color: #ffffff !important;
}

.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] h1,
.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] h2,
.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] h3,
.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] strong {
	color: #ffffff !important;
}

@media (min-width: 861px) {
	.home .bll-quote-shell--hero .bll-booking-form[data-mode="widget"] .bll-return-fields.bll-box {
		margin-top: 12px !important;
		background: rgba(18, 23, 31, 0.16) !important;
		border: 1px solid rgba(255, 255, 255, 0.18) !important;
		border-radius: 18px !important;
		box-shadow: none !important;
		backdrop-filter: blur(8px);
	}

	.home .bll-quote-shell--hero .bll-booking-form[data-mode="widget"] .bll-return-fields.bll-box label,
	.home .bll-quote-shell--hero .bll-booking-form[data-mode="widget"] .bll-return-fields.bll-box .bll-field label {
		color: #ffffff !important;
	}

	.home .bll-hero--cinematic:has(.bll-return-toggle:checked) {
		padding-bottom: 252px;
	}
}

.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] p,
.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] small,
.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] .description {
	color: rgba(248, 250, 252, 0.78) !important;
}

.bll-quote-shell--hero .bll-form-card,
.bll-quote-shell--hero .bll-widget-card,
.bll-quote-shell--hero .bll-booking-card,
.bll-quote-shell--hero form {
	background: rgba(18, 23, 31, 0.16) !important;
	border-radius: 18px !important;
}

.bll-hero--cinematic .bll-hero__form {
	align-self: end;
	justify-self: end;
	width: 100%;
	max-width: 560px;
	transform: none;
}

.bll-quote-shell__header {
	padding: 8px 8px 18px;
}

.bll-quote-shell--hero .bll-quote-shell__header {
	padding: 6px 10px 4px;
}

.bll-quote-shell--hero .bll-quote-shell__header h2 {
	font-size: clamp(1.08rem, 1.35vw, 1.38rem);
	color: #ffffff;
	overflow-wrap: anywhere;
}

.bll-quote-shell__header span {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--bll-red);
}

.bll-quote-shell--hero .bll-quote-shell__header span {
	color: #d95a45;
}

.bll-quote-shell__header h2 {
	font-family: var(--bll-heading);
	font-size: 1.65rem;
	line-height: 1.14;
	color: var(--bll-navy);
}

.bll-shortcode-fallback {
	display: grid;
	gap: 6px;
	padding: 18px;
	border-radius: 18px;
	background: #fff5f3;
	color: var(--bll-navy);
	border: 1px solid rgba(190, 61, 50, 0.16);
}

.bll-shortcode-fallback span {
	color: var(--bll-muted);
}

.bll-section,
.bll-page-section {
	padding: 38px 0 76px;
}

.bll-section--light {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(240, 244, 250, 0.88));
}

.bll-section--stats {
	position: relative;
	z-index: 3;
	margin-top: 0;
	padding-top: 18px;
}

.bll-section--cta {
	padding-top: 8px;
}

.bll-section-heading {
	margin-bottom: 30px;
	padding-top: 8px;
}

.bll-stat-grid,
.bll-service-grid,
.bll-route-grid,
.bll-step-grid,
.bll-contact-grid,
.bll-content-grid,
.bll-coverage-panel {
	display: grid;
	gap: 20px;
}

.bll-stat-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bll-service-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bll-route-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bll-step-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bll-contact-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bll-content-grid,
.bll-coverage-panel {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bll-content-grid--triptych {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bll-stat-card,
.bll-service-card,
.bll-route-card,
.bll-step-card,
.bll-info-card,
.bll-contact-panel,
.bll-cta-panel {
	background: var(--bll-surface);
	border: 1px solid rgba(15, 39, 71, 0.08);
	border-radius: var(--bll-radius);
	box-shadow: 0 10px 24px rgba(15, 39, 71, 0.04);
}

.bll-stat-card,
.bll-step-card,
.bll-info-card,
.bll-route-card {
	padding: 24px;
}

.bll-section--stats .bll-stat-card {
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(15, 39, 71, 0.07);
	box-shadow: 0 18px 36px rgba(15, 39, 71, 0.08);
	backdrop-filter: blur(12px);
}

.bll-stat-card strong,
.bll-step-card span {
	display: block;
}

.bll-stat-card strong {
	font-size: 0.92rem;
	color: var(--bll-navy);
}

.bll-stat-card span {
	display: block;
	margin-top: 8px;
	font-size: 0.92rem;
	color: var(--bll-muted);
}

.bll-service-card {
	overflow: hidden;
}

.bll-service-card img {
	width: 100%;
	aspect-ratio: 1.45 / 1;
	object-fit: cover;
}

.bll-service-card__body {
	padding: 22px;
}

.bll-service-card__body p,
.bll-route-card p,
.bll-step-card p,
.bll-info-card p,
.bll-contact-panel p,
.bll-prose,
.bll-faq-item p {
	margin: 14px 0 0;
	font-size: 0.95rem;
	line-height: 1.58;
	color: var(--bll-muted);
}

.bll-service-card__body p,
.bll-route-card p,
.bll-step-card p,
.bll-info-card p {
	font-size: 0.93rem;
}

.bll-service-card__link {
	display: inline-flex;
	margin-top: 18px;
	font-weight: 700;
	color: var(--bll-navy);
}

.bll-route-card {
	display: flex;
	flex-direction: column;
}

.bll-route-card span {
	display: inline-flex;
	margin-top: 14px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(190, 61, 50, 0.08);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--bll-red);
}

.bll-route-card a {
	margin-top: auto;
	padding-top: 18px;
	font-weight: 700;
}

.bll-coverage-panel .bll-info-card {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 252, 0.96));
}

.bll-coverage-panel .bll-info-card::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, rgba(190, 61, 50, 0.88), rgba(228, 199, 138, 0.95));
}

.bll-coverage-panel .bll-tag-grid {
	gap: 14px;
}

.bll-coverage-panel .bll-tag-grid span {
	position: relative;
	padding: 12px 16px 12px 40px;
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(15, 39, 71, 0.1);
	box-shadow: 0 10px 18px rgba(15, 39, 71, 0.06);
}

.bll-coverage-panel .bll-tag-grid span::before {
	content: "";
	position: absolute;
	left: 15px;
	top: 50%;
	width: 11px;
	height: 11px;
	border-radius: 999px;
	transform: translateY(-50%);
	background: linear-gradient(135deg, var(--bll-red), var(--bll-gold));
	box-shadow: 0 0 0 6px rgba(190, 61, 50, 0.08);
}

.bll-route-grid--compact {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 20px;
}

.bll-route-link-panel {
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.92));
	border-color: rgba(15, 39, 71, 0.07);
}

.bll-route-link-list {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
	display: grid;
	gap: 0;
}

.bll-route-link-list li + li {
	border-top: 1px solid rgba(15, 39, 71, 0.08);
}

.bll-route-link-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 0;
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--bll-navy);
}

.bll-route-link-list a::after {
	content: "->";
	color: var(--bll-red);
	font-size: 0.82rem;
	font-weight: 700;
}

.bll-route-link-panel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: auto;
	padding-top: 22px;
}

.bll-route-section-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.bll-location-overview {
	margin-bottom: 34px;
}

.bll-route-group + .bll-route-group {
	margin-top: 42px;
}

.bll-route-group .bll-section-heading {
	margin-bottom: 22px;
}

.bll-split-panel,
.bll-booking-layout,
.bll-city-grid,
.bll-contact-panel {
	display: grid;
	gap: 24px;
}

.bll-split-panel {
	grid-template-columns: minmax(280px, 0.96fr) minmax(0, 1.04fr);
	align-items: center;
}

.bll-split-panel__image img {
	width: 100%;
	border-radius: 28px;
	box-shadow: var(--bll-shadow);
}

.bll-split-panel__content .bll-primary-button {
	margin-top: 10px;
}

.bll-check-list {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.bll-check-list li,
.bll-city-meta li {
	position: relative;
	padding-left: 28px;
	color: var(--bll-ink);
}

.bll-check-list li::before,
.bll-city-meta li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 12px;
	height: 12px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--bll-red), var(--bll-gold));
	box-shadow: 0 0 0 6px rgba(190, 61, 50, 0.08);
}

.bll-step-card span {
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bll-red);
	margin-bottom: 14px;
}

.bll-faq-list {
	display: grid;
	gap: 14px;
}

.bll-faq-item {
	padding: 20px 22px;
	border-radius: var(--bll-radius-sm);
	background: #ffffff;
	border: 1px solid rgba(15, 39, 71, 0.08);
}

.bll-faq-item summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--bll-navy);
	list-style: none;
}

.bll-faq-item summary::-webkit-details-marker {
	display: none;
}

.bll-faq-item[open] {
	box-shadow: var(--bll-shadow-soft);
}

.bll-cta-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	padding: 34px;
	background: linear-gradient(135deg, #101f36 0%, #163252 72%, #23476c 100%);
	color: #f5f8fc;
	border-radius: 30px;
}

.bll-cta-panel h2,
.bll-cta-panel .bll-kicker {
	color: #ffffff;
}

.bll-cta-panel p {
	color: #dbe7f7;
	max-width: 52ch;
}

.bll-cta-panel__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
}

.bll-page-hero--booking,
.bll-page-hero--city,
.bll-page-hero--login {
	padding-bottom: 18px;
}

.bll-booking-layout {
	grid-template-columns: minmax(0, 1.18fr) minmax(250px, 0.34fr);
	align-items: start;
	gap: 22px;
}

.bll-booking-widget-top {
	margin-bottom: 28px;
	display: grid;
	gap: 18px;
}

.bll-booking-page--start .bll-booking-widget-top {
	max-width: 1040px;
	margin: 8px auto 22px;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
	align-items: start;
	gap: 34px;
}

.bll-booking-widget-top .bll-section-heading--compact {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.bll-booking-page--start .bll-booking-widget-top .bll-section-heading--compact,
.bll-booking-page--start .bll-booking-widget-top .bll-quote-shell,
.bll-booking-page--start .bll-booking-widget-top .bll-quote-shell__header {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.bll-booking-widget-top .bll-quote-shell {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.bll-booking-page--start .bll-booking-widget-top .bll-quote-shell {
	width: 100%;
}

.bll-booking-widget-top .bll-quote-shell__header {
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.bll-booking-page--start .bll-booking-layout__main,
.bll-booking-page--continuation .bll-booking-layout__main {
	display: grid;
	gap: 18px;
}

.bll-booking-layout__main .bll-booking-wrap,
.bll-booking-layout__main .bll-booking-form[data-mode="full"] {
	width: 100%;
	max-width: none;
}

.bll-booking-page--start .bll-booking-layout {
	max-width: 1040px;
	margin: 0 auto;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
	gap: 18px;
}

.bll-booking-page--continuation .bll-booking-layout {
	max-width: 1080px;
	margin: 0 auto;
	grid-template-columns: minmax(0, 1fr);
}

.bll-booking-page--continuation .bll-booking-layout__main {
	gap: 14px;
}

.bll-booking-flow-note,
.bll-booking-stage-card {
	padding: 24px 26px;
	border-radius: 24px;
	border: 1px solid rgba(15, 39, 71, 0.08);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.96));
	box-shadow: var(--bll-shadow-soft);
}

.bll-booking-flow-note {
	border-color: rgba(190, 61, 50, 0.16);
	background: linear-gradient(180deg, #fff8f5 0%, #ffffff 100%);
}

.bll-booking-page--continuation .bll-booking-flow-note {
	padding: 20px 22px;
}

.bll-booking-page--start .bll-booking-stage-card {
	padding: 22px 24px;
}

.bll-booking-flow-note .bll-kicker,
.bll-booking-stage-card .bll-kicker {
	margin-bottom: 10px;
}

.bll-booking-flow-note h2,
.bll-booking-stage-card h2 {
	font-size: clamp(1.25rem, 1.45vw, 1.6rem);
}

.bll-booking-flow-note p,
.bll-booking-stage-card p {
	margin: 12px 0 0;
	max-width: 58ch;
}

.bll-booking-form[data-mode="full"] .bll-submit-booking-btn {
	display: block;
	width: 100%;
	min-height: 56px;
	border-radius: 16px;
	font-size: 1rem;
	font-weight: 700;
}

.bll-booking-form[data-mode="full"] .bll-booking-result:empty {
	display: none;
}

.bll-booking-form[data-mode="full"] .bll-booking-result:not(:empty) {
	margin-top: 14px !important;
}

.bll-booking-layout__side {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 118px;
}

.bll-booking-info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	max-width: 1080px;
	margin: 24px auto 0;
}

.bll-booking-info-grid .bll-info-card {
	height: 100%;
}

.bll-info-card--contact {
	display: grid;
	align-content: start;
	gap: 12px;
}

.bll-info-card--contact p {
	margin: 0;
}

.bll-info-card--wide {
	padding: 28px;
}

.bll-contact-panel {
	grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
	margin-top: 24px;
	padding: 28px;
}

.bll-login-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
	gap: 24px;
	align-items: start;
}

.bll-login-layout__side {
	display: grid;
	gap: 18px;
}

.bll-login-shell {
	padding: 24px;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 252, 0.96));
	border: 1px solid rgba(15, 39, 71, 0.08);
	box-shadow: var(--bll-shadow);
}

.bll-section-heading--compact {
	margin-bottom: 22px;
}

.bll-booking-support-heading {
	margin-top: 44px;
}

.bll-booking-page--start .bll-booking-support-heading,
.bll-booking-page--start .bll-booking-support-grid {
	max-width: 1040px;
	margin-left: auto;
	margin-right: auto;
}

.bll-booking-page--continuation .bll-booking-support-heading,
.bll-booking-page--continuation .bll-booking-support-grid {
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
}

.bll-booking-page--start .bll-booking-support-heading {
	margin-top: 30px;
}

.bll-booking-page--continuation .bll-booking-support-heading {
	margin-top: 26px;
}

.bll-city-grid {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
	align-items: start;
}

.bll-city-grid__main,
.bll-city-grid__side {
	display: grid;
	gap: 18px;
}

.bll-city-grid__side {
	position: sticky;
	top: 118px;
}

.bll-city-meta {
	display: grid;
	gap: 14px;
	margin-top: 16px;
}

.bll-city-meta strong,
.bll-city-meta span {
	display: block;
}

.bll-city-meta strong {
	margin-bottom: 4px;
	color: var(--bll-navy);
}

.bll-city-meta span {
	color: var(--bll-muted);
}

.bll-city-media-card {
	overflow: hidden;
	margin: 0;
	border-radius: var(--bll-radius);
	background: var(--bll-surface);
	border: 1px solid rgba(15, 39, 71, 0.08);
	box-shadow: var(--bll-shadow-soft);
}

.bll-city-media-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.bll-tag-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
}

.bll-tag-grid span {
	display: inline-flex;
	align-items: center;
	padding: 11px 14px;
	border-radius: 999px;
	background: var(--bll-surface-alt);
	color: var(--bll-navy);
	font-weight: 600;
	font-size: 0.94rem;
	border: 1px solid rgba(15, 39, 71, 0.08);
}

.bll-side-route-list {
	margin-top: 14px;
}

.bll-side-route-list a {
	color: var(--bll-navy);
	font-weight: 700;
}

.bll-side-route-list a:hover,
.bll-side-route-list a:focus {
	color: var(--bll-red);
}

.bll-prose {
	font-size: 1.02rem;
}

.bll-prose > *:first-child {
	margin-top: 0;
}

.bll-portal-shell {
	padding: 12px 0 28px;
}

.bll-portal-shell__content {
	width: min(100%, 100%);
}

.bll-footer {
	margin-top: 0;
	padding: 56px 0 22px;
	background: linear-gradient(180deg, var(--bll-footer-start) 0%, var(--bll-footer-end) 100%);
	color: #eef4fb;
	border-top: 1px solid rgba(15, 39, 71, 0.08);
}

.bll-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(180px, 1fr));
	gap: 24px;
}

.bll-footer__brand p {
	margin: 14px 0 0;
	max-width: 42ch;
	color: rgba(255, 255, 255, 0.86);
}

.bll-footer h2,
.bll-footer h3 {
	color: #ffffff;
	font-family: var(--bll-body);
	font-weight: 700;
	line-height: 1.15;
}

.bll-footer h2 {
	font-size: clamp(1.2rem, 1.15vw, 1.45rem);
}

.bll-footer h3 {
	font-size: clamp(0.84rem, 0.88vw, 0.94rem);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.bll-footer__contact {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.bll-footer__contact a,
.bll-footer-menu a {
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.9);
}

.bll-footer-menu {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.bll-footer__bottom {
	margin-top: 30px;
	padding-top: 18px;
	border-top: 1px solid rgba(15, 39, 71, 0.1);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.bll-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.92rem;
}

.bll-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 0;
}

.bll-footer__legal a {
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.92rem;
}

body.bll-nav-open {
	overflow: hidden;
}

.bll-booking-layout .bll-widget-blacklane,
.bll-quote-shell .bll-widget-blacklane {
	background: transparent;
	box-shadow: none;
}

.bll-booking-layout .bll-steps,
.bll-quote-shell .bll-steps {
	margin-bottom: 16px;
}

.bll-customer-login-page .bll-portal-topbar-box {
	display: none;
}

.bll-customer-login-page .bll-portal-box {
	margin: 0;
	max-width: none;
}

.bll-customer-login-page .bll-portal-login-box {
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.bll-customer-login-page .bll-portal-login-box h2 {
	margin: 0 0 12px;
	font-family: var(--bll-heading);
	font-size: 2rem;
	line-height: 1.1;
	color: var(--bll-navy);
}

.bll-customer-login-page .bll-portal-login-box p {
	color: var(--bll-muted);
}

.bll-customer-login-page .bll-portal-login-box form {
	display: grid;
	gap: 16px;
	margin-top: 18px;
}

.bll-customer-login-page .bll-portal-login-box .login-username,
.bll-customer-login-page .bll-portal-login-box .login-password,
.bll-customer-login-page .bll-portal-login-box .login-remember,
.bll-customer-login-page .bll-portal-login-box .login-submit {
	margin: 0;
}

.bll-customer-login-page .bll-portal-login-box label {
	display: block;
	margin: 0 0 8px;
	color: var(--bll-navy);
	font-weight: 600;
}

.bll-customer-login-page .bll-portal-login-box input[type="text"],
.bll-customer-login-page .bll-portal-login-box input[type="email"],
.bll-customer-login-page .bll-portal-login-box input[type="password"] {
	width: 100%;
	max-width: 100%;
	min-height: 56px;
	padding: 14px 16px;
	border: 1px solid rgba(15, 39, 71, 0.14);
	border-radius: 16px;
	background: #ffffff;
	color: var(--bll-navy);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.bll-customer-login-page .bll-portal-login-box input[type="text"]::placeholder,
.bll-customer-login-page .bll-portal-login-box input[type="email"]::placeholder,
.bll-customer-login-page .bll-portal-login-box input[type="password"]::placeholder {
	color: rgba(97, 113, 139, 0.78);
}

.bll-customer-login-page .bll-portal-login-box input[type="text"]:focus,
.bll-customer-login-page .bll-portal-login-box input[type="email"]:focus,
.bll-customer-login-page .bll-portal-login-box input[type="password"]:focus {
	border-color: rgba(201, 98, 67, 0.48);
	box-shadow: 0 0 0 4px rgba(201, 98, 67, 0.12);
	background: #ffffff;
}

.bll-customer-login-page .bll-portal-login-box .login-remember label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	color: var(--bll-muted);
}

.bll-customer-login-page .bll-portal-login-box .login-remember input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--bll-accent, var(--bll-red));
}

.bll-customer-login-page .bll-portal-login-box .login-submit input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	border: 0;
	border-radius: 16px;
	appearance: none;
	-webkit-appearance: none;
	background-color: #c96243 !important;
	background-image: linear-gradient(135deg, #c96243, #d37947) !important;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	box-shadow: 0 18px 30px rgba(201, 98, 67, 0.22);
}

.bll-customer-login-page .bll-portal-login-box .login-submit input[type="submit"]:hover,
.bll-customer-login-page .bll-portal-login-box .login-submit input[type="submit"]:focus {
	transform: translateY(-1px);
	background-color: #bf5a3a !important;
	background-image: linear-gradient(135deg, #bf5a3a, #d37947) !important;
	color: #ffffff;
}

.bll-customer-login-page .bll-portal-help-links {
	margin-top: 0;
}

.bll-customer-login-page .bll-portal-help-links a {
	color: var(--bll-accent, var(--bll-red));
	font-weight: 600;
}

.bll-customer-login-page .bll-portal-help-links a:hover,
.bll-customer-login-page .bll-portal-help-links a:focus {
	color: var(--bll-navy);
}

.bll-customer-login-page .bll-portal-login-hint {
	margin-top: 0;
	color: var(--bll-muted);
	font-size: 0.95rem;
	line-height: 1.75;
}

@media (max-width: 1120px) {
	.bll-hero__grid,
	.bll-booking-layout,
	.bll-city-grid,
	.bll-split-panel,
	.bll-contact-panel,
	.bll-login-layout,
	.bll-footer__grid,
	.bll-content-grid,
	.bll-coverage-panel,
	.bll-booking-info-grid {
		grid-template-columns: 1fr;
	}

	.bll-stat-grid,
	.bll-service-grid,
	.bll-route-grid,
	.bll-step-grid,
	.bll-contact-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bll-content-grid--triptych {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bll-hero-stage {
		padding: 0;
	}

	.bll-hero-stage__inner {
		padding: 24px;
		grid-template-columns: 1fr;
	}

	.bll-hero--cinematic .bll-hero__content {
		max-width: 100%;
	}

	.bll-hero--cinematic .bll-hero__form {
		transform: translateY(12px);
	}

	.bll-booking-layout__side,
	.bll-city-grid__side {
		position: static;
		top: auto;
	}

	.bll-booking-widget-top {
		margin-bottom: 28px;
	}

	.bll-booking-page--start .bll-booking-widget-top {
		max-width: 760px;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.bll-booking-page--start .bll-booking-widget-top .bll-section-heading--compact,
	.bll-booking-page--start .bll-booking-widget-top .bll-quote-shell,
	.bll-booking-page--start .bll-booking-widget-top .bll-quote-shell__header {
		max-width: 760px;
		margin-left: auto;
		margin-right: auto;
	}

	.bll-booking-page--start .bll-booking-layout,
	.bll-booking-page--continuation .bll-booking-layout,
	.bll-booking-page--start .bll-booking-support-heading,
	.bll-booking-page--start .bll-booking-support-grid,
	.bll-booking-page--continuation .bll-booking-support-heading,
	.bll-booking-page--continuation .bll-booking-support-grid,
	.bll-booking-info-grid {
		max-width: none;
	}

	.bll-cta-panel {
		grid-template-columns: 1fr;
	}

	.bll-cta-panel__actions {
		justify-content: flex-start;
	}

	.bll-footer__bottom {
		align-items: flex-start;
	}
}

@media (max-width: 860px) {
	.bll-topbar {
		display: none;
	}

	.bll-header__inner {
		padding: 10px 0;
	}

	.custom-logo-link img {
		max-width: min(var(--bll-mobile-logo-max-width), 250px);
		max-height: min(var(--bll-mobile-logo-max-height), 48px);
	}

	.bll-brand__image img {
		max-width: min(var(--bll-mobile-logo-max-width), 250px);
		max-height: min(var(--bll-mobile-logo-max-height), 48px);
	}

	.bll-nav-toggle {
		display: inline-flex;
		width: 42px;
		height: 42px;
		gap: 4px;
		border-radius: 12px;
	}

	.bll-nav-toggle span {
		width: 17px;
	}

	.bll-nav {
		position: absolute;
		top: calc(100% + 10px);
		left: 16px;
		right: 16px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		padding: 18px;
		border-radius: 22px;
		background: rgba(255, 255, 255, 0.98);
		border: 1px solid rgba(15, 39, 71, 0.08);
		box-shadow: var(--bll-shadow);
		max-height: calc(100vh - 110px);
		overflow-y: auto;
	}

	.bll-nav.is-open {
		display: flex;
	}

	.bll-menu,
	.bll-nav__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.bll-menu a {
		padding: 12px 0;
	}

	.bll-hero,
	.bll-page-hero {
		padding-top: 30px;
	}

	.bll-hero--cinematic {
		padding: 14px 0 24px;
	}

	.bll-hero--cinematic > .bll-container {
		width: min(calc(100% - 22px), var(--bll-container));
	}

	.bll-hero-stage {
		display: flex;
		flex-direction: column;
		gap: 16px;
		padding: 0;
		border-radius: 0;
		overflow: visible;
	}

	.bll-hero-stage__media img {
		display: block;
		width: 100%;
		aspect-ratio: 16 / 7.1;
		height: auto;
		object-fit: cover;
		object-position: 43% center;
		border-radius: 24px;
		box-shadow: 0 16px 34px rgba(11, 23, 38, 0.12);
	}

	.bll-hero-stage__media picture {
		display: block;
	}

	.bll-mobile-hero-message {
		display: none;
	}

	.bll-hero-stage__inner {
		position: static;
		display: flex;
		flex-direction: column;
		gap: 16px;
		padding: 0;
	}

	.bll-hero-stage__inner > * {
		width: 100%;
		min-width: 0;
	}

	.bll-hero--cinematic .bll-hero__content h1 {
		max-width: none;
		font-size: clamp(1.55rem, 6vw, 2.05rem);
		color: var(--bll-navy);
		text-shadow: none;
	}

	.bll-hero--cinematic .bll-hero__content {
		order: 2;
		width: 100%;
		max-width: none;
		padding: 20px;
		border-radius: 22px;
		background: rgba(255, 255, 255, 0.96);
		border: 1px solid rgba(15, 39, 71, 0.08);
		box-shadow: 0 14px 32px rgba(15, 39, 71, 0.08);
		backdrop-filter: none;
		transform: none;
	}

	.bll-hero--cinematic .bll-kicker {
		background: rgba(190, 61, 50, 0.08);
		border: 0;
		color: var(--bll-red);
	}

	.bll-hero--cinematic .bll-hero__lead {
		max-width: none;
		color: var(--bll-muted);
		font-size: 0.96rem;
	}

	.bll-hero--cinematic .bll-hero__content h1,
	.bll-hero--cinematic .bll-hero__lead {
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	.bll-hero--cinematic .bll-hero__form {
		order: 1;
		align-self: stretch;
		max-width: none;
		transform: none;
	}

	.home .bll-hero__form {
		order: 1;
	}

	.bll-hero--cinematic .bll-hero__form,
	.bll-quote-shell--hero,
	.bll-quote-shell--hero .bll-booking-wrap {
		width: 100%;
	}

	.bll-quote-shell--hero .bll-booking-wrap {
		max-width: none !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.bll-quote-shell--hero {
		max-width: none;
		padding: 0;
		border-radius: 0;
		background: transparent;
		border-color: transparent;
		box-shadow: none;
		backdrop-filter: none;
	}

	.bll-quote-shell--hero .bll-quote-shell__header {
		padding: 0;
		margin-bottom: 10px;
	}

	.bll-quote-shell--hero .bll-quote-shell__header span {
		margin-left: 2px;
	}

	.bll-quote-shell--hero .bll-quote-shell__header h2 {
		display: none;
	}

	.bll-quote-shell--hero .bll-widget-blacklane,
	.bll-quote-shell--hero .bll-form-card,
	.bll-quote-shell--hero .bll-widget-card,
	.bll-quote-shell--hero .bll-booking-card,
	.bll-quote-shell--hero form {
		background: transparent !important;
		border-color: transparent !important;
	}

	.bll-quote-shell--hero .bll-widget-blacklane {
		padding: 0 !important;
	}

	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] {
		width: 100% !important;
		max-width: none !important;
		padding: 16px !important;
		background: rgba(244, 247, 251, 0.94) !important;
		border-color: rgba(15, 39, 71, 0.08) !important;
		box-shadow: 0 14px 30px rgba(15, 39, 71, 0.08) !important;
	}

	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] input[type="text"],
	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] input[type="date"],
	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] input[type="time"],
	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] input[type="email"],
	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] input[type="tel"],
	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] input[type="number"],
	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] select,
	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] textarea {
		background: #ffffff !important;
		border-color: rgba(15, 39, 71, 0.1) !important;
	}

	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] label,
	.bll-quote-shell--hero .bll-booking-form.bll-widget-blacklane[data-mode="widget"] .bll-field label,
	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] .bll-field-label,
	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] .bll-form-label,
	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] .bll-check,
	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] strong {
		color: var(--bll-navy) !important;
	}

	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] p,
	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] small,
	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] .description {
		color: var(--bll-muted) !important;
	}

	.bll-section--stats {
		margin-top: 0;
		padding-top: 8px;
		padding-bottom: 30px;
	}

	.bll-section--stats .bll-stat-card {
		padding: 19px;
		border-radius: 22px;
		box-shadow: 0 12px 26px rgba(15, 39, 71, 0.08);
	}

	.bll-trust-strip,
	.bll-stat-grid,
	.bll-service-grid,
	.bll-route-grid,
	.bll-step-grid,
	.bll-contact-grid {
		grid-template-columns: 1fr;
	}

	.bll-content-grid--triptych {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.bll-container {
		width: min(calc(100% - 22px), var(--bll-container));
	}

	.home .bll-hero--cinematic > .bll-container {
		width: min(calc(100% - 32px), var(--bll-container));
	}

	.bll-header__inner {
		width: min(calc(100% - 22px), 1380px);
		gap: 14px;
	}

	.custom-logo-link img,
	.bll-brand__image img {
		max-width: min(var(--bll-mobile-logo-max-width), 240px);
		max-height: min(var(--bll-mobile-logo-max-height), 46px);
	}

	.bll-hero__content h1 {
		max-width: none;
		font-size: clamp(1.75rem, 7vw, 2.35rem);
	}

	.bll-page-hero h1 {
		font-size: clamp(1.45rem, 6vw, 1.85rem);
	}

	.bll-hero__lead,
	.bll-page-hero p,
	.bll-section-heading p,
	.bll-prose {
		font-size: 1rem;
	}

	.bll-hero,
	.bll-page-hero {
		padding: 26px 0 22px;
	}

	.bll-hero-stage {
		padding: 0;
		border-radius: 0;
	}

	.home .bll-hero-stage {
		gap: 14px;
	}

	.home .bll-hero-stage__media {
		overflow: hidden;
		border-radius: 24px;
		box-shadow: 0 16px 34px rgba(11, 23, 38, 0.12);
	}

	.bll-hero-stage__media img {
		aspect-ratio: 2 / 1;
		object-position: center center;
		border-radius: 0;
		box-shadow: none;
	}

	.bll-mobile-hero-message {
		display: none !important;
	}

	.bll-mobile-hero-message h1 {
		width: 18ch;
		margin: 0;
		font-family: var(--bll-heading);
		font-size: clamp(1.18rem, 5.1vw, 1.92rem);
		font-weight: 500;
		line-height: 1.02;
		letter-spacing: 0;
		color: var(--bll-navy);
	}

	.bll-mobile-hero-message p {
		margin: 7px 0 0;
		font-size: clamp(0.72rem, 3vw, 0.95rem);
		font-weight: 500;
		line-height: 1.25;
		letter-spacing: 0;
		color: var(--bll-navy);
	}

	.bll-mobile-hero-trust {
		width: fit-content;
		max-width: 100%;
		display: inline-flex;
		align-items: center;
		gap: 7px;
		margin-top: auto;
		padding: 7px 10px;
		border-radius: 13px;
		background: rgba(255, 255, 255, 0.72);
		border: 1px solid rgba(176, 111, 37, 0.26);
		box-shadow: 0 10px 24px rgba(112, 67, 23, 0.08);
		color: #a8621e;
	}

	.bll-mobile-hero-trust svg {
		width: 16px;
		height: 16px;
		flex: 0 0 auto;
	}

	.bll-mobile-hero-trust span {
		font-size: 0.76rem;
		font-weight: 600;
		line-height: 1.15;
		color: var(--bll-navy);
	}

	.bll-hero-stage__inner {
		padding: 0;
	}

	.bll-hero--cinematic .bll-hero__content {
		display: none;
	}

	.bll-hero--cinematic .bll-hero__form {
		transform: none;
	}

	.bll-quote-shell--hero {
		padding: 0;
	}

	.bll-quote-shell--hero .bll-booking-form[data-mode="widget"] {
		padding: 17px !important;
		border-radius: 22px !important;
		background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%) !important;
		border: 1px solid rgba(15, 39, 71, 0.1) !important;
		box-shadow: 0 16px 34px rgba(15, 39, 71, 0.08) !important;
	}

	.bll-section,
	.bll-page-section {
		padding: 28px 0 52px;
	}

	.bll-section--stats {
		padding: 6px 0 28px;
	}

	.bll-section-heading {
		margin-bottom: 22px;
	}

	.bll-section-heading h2 {
		font-size: clamp(1.35rem, 7vw, 1.7rem);
	}

	.bll-service-card__body {
		padding: 18px;
	}

	.bll-service-card h3,
	.bll-route-card h3,
	.bll-route-card h2,
	.bll-info-card h2,
	.bll-cta-panel h2 {
		font-size: clamp(1.18rem, 6vw, 1.45rem);
	}

	.bll-hero__chips,
	.bll-hero__actions,
	.bll-route-section-actions,
	.bll-route-link-panel__actions,
	.bll-cta-panel__actions {
		gap: 10px;
	}

	.bll-quote-shell {
		padding: 16px;
	}

	.bll-quote-shell.bll-quote-shell--hero {
		padding: 0;
	}

	.bll-quote-shell__header {
		padding: 6px 4px 14px;
	}

	.bll-quote-shell__header h2 {
		font-size: 1.65rem;
	}

	.bll-booking-form[data-mode="full"] .bll-submit-booking-btn {
		display: block;
		width: 100%;
		margin-top: 14px !important;
	}

	.bll-trust-strip {
		margin-top: 24px;
	}

	.bll-quote-shell,
	.bll-stat-card,
	.bll-service-card,
	.bll-route-card,
	.bll-step-card,
	.bll-info-card,
	.bll-contact-panel,
	.bll-cta-panel {
		border-radius: 20px;
	}

	.bll-primary-button,
	.bll-secondary-button,
	.bll-link-button,
	.bll-whatsapp-button {
		width: 100%;
	}

	.bll-faq-item {
		padding: 18px 18px;
	}

	.bll-footer {
		padding: 44px 0 18px;
	}

	.bll-footer__bottom,
	.bll-footer__legal {
		gap: 10px;
	}
}

.bll-page-hero--custom {
	background: var(--bll-page-hero-bg, transparent);
}

.bll-page-hero--custom h1 {
	color: var(--bll-page-hero-text, var(--bll-navy));
	font-size: clamp(1.45rem, 4vw, var(--bll-page-hero-title-size, 1.95rem));
}

.bll-page-hero--custom p {
	color: var(--bll-page-hero-copy, var(--bll-muted));
}

.bll-page-hero--has-image {
	padding: 58px 0 50px;
	background-image:
		linear-gradient(90deg, var(--bll-page-hero-overlay-start, rgba(15, 39, 71, 0.62)), var(--bll-page-hero-overlay-end, rgba(15, 39, 71, 0.22))),
		var(--bll-page-hero-image);
	background-position: var(--bll-page-hero-position, center center);
	background-size: cover;
	color: var(--bll-page-hero-text, #ffffff);
}

.bll-page-hero--has-image h1,
.bll-page-hero--has-image p {
	color: var(--bll-page-hero-text, #ffffff);
}

.bll-page-hero--has-image .bll-kicker {
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--bll-page-hero-text, #ffffff);
}

@media (max-width: 640px) {
	.bll-page-hero--has-image {
		padding: 38px 0 34px;
	}
}
