.apb-booking,
.apb-manage {
	width: 100%;
}
.apb-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}
.apb-tab input {
	position: absolute;
	opacity: 0;
}
.apb-tab span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 22px;
	border-radius: 8px;
	background: #f1f4f8;
	color: #061e3c;
	font-weight: 800;
	cursor: pointer;
}
.apb-tab input:checked + span {
	background: #d8a72f;
	color: #061e3c;
}
.apb-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr 1fr auto;
	gap: 14px;
	align-items: end;
}
.apb-booking:not(.apb-booking--compact) .apb-grid {
	grid-template-columns: repeat(3, 1fr);
}
.apb-form label,
.apb-customer-fields label {
	display: grid;
	gap: 7px;
	color: #061e3c;
	font-weight: 800;
	font-size: 13px;
}
.apb-form input,
.apb-form select {
	width: 100%;
	min-height: 52px;
	padding: 0 14px;
	border: 1px solid #e2e7ef;
	border-radius: 8px;
	background: #fff;
	color: #10213a;
	font: inherit;
}
.apb-button {
	min-height: 52px;
	padding: 0 22px;
	border: 0;
	border-radius: 8px;
	background: #d8a72f;
	color: #061e3c;
	font-weight: 900;
	cursor: pointer;
}
.apb-button--wide {
	width: 100%;
	background: #061e3c;
	color: #fff;
}
.apb-customer-fields {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(255,255,255,.18);
}
.quote-panel .apb-form label,
.quote-panel .apb-customer-fields label {
	color: #fff;
}
.apb-services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	width: min(1130px, 100%);
	margin: 0 auto;
}
.apb-service-card {
	overflow: hidden;
	border: 1px solid #e6e9ef;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(6,30,60,.08);
}
.apb-service-card__image {
	height: 158px;
	background:
		linear-gradient(180deg, rgba(6,30,60,0) 0%, rgba(6,30,60,.14) 100%),
		url("../images/service-parking.jpg");
	background-position: center;
	background-size: cover;
}
.apb-service-card h3,
.apb-service-card p,
.apb-service-card ul {
	margin-left: 24px;
	margin-right: 24px;
}
.apb-service-card h3 {
	margin-top: 24px;
	font-size: 24px;
}
.apb-service-card p {
	color: #59667a;
}
.apb-service-card ul {
	padding: 0;
	list-style: none;
}
.apb-service-card li {
	margin: 8px 0;
	color: #293a55;
	font-size: 14px;
}
.apb-service-card li::before {
	content: "✓";
	margin-right: 8px;
	color: #d8a72f;
	font-weight: 900;
}
.apb-service-card .apb-button {
	margin: 0 24px 24px;
}
.apb-alert,
.apb-booking-card {
	margin: 0 0 18px;
	padding: 18px 20px;
	border-radius: 8px;
	background: #f6f8fb;
}
.apb-alert--error {
	background: #fff2f1;
	color: #9b1c13;
}
.apb-alert--success {
	background: #ecf8f0;
	color: #176535;
}
.apb-form--lookup {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	gap: 14px;
	align-items: end;
	margin-bottom: 24px;
}
.apb-booking-card dl {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 10px;
}
.apb-booking-card dt {
	font-weight: 900;
	color: #061e3c;
}
.apb-booking-card dd {
	margin: 0;
}

@media (max-width: 920px) {
	.apb-grid,
	.apb-booking:not(.apb-booking--compact) .apb-grid,
	.apb-customer-fields,
	.apb-services,
	.apb-form--lookup {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.apb-grid,
	.apb-booking:not(.apb-booking--compact) .apb-grid,
	.apb-customer-fields,
	.apb-services,
	.apb-form--lookup {
		grid-template-columns: 1fr;
	}
}
