.hb-booking-form {
	background: #ffffff;
	padding: 30px;
	box-sizing: border-box;
}

.hb-form-heading {
	margin: 0 0 20px 0;
	color: #1a3a5c;
}

.hb-form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hb-form-field {
	display: flex;
	flex-direction: column;
	margin-bottom: 16px;
	box-sizing: border-box;
	width: 100%;
}

.hb-field-width-50 {
	width: calc(50% - 8px);
}

@media (max-width: 600px) {
	.hb-field-width-50 {
		width: 100%;
	}
}

.hb-form-label {
	display: block;
	margin-bottom: 6px;
	color: #1a3a5c;
	font-weight: 600;
	font-size: 14px;
}

.hb-form-input {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #d5dde2;
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 15px;
	background: #ffffff;
	color: #333333;
	transition: border-color 0.15s ease;
}

.hb-form-input:not(textarea) {
	height: 46px;
}

textarea.hb-form-input {
	height: auto;
}

.hb-form-input:focus {
	border-color: #2a8a9e;
	outline: none;
}

.hb-radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	min-height: 46px;
}

.hb-radio-option {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	color: #333333;
	cursor: pointer;
}

.hb-form-message {
	padding: 12px 16px;
	border-radius: 6px;
	margin-bottom: 16px;
	font-size: 14px;
}

.hb-form-message.hb-success {
	background: #e6f4ea;
	color: #1e7e34;
	border: 1px solid #b7ddc0;
}

.hb-form-message.hb-error {
	background: #fdecea;
	color: #b3261e;
	border: 1px solid #f5c6c3;
}

.hb-form-actions {
	display: flex;
	justify-content: flex-start;
}

.hb-submit-button {
	background: #2a8a9e;
	color: #ffffff;
	border: none;
	cursor: pointer;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 6px;
	transition: background-color 0.15s ease;
}

.hb-submit-button:hover {
	background: #1a3a5c;
}

.hb-submit-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
