/* ── Belt Book Now Form component ──────────────────────────────────────── */

.belt-bnf {
	background-color: #195789;
	padding: 50px 20px;
	width: 100%;
	box-sizing: border-box;
}

.belt-bnf__inner {
	max-width: 1312px;
	margin: 0 auto !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}

.belt-bnf__header, .belt-bnf__footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
	width: 100%;
}

.belt-bnf__title {
	font-size: 40px !important;
	line-height: normal !important;
	font-weight: 700 !important;
	color: #fff !important;
	margin: 0 !important;
	padding: 0 !important;
}

.belt-bnf__description {
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
	margin: 0 !important;
	max-width: 900px;
}

.belt-bnf__footer_content {
	font-size: 16px;
	line-height: 1.25;
	color: #fff;
	margin: 0 !important;
	max-width: 900px;
}
.belt-bnf__footer_content a {
	color: #fff !important;
	text-decoration: underline !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease;
	opacity: 1;
}
.belt-bnf__footer_content a:hover {
	opacity: 0.75;
}

.belt-bnf__description strong {
	font-weight: 700;
}

.belt-bnf__card {
	width: 100%;
	background-color: #fff;
	border: 2px solid #e1e8f5;
	border-radius: 8px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	padding: 25px 50px;
	box-sizing: border-box;
}

.belt-bnf__row {
	display: flex;
	align-items: stretch;
	width: 100%;
}

.belt-bnf__field {
	display: flex;
	align-items: stretch;
}

.belt-bnf__field--select,
.belt-bnf__field--zip {
	flex: 1;
	min-width: 0;
}

.belt-bnf__field--select {
	position: relative;
}

.belt-bnf__select {
	width: 100%;
	height: 100%;
	background-color: #f6f6f6;
	border: 1px solid rgba(128, 128, 128, 0.5);
	border-right: none;
	border-radius: 6px 0 0 6px;
	padding: 16px 44px 16px 20px;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	color: #232323;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	box-sizing: border-box;
	line-height: normal;
}
.belt-bnf__select option:disabled, .belt-bnf__select:has(option:disabled:checked) {
	color: #808080;
}

.belt-bnf__select:focus {
	outline: 2px solid #195789;
	outline-offset: -2px;
	position: relative;
	z-index: 1;
}

.belt-bnf__chevron {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: #808080;
	font-size: 13px;
}

.belt-bnf__input {
	width: 100%;
	height: 100%;
	background-color: #f6f6f6;
	border: 1px solid rgba(128, 128, 128, 0.5);
	border-right: none;
	border-radius: 0;
	padding: 16px 20px !important;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	color: #232323;
	box-sizing: border-box;
	line-height: normal;
	appearance: none;
	-webkit-appearance: none;
}

.belt-bnf__input::placeholder {
	color: #808080;
}

.belt-bnf__input:focus {
	outline: 2px solid #195789;
	outline-offset: -2px;
	position: relative;
	z-index: 1;
}

.belt-bnf__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: #ca5001;
	border: none;
	border-radius: 0 6px 6px 0;
	padding: 16px 24px;
	font-size: 20px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.2s ease;
	line-height: normal;
	flex-shrink: 0;
}

.belt-bnf__submit:hover,
.belt-bnf__submit:focus {
	background-color: #b04500;
	outline: none;
	color: #fff;
}

.belt-bnf__submit i {
	font-size: 18px;
	flex-shrink: 0;
}

.belt-bnf__submit.is-loading {
	opacity: 0.75;
	cursor: wait;
	pointer-events: none;
}

.belt-bnf__error {
	font-size: 13px;
	color: #d32f2f;
	margin: 6px 0 0 !important;
	font-family: 'Poppins', sans-serif !important;
}

@media (max-width: 1100px) {
	.belt-bnf__card {
		padding: 25px 32px;
	}

	.belt-bnf__submit {
		font-size: 17px;
		padding: 16px 20px;
	}
}

@media (max-width: 900px) {
	.belt-bnf__title {
		font-size: 32px !important;
	}

	.belt-bnf__description {
		font-size: 17px;
	}

	.belt-bnf__card {
		padding: 24px;
	}

	.belt-bnf__row {
		flex-direction: column;
	}

	.belt-bnf__field--select,
	.belt-bnf__field--zip {
		flex: unset;
		width: 100%;
	}

	.belt-bnf__select {
		border-right: 1px solid rgba(128, 128, 128, 0.5);
		border-bottom: none;
		border-radius: 6px 6px 0 0;
		width: 100%;
		height: auto;
	}

	.belt-bnf__input {
		border-right: 1px solid rgba(128, 128, 128, 0.5);
		border-bottom: none;
		border-radius: 0;
		width: 100%;
		height: auto;
	}

	.belt-bnf__submit {
		border-radius: 0 0 6px 6px;
		width: 100%;
		font-size: 16px;
		padding: 14px 20px;
	}
}

@media (max-width: 600px) {
	.belt-bnf {
		padding: 40px 16px;
	}

	.belt-bnf__title {
		font-size: 26px !important;
	}

	.belt-bnf__description {
		font-size: 15px;
	}

	.belt-bnf__card {
		padding: 18px 16px;
	}
}
