.travel-form {

	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.travel-form__section {
	padding: 30px;
	border-bottom: 1px solid #e5e5e5;
}

.travel-form__section:last-child {
	border-bottom: none;
}

.travel-form__title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 25px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Form Groups */
.form-group {
	margin-bottom: 20px;
}

.form-group__label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #333;
	font-size: 14px;
}

.form-group__input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group__input:focus {
	outline: none;
	border-color: var(--color-main2);
	box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group__select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	background-color: white;
	transition: border-color 0.3s ease;
}

.form-group__select:focus {
	outline: none;
	border-color: var(--color-main2);
}

.form-group__textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	resize: vertical;
	min-height: 100px;
	font-family: inherit;
	transition: border-color 0.3s ease;
}

.form-group__textarea:focus {
	outline: none;
	border-color: var(--color-main2);
}

/* Checkbox Groups */
.checkbox-group {
	margin-bottom: 20px;
}

.checkbox-group__label {
	display: block;
	margin-bottom: 12px;
	font-weight: 500;
	color: #333;
	font-size: 14px;
}

.checkbox-group__options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 30px;
}

.checkbox-option {
	display: flex;
	align-items: center;
}

.checkbox-option__input {
	margin-right: 8px;
	margin-top: -5px;
	transform: scale(1.1);
	accent-color: var(--color-main2);
}

.checkbox-option__label {
	font-size: 14px;
	color: #555;
	cursor: pointer;
}

/* Radio Groups */
.radio-group {
	margin-bottom: 20px;
}

.radio-group__label {
	display: block;
	margin-bottom: 12px;
	font-weight: 500;
	color: #333;
	font-size: 14px;
}

.radio-group__options {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.radio-option {
	display: flex;
	align-items: center;
}

.radio-option__input {
	margin-right: 8px;
	transform: scale(1.1);
	accent-color: var(--color-main2);
}

.radio-option__label {
	font-size: 14px;
	color: #555;
	cursor: pointer;
	margin-bottom: 0;
}

/* Grid Layout */
.form-grid {
	gap: 10px 0;
}

.form-grid--triple {}

.form-grid--wide {
	margin-bottom: 20px;
}

/* Budget Display */
.budget-info {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 8px;
	border: 1px solid #e9ecef;
	font-size: 14px;
	color: #6c757d;
	font-style: italic;
}

/* Terms */
.terms {
	margin-top: 20px;
	padding: 10px 15px;
	background: #f8f9fa;
	border-radius: 8px;
	border-left: 4px solid var(--color-main2);
}

.terms__text {
	font-size: 13px;
	color: #555;
	margin-bottom: 0;
}

.terms__text .checkbox-option__input {
	margin-top: 0;
	transform: translateY(2px);
}

.terms__link {
	color: var(--color-main2);
	text-decoration: none;
}

.terms__link:hover {
	text-decoration: underline;
}

/* Submit Button */
.submit-button {
	width: 100%;
	padding: 15px;
	background: linear-gradient(135deg, var(--color-main2) 0%, #45a049 100%);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 20px;
}

.submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

/* Accommodation Type Block */
.accommodation-type {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	background-color: #fff;
	cursor: pointer;
	transition: border-color 0.3s ease, background-color 0.3s ease;
}

.accommodation-type:hover {
	border-color: #3498db;
	background-color: #f8f9ff;
}

.accommodation-type__icon {
	font-size: 1.25rem;
	color: #f39c12;
}

.accommodation-type__text {
	font-size: 0.875rem;
	color: #495057;
}

.booking-form__section {
	padding: 30px 30px 0;

}

.booking-form__section:first-child {
	padding-top: 0;
}

.booking-form__title {
	margin-bottom: 10px;
	text-align: center;
}

.booking-form__section:not(:last-child) {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 30px;
}

#booking-form3 {
	/* max-width: 500px;
	margin: 0 auto; */
}
.sidebar-scroll__img img {
	width: 100%;
    height: 685px;
    border-radius: 10px;
}

.booking-form .error {
	color: red;
	font-size: 13px;
}

.form-group__wbtn {
	margin-top: 10px;
}

/* .booking-form__wbtn {
	margin-top: 20px;
} */

/* Responsive */
@media (max-width: 768px) {



	.radio-group__options {
		flex-direction: column;
		gap: 10px;
	}

	.travel-form__section {
		padding: 20px;
	}
}
