.section {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f0f0; /* Light background color */
}

#booking {
	font-family: 'Montserrat', sans-serif;
	background-image: url('/assets/img/bikeimg/service6.webp');
	background-size: cover;
	background-position: center;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

#booking::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.6);
}

.booking-form {
	max-width: 600px;
	width: 100%;
	margin: auto;
	padding: 40px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 1;
}

.booking-form .form-header {
	text-align: center;
	margin-bottom: 30px;
}

.booking-form .form-header h1 {
	font-size: 48px;
	text-transform: uppercase;
	font-weight: 700;
	color: #ffc001;
	margin: 0;
	letter-spacing: 2px;
}

.booking-form form {
	background: transparent;
	padding: 0;
}

.booking-form .form-group {
	position: relative;
	margin-bottom: 20px;
}

.booking-form .form-control {
	background-color: #ffffff;
	border: 1px solid #dddddd;
	height: 50px;
	border-radius: 5px;
	box-shadow: none;
	font-weight: 400;
	color: #333;
	padding: 0 15px;
	transition: border-color 0.3s ease;
}

.booking-form .form-control:focus {
	border-color: #ffc001;
	outline: none;
}

.booking-form .form-control::placeholder {
	color: rgba(51, 51, 51, 0.5);
}

.booking-form select.form-control {
	appearance: none;
	padding-right: 40px;
}

.booking-form select.form-control+.select-arrow {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	text-align: center;
	pointer-events: none;
	color: #333;
	font-size: 14px;
}

.booking-form select.form-control+.select-arrow:after {
	content: '\25BC';
	display: block;
	font-size: 16px;
}

.booking-form .form-label {
	color: #333;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 5px;
	display: block;
	text-transform: uppercase;
}

.booking-form .submit-btn {
	color: #fff;
	background-color: #ffc001;
	font-weight: 700;
	height: 50px;
	border: none;
	width: 100%;
	display: block;
	border-radius: 5px;
	text-transform: uppercase;
	transition: background-color 0.3s ease;
	cursor: pointer;
}

.booking-form .submit-btn:hover {
	background-color: #e6a800;
}
