.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;
} */
#modalPopupForm .modal__content{
    padding: 0;
}
#modalPopupForm .modal{
    border-radius: 0;
    max-width: 430px;
}
#modalPopupForm .sign-up__close.modal__close{
    background: transparent;
    top: 0;
    color: #f9c10a;
    right: 0;
}
#modalPopupForm .modal__body{
    max-height: 90vh;
}
#modalPopupForm  .form-control{
    height: 40px;
    font-size: 14px;
}
.sign-up {
    background: linear-gradient(180deg, #305583, #1e5ba5);
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Element: sign-up__close */
.sign-up__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffc107;
    font-size: 36px;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.sign-up__close:hover {
    opacity: 1;
}
.sign-up__form input::-webkit-date-and-time-value{
    text-align: left;
}
/* Element: sign-up__header */
.sign-up__header {
    position: relative;
    padding: 40px 20px 30px;
    text-align: center;
}

/* Element: sign-up__title */
.sign-up__title {
    color: white;
    font-size: 18px;
    letter-spacing: 8px;
    margin-bottom: 10px;
    font-weight: 300;
}

/* Element: sign-up__main-title */
.sign-up__main-title {
     color: #ffc107;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Element: sign-up__subtitle */
.sign-up__subtitle {
    color: white;
    font-size: 15px;
    /*letter-spacing: 6px;*/
    font-weight: 300;
}

/* Element: sign-up__image */
.sign-up__image {
    position: relative;
    width: 100%;
    height: 210px;
}

.sign-up__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Element: sign-up__badge */
.sign-up__badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}
.sign-up__badge img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Element: sign-up__badge-text */
.sign-up__badge-text {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

/* Element: sign-up__badge-discount */
.sign-up__badge-discount {
    font-size: 20px;
    font-weight: 900;
    color: #ffc107;
    line-height: 0.9;
}

/* Element: sign-up__badge-subtext */
.sign-up__badge-subtext {
    font-size: 9px;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Element: sign-up__content */
.sign-up__content {
    padding: 20px;
}

/* Element: sign-up__heading */
.sign-up__heading {
    color: white;
    font-size: 26px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 400;
}

/* Element: sign-up__description */
.sign-up__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 35px;
}

/* Element: sign-up__form */
.sign-up__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Element: sign-up__row */
.sign-up__row {
    gap: 20px 0;
}

/* Element: sign-up__field */
.sign-up__field {
    display: flex;
    flex-direction: column;
}

/* Modifier: sign-up__field--full */
.sign-up__field--full {
    grid-column: 1 / -1;
}

/* Element: sign-up__label */
.sign-up__label {
    color: white;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 400;
}

/* Element: sign-up__label-required */
.sign-up__label-required {
    color: #ff6b6b;
    margin-left: 3px;
}

/* Element: sign-up__input */
.sign-up__input {
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    background: white;
    transition: box-shadow 0.3s;
}

.sign-up__input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
}

/* Element: sign-up__button */
.sign-up__button {
    background: #f00;
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    width: fit-content;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 15px auto 0;
}

.sign-up__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgb(243 3 3 / 49%);
}

.sign-up__button:active {
    transform: translateY(0);
}

/* Element: sign-up__footer */
.sign-up__footer {
    color: white;
    font-size: 12px;
    text-align: center;
    margin-top: 25px;
    line-height: 1.6;
}

/* Element: sign-up__link */
.sign-up__link {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
}

.sign-up__link:hover {
    text-decoration: underline;
    color: #f00;
}
/* Responsive */
@media (max-width: 768px) {



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

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