#header {
	height: 100px;
	background: #fff;
	border-bottom: 1px solid #e5e5e5;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	max-width: 100%;
	width: 100%;
}

html.menu-open,
body.menu-open {
	overflow: hidden;
}

#header .container {
	height: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	box-sizing: border-box;
	position: relative;
}

#header .header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 2.5rem;
	min-width: 0;
	max-width: 100%;
	width: 100%;
	position: relative;
	
	box-sizing: border-box;
}

#header .logo img,
#header .header-lang img,
#header .flag-icon {
	max-width: 100%;
	height: auto;
}

#header .logo {
	flex-shrink: 1;
	min-width: 0;
	max-width: 100%;
}

#header .logo a {
	display: flex;
	align-items: center;
	gap: 0.875rem;
}

#header .logo-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.5rem;
	transform: rotate(-10deg);
}

#header .logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

#header .logo-top {
	font-size: 0.7rem;
	font-weight: 500;
	color: #555;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#header .logo-bottom {
	font-size: 1.15rem;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: 0.25px;
	text-transform: uppercase;
}

#header .header-nav {
	flex: 1;
	display: flex;
	justify-content: center;
	min-width: 0;
	max-width: 100%;
}

#header .header-nav ul {
	display: flex;
	align-items: center;
	gap: 2.25rem;
	margin: 0;
	padding: 0;
	min-width: 0;
	max-width: 100%;
	flex-wrap: nowrap;
}

#header .header-nav ul li a {
	color: #1a1a1a;
	font-size: 0.9rem;
	font-weight: 500;
	transition: color 0.2s ease;
	white-space: nowrap;
	position: relative;
}

#header .header-nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: #e53935;
	transition: width 0.2s ease;
}

#header .header-nav ul li a:hover {
	color: #e53935;
}

#header .header-nav ul li a:hover::after {
	width: 100%;
}

#header .header-lang {
	position: relative;
	overflow: visible;
	z-index: 1001;
}

#header .header-lang .lang-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 500;
	color: #1a1a1a;
	padding: 0.5rem 0;
	transition: color 0.2s ease;
}

#header .header-lang .lang-btn:hover {
	color: #e53935;
}

#header .header-lang .flag-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	object-fit: cover;
}

#header .lang-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	margin-top: 0.5rem;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
	min-width: 160px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
	z-index: 10001;
	overflow: visible;
}

#header .lang-dropdown.active {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

#header .lang-dropdown ul {
	padding: 0 0;
	margin: 0;
}

#header .lang-dropdown ul li button {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	padding: 0.625rem 1rem;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 500;
	color: #1a1a1a;
	transition: background 0.2s ease;
	text-align: left;
}

#header .lang-dropdown ul li button:hover {
	background: #f5f5f5;
}

#header .lang-dropdown ul li button.active {
	color: #e53935;
}

#header .lang-dropdown ul li button img {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	object-fit: cover;
}

#header .header-actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding-left: 1.5rem;
	min-width: 0;
	max-width: 100%;
	flex-shrink: 0;
}

#header .header-actions .header-lang {
	padding-left: 0;
	border-left: none;
}

#header .mobile-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(229, 57, 53, 0.05) 100%);
	border: none;
	border-radius: 10px;
	color: #1a1a1a;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
	margin-left: 0.75rem;
}

#header .mobile-menu-toggle:hover {
	color: #e53935;
	background: linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, rgba(229, 57, 53, 0.1) 100%);
	box-shadow: 0 4px 12px rgba(229, 57, 53, 0.2);
	transform: translateY(-1px);
}

#header .mobile-menu-toggle.active {
	color: #fff;
	background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
	box-shadow: 0 4px 15px rgba(229, 57, 53, 0.35);
	transform: translateY(-1px);
}

#header .mobile-menu-toggle i {
	transition: all 0.3s ease;
}

#header .mobile-menu {
	display: none;
	position: fixed;
	top: 100px;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid #e5e5e5;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	z-index: 1001;
	max-height: 0;
	overflow: hidden;
	overflow-x: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	opacity: 0;
	width: 100%;
	max-width: 100vw;
}

#header .mobile-menu.active {
	max-height: 500px;
	opacity: 1;
	display: block !important;
	visibility: visible !important;
}

#header .mobile-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}

#header .mobile-menu ul li {
	border-bottom: 1px solid #f5f5f5;
}

#header .mobile-menu ul li:last-child {
	border-bottom: none;
}

#header .mobile-menu ul li a {
	display: block;
	padding: 1rem 1.5rem;
	color: #1a1a1a;
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
}

#header .mobile-menu ul li a:hover {
	color: #e53935;
	background: rgba(229, 57, 53, 0.05);
	padding-left: 2rem;
}

#header .btn-register {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #e53935;
	font-size: 0.9rem;
	font-weight: 500;
	white-space: nowrap;
	background: rgba(229, 57, 53, 0.08);
	border: none;
	cursor: pointer;
	font-family: inherit;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: all 0.25s ease;
}

#header .btn-register i {
	font-size: 1.15rem;
	transition: transform 0.25s ease;
}

#header .btn-register:hover {
	background: #e53935;
	color: #fff;
	box-shadow: 0 4px 15px rgba(229, 57, 53, 0.35);
}

#header .btn-login {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.375rem;
	border: 1.5px solid #1a1a1a;
	border-radius: 50px;
	color: #1a1a1a;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.2s ease;
	white-space: nowrap;
	background: transparent;
}

#header .btn-login i {
	font-size: 1.2rem;
}

#header .btn-login:hover {
	border-color: #e53935;
	background: #e53935;
	color: #fff;
}

.auth-modal {
	border: none;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
	transform: scale(0.95);
	transition: transform 0.2s ease-out, opacity 0.2s ease-out;
	opacity: 0;
}

.auth-modal.show {
	transform: scale(1);
	opacity: 1;
}

.modal.fade .auth-modal {
	transform: scale(0.95);
	opacity: 0;
	transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.modal.show .auth-modal {
	transform: scale(1);
	opacity: 1;
}

.modal.fade .modal-dialog {
	transform: scale(0.95) !important;
	opacity: 0 !important;
	transition: transform 0.2s ease-out, opacity 0.2s ease-out !important;
}

.modal.show .modal-dialog {
	transform: scale(1) !important;
	opacity: 1 !important;
}

.auth-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 10;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: all 0.2s ease;
	cursor: pointer;
	color: #1a1a1a;
	margin: 0;
	box-shadow: none;
}

.auth-modal-close i {
	display: block;
	font-size: 1.25rem;
	line-height: 1;
	color: #1a1a1a;
	opacity: 1;
	visibility: visible;
}

.auth-modal-close:hover {
	transform: rotate(90deg);
	background: rgba(229, 57, 53, 0.1);
	border-color: #e53935;
}

.auth-modal-close:hover i {
	color: #e53935;
}

.auth-modal-close:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2);
}

.auth-modal-close:focus i {
	color: #1a1a1a;
}

.auth-modal-visual {
	background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
	padding: 3rem 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	position: relative;
	overflow: hidden;
}

.auth-modal-visual::before {
	content: '';
	position: absolute;
	top: 10%;
	right: -20%;
	width: 200px;
	height: 200px;
	border: 30px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	animation: floatShape 8s ease-in-out infinite;
}

.auth-modal-visual::after {
	content: '';
	position: absolute;
	bottom: 5%;
	left: -15%;
	width: 150px;
	height: 150px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	animation: floatShape 6s ease-in-out infinite reverse;
}

@keyframes floatShape {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	50% { transform: translate(15px, -20px) rotate(10deg); }
}

.auth-visual-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #fff;
}

.auth-visual-content::before {
	content: '';
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
}

.auth-visual-icon {
	width: 90px;
	height: 90px;
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.75rem;
	font-size: 2.5rem;
	backdrop-filter: blur(10px);
	position: relative;
	animation: iconPulse 3s ease-in-out infinite;
}

.auth-visual-icon::before {
	content: '';
	position: absolute;
	inset: -8px;
	border: 1px dashed rgba(255, 255, 255, 0.2);
	border-radius: 30px;
	animation: spinSlow 20s linear infinite;
}

@keyframes iconPulse {
	0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2); }
	50% { transform: scale(1.02); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); }
}

@keyframes spinSlow {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.auth-visual-content h3 {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 0.875rem;
	letter-spacing: -0.5px;
}

.auth-visual-content > p {
	font-size: 0.9rem;
	opacity: 0.9;
	line-height: 1.7;
	max-width: 240px;
	margin: 0 auto;
}

.auth-visual-stats {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.auth-visual-stat {
	text-align: center;
}

.auth-visual-stat-number {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.auth-visual-stat-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0.8;
}

.auth-benefits {
	margin-top: 1.75rem;
	text-align: left;
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	padding: 1rem 1.25rem;
	border-radius: 12px;
	backdrop-filter: blur(10px);
}

.auth-benefits li {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 0.85rem;
	margin-bottom: 0.625rem;
	font-weight: 500;
}

.auth-benefits li:last-child {
	margin-bottom: 0;
}

.auth-benefits li i {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
}

.auth-modal-form {
	padding: 2.5rem;
}

.auth-modal-header {
	margin-bottom: 1.5rem;
}

.auth-modal-header h4 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 0.25rem;
}

.auth-modal-header p {
	font-size: 0.875rem;
	color: #666;
}

.auth-social {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.auth-social-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	border-radius: 10px;
	font-family: inherit;
	font-size: 0.85rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.auth-social-btn.google {
	background: #fff;
	border: 1.5px solid #e5e5e5;
	color: #333;
}

.auth-social-btn.google:hover {
	border-color: #4285f4;
	background: rgba(66, 133, 244, 0.05);
}

.auth-social-btn.google i {
	color: #4285f4;
	font-size: 1.1rem;
}

.auth-social-btn.apple {
	background: #1a1a1a;
	border: 1.5px solid #1a1a1a;
	color: #fff;
}

.auth-social-btn.apple:hover {
	background: #333;
}

.auth-social-btn.apple i {
	font-size: 1.2rem;
}

.auth-divider {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.auth-divider::before,
.auth-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e5e5e5;
}

.auth-divider span {
	padding: 0 1rem;
	font-size: 0.8rem;
	color: #999;
}

.auth-form-row {
	display: flex;
	gap: 1rem;
}

.auth-form-row .auth-form-group {
	flex: 1;
}

.auth-form-group {
	margin-bottom: 1rem;
}

.auth-form-group label {
	display: block;
	font-size: 0.8rem;
	font-weight: 500;
	color: #333;
	margin-bottom: 0.4rem;
}

.auth-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.auth-input-wrapper > i {
	position: absolute;
	left: 1rem;
	color: #999;
	font-size: 1.1rem;
	transition: color 0.2s ease;
}

.auth-input-wrapper input {
	width: 100%;
	padding: 0.75rem 1rem 0.75rem 2.75rem;
	border: 1.5px solid #e5e5e5;
	border-radius: 10px;
	font-family: inherit;
	font-size: 0.9rem;
	transition: all 0.2s ease;
	outline: none;
}

.auth-input-wrapper input[type="password"],
.auth-input-wrapper input[type="text"][id*="Password"] {
	padding-right: 3rem;
}

.auth-input-wrapper input:focus {
	border-color: #e53935;
	box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.auth-input-wrapper input:focus + i,
.auth-input-wrapper:focus-within > i:first-child {
	color: #e53935;
}

.auth-phone-wrapper {
	gap: 0.5rem;
	padding-left: 0;
	position: relative;
}

.auth-phone-wrapper > i {
	position: absolute;
	left: 1rem;
	z-index: 2;
	pointer-events: none;
}

.auth-country-code {
	flex-shrink: 0;
	padding: 0.75rem 2rem 0.75rem 2.75rem;
	border: 1.5px solid #e5e5e5;
	border-radius: 10px;
	font-family: inherit;
	font-size: 0.85rem;
	background: #fff;
	color: #1a1a1a;
	cursor: pointer;
	transition: all 0.2s ease;
	outline: none;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	width: 130px;
	min-width: 130px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a1a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 10px;
	font-weight: 500;
}

.auth-country-code:hover {
	border-color: #d1d5db;
}

.auth-country-code:focus {
	border-color: #e53935;
	box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.auth-phone-wrapper input {
	padding-left: 1rem;
	flex: 1;
}

.auth-phone-wrapper:focus-within > i {
	color: #e53935;
}

.auth-password-toggle {
	position: absolute;
	right: 0.75rem;
	background: none;
	border: none;
	cursor: pointer;
	color: #999;
	font-size: 1.1rem;
	padding: 0.25rem;
	transition: color 0.2s ease;
}

.auth-password-toggle:hover {
	color: #e53935;
}

.auth-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	cursor: pointer;
	font-size: 0.85rem;
	color: #555;
	position: relative;
	padding-left: 1.75rem;
}

.auth-checkbox.terms {
	margin-bottom: 1.25rem;
}

.auth-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.auth-checkbox .checkmark {
	position: absolute;
	left: 0;
	top: 0.1rem;
	width: 18px;
	height: 18px;
	border: 1.5px solid #ddd;
	border-radius: 4px;
	transition: all 0.2s ease;
}

.auth-checkbox input:checked ~ .checkmark {
	background: #e53935;
	border-color: #e53935;
}

.auth-checkbox .checkmark::after {
	content: '';
	position: absolute;
	display: none;
	left: 5px;
	top: 2px;
	width: 5px;
	height: 9px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.auth-checkbox input:checked ~ .checkmark::after {
	display: block;
}

.auth-checkbox a {
	color: #e53935;
	text-decoration: none;
}

.auth-checkbox a:hover {
	text-decoration: underline;
}

.auth-options {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.25rem;
}

.auth-forgot {
	font-size: 0.85rem;
	color: #e53935;
	text-decoration: none;
	font-weight: 500;
}

.auth-forgot:hover {
	text-decoration: underline;
}

.auth-submit-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem;
	background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
	border: none;
	border-radius: 10px;
	color: #fff;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.25s ease;
}

.auth-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(229, 57, 53, 0.35);
}

.auth-submit-btn i {
	font-size: 1.2rem;
	transition: transform 0.25s ease;
}

.auth-submit-btn:hover i {
	transform: translateX(4px);
}

.auth-switch {
	text-align: center;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #eee;
}

.auth-switch span {
	font-size: 0.875rem;
	color: #666;
}

.auth-switch button {
	background: none;
	border: none;
	color: #e53935;
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	margin-left: 0.25rem;
}

.auth-switch button:hover {
	text-decoration: underline;
}


.hero {
	height: calc(100vh - 100px);
	min-height: 500px;
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	overflow-x: hidden;
	max-width: 100%;
	width: 100%;
	--hero-zoom: 1.2;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-image: url('../images/hero.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transform: scale(var(--hero-zoom));
	transform-origin: center center;
	will-change: transform;
	overflow-x: hidden;
	max-width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right,
		rgba(0, 0, 0, 0.4) 0%,
		rgba(0, 0, 0, 0.6) 50%,
		rgba(0, 0, 0, 0.4) 100%
	);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	width: 100%;
	box-sizing: border-box;
}

.hero-title {
	font-size: 3rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 3rem;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 40px;
}

.hero-title span {
	color: #e53935;
}

#reservationTabs {
	background: #fff;
	border-radius: 12px 12px 0 0;
	border-bottom: 1px solid #e5e5e5;
	display: inline-flex;
	justify-content: flex-start;
	gap: 0.375rem;
	padding: 0.5rem 1rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	position: relative;
}

#reservationTabs::before {
	content: '';
	position: absolute;
	top: 0.5rem;
	left: 1rem;
	height: calc(100% - 1rem);
	background: #e53935;
	border-radius: 8px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 0;
}

#reservationTabs[data-active="0"]::before {
	width: calc(var(--tab-0-width) * 1px);
	transform: translateX(0);
}

#reservationTabs[data-active="1"]::before {
	width: calc(var(--tab-1-width) * 1px);
	transform: translateX(calc(var(--tab-0-width) * 1px + 0.375rem));
}

#reservationTabs[data-active="2"]::before {
	width: calc(var(--tab-2-width) * 1px);
	transform: translateX(calc(var(--tab-0-width) * 1px + var(--tab-1-width) * 1px + 0.75rem));
}

#reservationTabs .nav-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: transparent;
	border: none;
	border-radius: 8px;
	color: #666;
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.2s ease;
	position: relative;
	z-index: 1;
}

#reservationTabs .nav-link i {
	font-size: 1.15rem;
}

#reservationTabs .nav-link:hover {
	color: #1a1a1a;
}

#reservationTabs .nav-link.active {
	color: #fff;
	font-weight: 500;
}

#reservationTabContent {
	background: #fff;
	border-radius: 0 12px 12px 12px;
	padding: 2rem 1rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	overflow: visible;
	position: relative;
}

.testimonials {
	padding: 5rem 0;
	background: #f8f9fa;
	overflow: hidden;
}

.testimonials .container {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 2rem;
	overflow: visible;
	overflow-x: hidden;
	box-sizing: border-box;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title {
	margin-bottom: 0.75rem;
}

.section-header h2 {
	font-size: 2.25rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 0;
	letter-spacing: -0.5px;
}

.section-desc {
	max-width: 650px;
	margin: 0 auto;
}

.section-header p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 0;
}

.testimonial-card {
	background: #fff;
	border-radius: 16px;
	padding: 1.75rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-source {
	margin-bottom: 1rem;
}

.testimonial-source img {
	height: 28px;
	width: auto;
	object-fit: contain;
  border-radius: 2.8px;
}

.testimonial-rating {
	display: flex;
	gap: 0.125rem;
	margin-bottom: 1rem;
}

.testimonial-rating i {
	color: #ffc107;
	font-size: 1.1rem;
}

.testimonial-text {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #444;
	flex: 1;
	margin-bottom: 1.5rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding-top: 1rem;
	border-top: 1px solid #eee;
}

.testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-info {
	display: flex;
	flex-direction: column;
}

.testimonial-name {
	font-size: 0.95rem;
	font-weight: 600;
	color: #1a1a1a;
}

.testimonial-date {
	font-size: 0.8rem;
	color: #888;
}

#testimonialSlider {
	padding: 1rem 0 3rem;
}

#testimonialSlider .splide__track {
	overflow: visible;
	padding: 1rem 0;
	margin: -1rem 0;
}

#testimonialSlider .splide__list {
	padding: 0.5rem 0;
}

#testimonialSlider .splide__slide {
	padding: 0.5rem;
}

#testimonialSlider .splide__arrows {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 10;
}

#testimonialSlider .splide__arrow {
	width: 48px;
	height: 48px;
	background: #fff !important;
	border: 1px solid #e5e5e5 !important;
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	opacity: 1 !important;
	pointer-events: auto;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	z-index: 10;
	transform: scale(1) !important;
}

#testimonialSlider .splide__arrow svg {
	width: 20px;
	height: 20px;
	fill: #1a1a1a;
	transition: fill 0.25s ease;
}

#testimonialSlider .splide__arrow:hover {
	background: #e53935 !important;
	border-color: #e53935 !important;
	transform: scale(1.15) !important;
	box-shadow: 0 6px 20px rgba(229, 57, 53, 0.25) !important;
	top: 50% !important;
}

#testimonialSlider .splide__arrow:hover svg {
	fill: #fff;
}

#testimonialSlider .splide__arrow--prev {
	left: -24px;
}

#testimonialSlider .splide__arrow--next {
	right: -24px;
}

#testimonialSlider .splide__pagination {
	bottom: 0;
}

#testimonialSlider .splide__pagination__page {
	width: 10px;
	height: 10px;
	background: #ddd;
	opacity: 1;
	transition: all 0.3s ease;
}

#testimonialSlider .splide__pagination__page.is-active {
	background: #e53935;
	transform: scale(1.2);
}


.review-cta {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 3rem;
}

.review-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1.5rem;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 500;
	transition: all 0.25s ease;
}

.review-btn img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.review-btn.google {
	background: #fff;
	color: #1a1a1a;
	border: 1.5px solid #e5e5e5;
}

.review-btn.google:hover {
	transform: translateY(-2px);
}

.review-btn.tripadvisor {
	background: #3feb5b;
	color: #1a1a1a;
	border: 1.5px solid #3feb5b;
}

.review-btn.tripadvisor:hover {
	background: #3feb5b;
	border-color: #3feb5b;
	transform: translateY(-2px);
}


.tours {
	padding: 5rem 0;
	background: #fff;
}

.tours .container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	overflow-x: hidden;
	box-sizing: border-box;
}

.tours-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.tour-card {
	display: block;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.tour-card:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.tour-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.tour-date {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	color: #1a1a1a;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.4rem 0.75rem;
	border-radius: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	z-index: 2;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.tour-date i {
	font-size: 0.85rem;
}

.tour-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.tour-hover {
	position: absolute;
	bottom: 1rem;
	left: 0.75rem;
	right: 0.75rem;
	background: #fff;
	border-radius: 10px;
	padding: 0.9rem 1rem;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.tour-hover::before {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	background: #fff;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.tour-hover-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: #e53935;
	margin-bottom: 0.35rem;
}

.tour-hover p {
	font-size: 0.8rem;
	color: #555;
	line-height: 1.6;
	margin: 0 0 0.65rem 0;
}

.tour-hover-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	width: 100%;
	padding: 0.5rem 0.6rem;
	background: #e53935;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 600;
	color: #fff;
	transition: background 0.2s ease;
}

.tour-hover-cta i {
	font-size: 1.1rem;
	transition: transform 0.2s ease;
}

.tour-card:hover .tour-hover-cta {
	background: #c62828;
}

.tour-card:hover .tour-hover-cta i {
	transform: translateX(3px);
}

.tour-card:hover .tour-hover {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.tour-card:hover .tour-image img {
	transform: scale(1.08);
}

.tour-content {
	padding: 1.25rem 1.5rem;
}

.tour-title {
	font-size: 1.15rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 0.75rem;
}

.tour-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.tour-person {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.875rem;
	color: #666;
}

.tour-person i {
	font-size: 1.1rem;
	color: #888;
}

.tour-price {
	font-size: 1.25rem;
	font-weight: 700;
	color: #e53935;
}


.tours-cta {
	text-align: center;
	margin-top: 2.5rem;
}

.btn-tours-all {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	background: transparent;
	color: #1a1a1a;
	font-size: 1rem;
	font-weight: 500;
	border: 1.5px solid #1a1a1a;
	border-radius: 12px;
	transition: all 0.25s ease;
}

.btn-tours-all i {
	font-size: 1.25rem;
	transition: transform 0.25s ease;
}

.btn-tours-all:hover {
	background: #1a1a1a;
	color: #fff;
}

.btn-tours-all:hover i {
	transform: translateX(4px);
}

.stats-section {
	padding: 0 0;
	background: transparent;
	position: relative;
	overflow: hidden;
	overflow-x: hidden;
	max-width: 100%;
	width: 100%;
	border-radius: 24px;
	transition: all 0.3s ease;
  margin-bottom: 5rem;
	--bg-y: 50%;
}

.stats-section {
	padding: 0 0;
	background: transparent;
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	transition: all 0.3s ease;
  margin-bottom: 5rem;
	--bg-x: 50%;
	--bg-y: 50%;
}

.stats-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: #1a1a1a;
	background-image: url('../images/airport.png');
	/* background-size: 120%; */
	background-size: cover;
	background-position: var(--bg-x) var(--bg-y);
	background-repeat: no-repeat;
	opacity: 1;
	transition: opacity 0.3s ease;
	z-index: 0;
	border-radius: 24px;
	will-change: background-position;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.stats-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, 
		rgba(0, 0, 0, 0.2) 0%,
		rgba(0, 0, 0, 0.4) 40%,
		rgba(0, 0, 0, 0.6) 70%,
		rgba(0, 0, 0, 0.6) 100%
	);
	opacity: 1;
	transition: opacity 0.3s ease;
	z-index: 1;
	border-radius: 24px;
}

.stats-section .section-header h2 {
	color: #fff;
	transition: color 0.3s ease;
}

.stats-section .section-desc p {
	color: #fff;
	transition: color 0.3s ease;
}

.stats-section .stat-label {
	color: #fff;
	transition: color 0.3s ease;
}

.stats-section .container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 3rem;
	position: relative;
	z-index: 2;
	overflow-x: hidden;
	box-sizing: border-box;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.stat-box {
	text-align: center;
	padding: 2rem 1.5rem;
	background: transparent;
	border-radius: 16px;
	transition: all 0.3s ease;
}

.stat-box:hover .stat-icon {
  background: rgba(229, 57, 53, 0.5);

}

.stat-box:hover .stat-icon i {
  color: #fff;
}

.stat-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(229, 57, 53, 0.1);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.stat-icon i {
	font-size: 2rem;
	color: #e53935;
  transition: all 0.3s ease;
}

.stat-number {
	font-size: 2.1rem;
	font-weight: 400;
	color: #e53935;
	margin-bottom: 0.5rem;
	line-height: 1;
}

.stat-label {
	font-size: 0.95rem;
	color: #666;
	font-weight: 500;
}

#footer {
	background: #1a1a1a;
	color: #fff;
	overflow-x: hidden;
	max-width: 100%;
	width: 100%;
}

.top-footer {
	padding: 4rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.middle-footer {
	padding: 5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	overflow-x: hidden;
	max-width: 100%;
	width: 100%;
}

.middle-footer .row {
	row-gap: 2rem;
}

.middle-footer .footer-title {
	font-size: 1rem;
}

.middle-footer .footer-links {
	gap: 0.55rem;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.footer-contact .footer-title {
	margin-bottom: 0.5rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	padding: 0.5rem 0;
	transition: transform 0.2s ease;
}

.contact-item:hover {
	transform: translateX(4px);
}

.contact-icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(229, 57, 53, 0.15);
	border-radius: 6px;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.contact-item:hover .contact-icon {
	background: rgba(229, 57, 53, 0.25);
	transform: scale(1.05);
}

.contact-icon i {
	font-size: 1.1rem;
	color: #e53935;
	transition: transform 0.2s ease;
}

.contact-item:hover .contact-icon i {
	transform: scale(1.1);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	flex: 1;
}

.contact-label {
	font-size: 0.75rem;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 500;
}

.contact-value {
	font-size: 0.95rem;
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease;
	line-height: 1.5;
}

.contact-value:hover {
	color: #e53935;
}

.footer-menu {
	padding-left: 0;
}

.footer-menu .footer-title {
	margin-bottom: 1.25rem;
}

.footer-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1.5rem;
	letter-spacing: -0.3px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-links li {
	position: relative;
	transition: all 0.3s ease;
}

.footer-links li a {
	color: #ccc;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0;
	position: relative;
}

.footer-links li a i {
	font-size: 1rem;
	opacity: 0;
	width: 0;
	transform: translateX(-8px);
	transition: opacity 0.3s ease, width 0.3s ease, transform 0.3s ease, margin-right 0.3s ease;
	color: #e53935;
	flex-shrink: 0;
	overflow: hidden;
	margin-right: 0;
}

.footer-links li a:hover {
	color: #fff;
}

.footer-links li a:hover i {
	opacity: 1;
	width: auto;
	transform: translateX(0);
	margin-right: 0.5rem;
}

.footer-about {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-logo {
	margin-bottom: 0.5rem;
}

.footer-logo a {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	text-decoration: none;
}

.footer-logo .logo-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.5rem;
	transform: rotate(-10deg);
}

.footer-logo .logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.footer-logo .logo-top {
	font-size: 0.7rem;
	font-weight: 500;
	color: #999;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.footer-logo .logo-bottom {
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.25px;
	text-transform: uppercase;
}

.footer-desc {
	font-size: 0.875rem;
	color: #aaa;
	line-height: 1.6;
	margin: 0;
	max-width: 280px;
}

.footer-social {
	display: flex;
	gap: 0.75rem;
}

.social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	color: #ccc;
	text-decoration: none;
	transition: all 0.2s ease;
	font-size: 1.25rem;
}

.social-link:hover {
	background: #e53935;
	color: #fff;
	transform: translateY(-2px);
}

.bottom-footer {
	padding: 1.5rem 0;
	background: rgba(0, 0, 0, 0.3);
}

.bottom-footer .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.bottom-footer .row {
	flex: 1;
	align-items: center;
	width: 100%;
}

.bottom-footer .col-lg-4,
.bottom-footer .col-md-4,
.bottom-footer .col-sm-12 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.bottom-footer .footer-payment,
.bottom-footer .footer-tursab {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	height: 100%;
}

.bottom-footer .footer-payment img,
.bottom-footer .footer-tursab img {
	max-height: 44px;
	width: auto;
	object-fit: contain;
}

.bottom-footer img {
	max-width: 100%;
	height: auto;	
}

.copyright {
	margin: 0;
	text-align: left;
	width: 100%;
}

.copyright p {
	font-size: 0.85rem;
	color: #999;
	margin: 0;
}

.footer-image {
	text-align: right;
}

.footer-image img {
	max-height: 40px;
	width: auto;
	opacity: 0.7;
}

.floating-actions {
	position: fixed;
	right: 24px;
	bottom: 24px;
	display: flex;
	flex-direction: column-reverse;
	gap: 10px;
	z-index: 999;
}

.fab {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.whatsapp-btn {
	position: relative;
	background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
	color: #fff;
	font-size: 1.6rem;
	text-decoration: none;
}

.whatsapp-btn:hover {
	transform: translateY(-2px);
}

.back-to-top {
	position: relative;
	background: #0f0f0f;
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	pointer-events: none;
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.fab-tooltip {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 0.4rem 0.7rem;
	background: #0f0f0f;
	color: #fff;
	font-size: 0.8rem;
	font-weight: 500;
	border-radius: 999px;
	white-space: nowrap;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
	pointer-events: none;
	z-index: 1;
}

.fab-tooltip-left {
	right: 100%;
	margin-right: 8px;
}

.whatsapp-btn:hover .fab-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translate(-2px, -50%);
}

.back-to-top i {
	font-size: 1.35rem;
	position: relative;
	z-index: 2;
}

.progress-ring {
	position: absolute;
	inset: 0;
	transform: rotate(-90deg);
}

.progress-ring__bg {
	display: none;
}

.progress-ring__value {
	stroke: #e53935;
	stroke-width: 3;
	fill: none;
	stroke-linecap: round;
	stroke-dasharray: 126 126;
	stroke-dashoffset: 126;
	transition: stroke-dashoffset 0.2s ease;
}


.transfer-form .form-row {
	display: flex;
	align-items: stretch;
	gap: 0.75rem;
	flex-wrap: wrap;
	overflow: visible;
	position: relative;
}

.transfer-form .form-group {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	padding: 1rem 1.25rem;
	height: 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: all 0.2s ease;
	position: relative;
	overflow: visible;
}

.transfer-form .form-group:hover {
	border-color: #d1d5db;
}

.transfer-form .form-group:focus-within {
	border-color: #e53935;
}

.transfer-form .form-group label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
}

.transfer-form .form-group label i {
	font-size: 1rem;
}

.transfer-form .form-group input,
.transfer-form .form-group select {
	border: none;
	outline: none !important;
	font-size: 0.95rem;
	color: #1a1a1a;
	background: transparent;
	width: 100%;
	font-family: inherit;
}

.transfer-form .form-group input:focus,
.transfer-form .form-group select:focus {
	outline: none !important;
	box-shadow: none !important;
}

.transfer-form .form-group input::placeholder {
	color: #9ca3af;
}

.transfer-form .form-group select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231a1a1a'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0 center;
	background-size: 1.25rem;
	padding-right: 1.5rem;
}

.transfer-form .location-from {
	flex: 1 1 200px;
	min-width: 180px;
}

.transfer-form .location-to {
	flex: 1 1 200px;
	min-width: 180px;
}

.transfer-form .date-time {
	flex: 1 1 180px;
	min-width: 160px;
}

.transfer-form .date-time .date-input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

.transfer-form .date-time .date-input::-webkit-calendar-picker-indicator {
	display: none;
	-webkit-appearance: none;
}

.transfer-form .date-time .date-input::-webkit-inner-spin-button,
.transfer-form .date-time .date-input::-webkit-outer-spin-button {
	display: none;
	-webkit-appearance: none;
}

.transfer-form .date-time .date-input.range-mode {
	color: #e53935;
}

.transfer-form .trip-type {
	flex: 0 1 130px;
	min-width: 130px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.transfer-form .trip-type label:first-child {
	margin-bottom: 0.5rem;
	font-size: 0.75rem;
}

.toggle-wrapper {
	width: 100%;
	display: flex;
	justify-content: flex-start;
}

.transfer-form .passenger-count {
	flex: 0 1 160px;
	min-width: 160px;
}

.btn-swap {
	width: 48px;
	height: 80px;
	border-radius: 12px;
	border: 1px solid #e5e5e5;
	background: #fff;
	color: #666;
	font-size: 1.25rem;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	align-self: center;
}

.btn-swap:hover {
	border-color: #e53935;
	color: #e53935;
}

.btn-search {
	width: 80px;
	height: 80px;
	background: #e53935;
	border: none;
	border-radius: 12px;
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.2s ease;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-search:hover {
	background: #c62828;
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.flatpickr-time input::selection {
	background: unset;
	color: unset;
}

.toggle-switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 26px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-switch .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #e5e5e5;
	transition: 0.3s;
	border-radius: 26px;
}

.toggle-switch .slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 3px;
	top: 3px;
	background-color: white;
	transition: transform 0.3s ease;
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.toggle-switch input:checked + .slider {
	background-color: #e53935;
}

.toggle-switch input:checked + .slider:before {
	transform: translateX(21px);
}

.transfer-form .form-group {
	position: relative;
}

.location-suggestions {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 0 0 12px 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	max-height: 250px;
	overflow-y: auto;
	z-index: 10000;
	display: none;
	margin-top: -1px;
	overflow: visible;
}

.location-suggestions.active {
	display: block;
}

.suggestion-item {
	padding: 0.875rem 1.25rem;
	cursor: pointer;
	font-size: 0.9rem;
	color: #1a1a1a;
	transition: background 0.2s ease;
	border-bottom: 1px solid #f5f5f5;
}

.suggestion-item:last-child {
	border-bottom: none;
	border-radius: 0 0 12px 12px;
}

.suggestion-item:hover {
	background: #f8f9fa;
}

.suggestion-item:active {
	background: #f0f0f0;
}

.flatpickr-calendar {
	border-radius: 16px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
	border: none;
	font-family: 'Rubik', sans-serif;
	padding: 0.75rem 1rem 1rem;
}

.flatpickr-months {
	border-radius: 16px 16px 0 0;
	border-bottom: none;
	margin-bottom: 0.25rem;
}

.flatpickr-current-month {
	font-size: 0.95rem;
	font-weight: 600;
	color: #111827;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	white-space: nowrap;
}

.flatpickr-current-month .numInputWrapper {
	width: 3.6ch;
}

.flatpickr-current-month input.cur-year,
.flatpickr-current-month select.cur-year {
	font-weight: 600;
	padding: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	padding-right: 1rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23111827' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 10px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}

.flatpickr-current-month select.cur-year:hover {
	color: #e53935;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e53935' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.flatpickr-current-month span.cur-month {
	margin-right: 0;
}

.flatpickr-weekdays {
	margin-top: 0.5rem;
	padding-bottom: 0.25rem;
	border-bottom: 1px solid #f1f5f9;
}

.flatpickr-weekday {
	font-size: 0.7rem;
	font-weight: 500;
	color: #a1a1aa;
}

.flatpickr-day {
	border-radius: 999px;
	font-weight: 500;
	width: 34px;
	height: 34px;
	line-height: 34px;
	margin: 3px;
	color: #111827;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
	background: #ffffff !important;
	border-color: #ef4444 !important;
	color: #ef4444 !important;
	box-shadow: 0 0 0 1px #ef4444 !important;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
	background: #ffffff !important;
	border-color: #ef4444 !important;
}

.flatpickr-day:hover {
	background: #fef2f2;
	border-color: #fecaca;
}

.flatpickr-day.inRange {
	background: #fef2f2;
	border-color: transparent;
	box-shadow: none;
}

.flatpickr-time {
	border-top: 1px solid #e5e5e5;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
	fill: #e53935;
}

