:where([class^="ri-"])::before {
	content: "\f3c2"
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

body {
	font-family: 'Montserrat', sans-serif;
	color: #2B2D42;
	overflow-x: hidden
}

.glass-card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.3)
}

.btn-primary {
	background: #FF6B6B;
	color: #fff;
	transition: all 0.3s ease
}

.btn-primary:hover {
	background: #ff5252;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3)
}

.btn-secondary {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
	transition: all 0.3s ease
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px)
}

.feature-card {
	background: #fff;
	transition: all 0.4s ease
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(10, 123, 131, 0.15)
}

header {
	transition: all 0.3s ease
}

header.scrolled {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08)
}

.hero-overlay {
	background: linear-gradient(135deg, rgba(10, 123, 131, 0.7) 0%, rgba(212, 165, 116, 0.5) 100%)
}

.custom-radio {
	appearance: none;
	width: 1.25rem;
	height: 1.25rem;
	border: 2px solid #d4c5a9;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
}

.custom-radio:checked {
	border-color: #57b5e7;
	background-color: #57b5e7;
}

.custom-radio:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: #fff;
}

.custom-checkbox {
	appearance: none;
	width: 1.25rem;
	height: 1.25rem;
	border: 2px solid #d4c5a9;
	border-radius: 0.25rem;
	background-color: #fff;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
}

.custom-checkbox:checked {
	border-color: #57b5e7;
	background-color: #57b5e7;
}

.custom-checkbox:checked::after {
	content: '\2713';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 0.875rem;
	font-weight: bold;
}

.custom-range {
	appearance: none;
	width: 100%;
	height: 0.5rem;
	border-radius: 1rem;
	background: linear-gradient(to right, #57b5e7 0%, #57b5e7 50%, #e5dcc8 50%, #e5dcc8 100%);
	outline: none;
}

.custom-range::-webkit-slider-thumb {
	appearance: none;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: #57b5e7;
	cursor: pointer;
	border: 3px solid #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-range::-moz-range-thumb {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: #57b5e7;
	cursor: pointer;
	border: 3px solid #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-input {
	background-color: #ebe4d1;
	border: none;
	border-radius: 0.5rem;
	padding: 0.875rem 1rem;
	width: 100%;
	color: #1f2937;
	font-size: 0.9375rem;
}

.form-input:focus {
	outline: none;
	background-color: #e5dcc8;
}

.form-input::placeholder {
	color: #9ca3af;
}

.btn-primary-form {
	background-color: #57b5e7;
	color: #fff;
	padding: 1rem 3rem;
	border-radius: 0.5rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	transition: all 0.3s;
}

.btn-primary-form:hover {
	background-color: #4a9fd1;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(87, 181, 231, 0.3);
}

.section-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1.5rem;
}

.required {
	color: #ef4444;
	margin-left: 0.25rem;
}

.label-text {
	color: #1f2937;
	font-size: 0.9375rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	display: block;
}

.option-card {
	background-color: #ebe4d1;
	border-radius: 0.5rem;
	padding: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.2s;
	border: 2px solid transparent;
}

.option-card:hover {
	background-color: #e5dcc8;
}

.option-card.selected {
	border-color: #57b5e7;
	background-color: #e5dcc8;
}

.success-message {
	display: none;
	text-align: center;
	padding: 3rem 2rem;
	background-color: #fff;
	border-radius: 1rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.success-message.show {
	display: block;
}

.modal-overlay {
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(3px);
	visibility: hidden;
}

.modal-overlay.active {
	visibility: visible;
}

.modal-container {
	top: -1000px;

	transition: all 0.3s ease;
}

.modal-container.active {
	top: 0px;
}

.form__success,
.form__error {
	text-align: center;
	padding: 1em;
	font-size: 1.5em;
	display: none;
}

.form__error {
	text-align: center;
	font-size: 20px;
	color: #dd0000;
	margin-top: 20px;
	background-color: #fff;
}

.form__success {
	text-align: center;
	font-size: 20px;
	color: #1c53a8;
	background-color: #fff;
}

.form_tour_submit {
	font-size: 14px;
	display: block;
	margin: 0 auto;
	padding: 16px 0 16px 0;
	width: 220px;
	text-align: center;
	position: relative;
}

.child-menu-item{
				color: #111827!important;
			}