
.booking.tb-space {
	padding: 60px 0;
	background-color: #fbfcfc; 
	font-family: 'Poppins', sans-serif;
}

.form-heading {
	font-size: 32px;
	font-weight: 700;
	color: #252525;
	margin-bottom: 20px;
	line-height: 1.3;
}

.desc {
	font-size: 16px;
	color: #5c5e62;
	line-height: 1.8;
}

.tour-image img {
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	object-fit: cover;
}

.booking-form-wrap {
	background-color: #ffffff;
	border-radius: 15px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
	margin-top: 50px;
	padding: 40px;
	border: 1px solid #eaeaea;
}

.title-step {
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color); 
	border-bottom: 2px dashed #eaeaea;
	padding-bottom: 15px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.title-step:first-of-type {
	margin-top: 0;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	font-weight: 600;
	color: #252525;
	margin-bottom: 10px;
	display: block;
	font-size: 15px;
}

.required {
	color: #e74c3c;
	margin-left: 3px;
	font-weight: bold;
}

.note-input-field {
	font-size: 13px;
	color: #888;
	margin-top: 8px;
	font-style: italic;
}

.input-field input,
.input-field select,
.input-field textarea,
.form-group select,
.form-flex input,
.form-flex select {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid #dcdcdc;
	border-radius: 8px;
	background-color: #fafafa;
	color: #333;
	font-size: 15px;
	font-family: 'Poppins', sans-serif;
	transition: all 0.3s ease;
}

.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus,
.form-group select:focus,
.form-flex input:focus,
.form-flex select:focus {
	border-color: #ADA075;
	outline: none;
	background-color: #fff;
	box-shadow: 0 0 0 4px rgba(173, 160, 117, 0.15);
}

textarea {
	resize: vertical;
	min-height: 120px;
	width: 100%;
}

.form-flex {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.form-flex .heading-row {
	margin-bottom: 0;
}

.submit-row {
	margin-top: 40px;
}

.submit-row .btn {
	background-color: #065dba;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 16px 0;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.submit-row .btn:hover {
	background-color: var(--primary-color);
	color: #252525;
	box-shadow: 0 8px 25px rgba(173, 160, 117, 0.4);
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.booking-form-wrap {
		padding: 25px 15px;
	}

	.tour-image {
		margin-top: 30px;
	}

	.form-flex {
		flex-direction: column;
		align-items: flex-start;
	}

	.form-flex .heading-row {
		margin-bottom: 10px;
		padding-left: 0;
	}

	.form-flex > div {
		padding-left: 0;
		padding-right: 0;
	}
}

.form-group.form-flex {
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.form-group.form-flex .heading-row {
	flex: 0 0 35%; 
	max-width: 35%;
	padding-right: 15px;
	margin-bottom: 0;
	font-weight: 600;
	text-align: left; 
}

.form-group.form-flex > div:not(.heading-row) {
	flex: 0 0 65%; 
	max-width: 65%;
	padding: 0;
}

.form-group.form-flex > div:not(.heading-row) > span {
	display: block;
	width: 100%;
}

@media (max-width: 768px) {
	.form-group.form-flex {
		flex-direction: column;
		align-items: flex-start;
	}

	.form-group.form-flex .heading-row,
	.form-group.form-flex > div:not(.heading-row) {
		flex: 0 0 100%; 
		max-width: 100%;
	}

	.form-group.form-flex .heading-row {
		margin-bottom: 8px;
	}
}