/* Hero section under header */
.hero {
	position: relative;
	overflow: hidden;
	/* Positive value moves the visible window downwards over the image */
	--hero-image-offset-y: 100px;
}

.hero img {
	width: 100%;
	height: auto;
	display: block;
	transform: translateY(calc(-1 * var(--hero-image-offset-y)));
	will-change: transform;
}

.hero__overlay {
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.9);
	z-index: 1;
	padding: 20px 20px;
}

/* Hero tabs inside overlay */
.hero__tabs {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.hero__tab {
	position: relative;
	flex: 1 1 0;
	text-align: center;
	color: var(--pink);
	font-weight: 500;
	padding: 6px 12px 20px;
	cursor: pointer;
	user-select: none;
}

.hero__tab::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, var(--pink), #ff6b94);
	opacity: 0.9;
	border-radius: 2px;
	transition: height 0.18s ease;
}

.hero__tab.is-active::after {
	height: 3px;
}

/* Booking form */
.booking-form {
	margin-top: 8px;
	margin-left: auto;
	margin-right: auto;
}

.booking-form__row {
	display: grid;
	grid-auto-rows: auto;
	gap: 16px 20px;
	margin-top: 18px;
	justify-content: center;
}

.booking-form__row--places {
	grid-template-columns: 1fr 40px 1fr;
	align-items: end;
}

.booking-form__row--datetime {
	grid-template-columns: 1fr 1fr;
}

.booking-form__row--people {
	grid-template-columns: 1fr 1fr;
	align-items: end;
	column-gap: 24px;
}

.people-controls {
	display: flex;
	align-items: end;
	justify-content: center;
	gap: 70px;
}

.people-controls .form-group {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}

.people-controls .form-label {
	width: 100%;
	text-align: center;
}

.form-group {
	min-width: 0;
}

.form-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-muted);
	margin: 0 0 6px;
}

.field {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 10px 12px;
	box-shadow: none;
}

.field-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 20px;
}

.field__icon {
	color: var(--pink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.field__icon svg {
	width: 18px;
	height: 18px;
}

.field input {
	border: none;
	outline: none;
	background: transparent;
	width: 100%;
	color: var(--text-dark);
	font-size: 14px;
}

.swap-button {
	align-self: end;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: #fff;
	color: var(--pink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: none;
	transition: transform 0.3s ease, border-color 0.2s ease;
}

.swap-button:hover {
	border-color: var(--pink);
}

.swap-button svg {
	width: 20px;
	height: 20px;
}

.counter {
	display: inline-flex;
	align-items: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 6px;
	overflow: hidden;
}

.booking-form__row--people .counter {
	margin-left: auto;
	margin-right: auto;
}

.counter__btn {
	width: 36px;
	height: 40px;
	border: none;
	background: transparent;
	color: var(--pink);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}

.counter__input {
	width: 56px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	padding: 0;
	border-left: 1px solid var(--border);
	border-right: 1px solid var(--border);
	border-top: none;
	border-bottom: none;
	background: #fff;
	outline: none;
	font-weight: 600;
	appearance: textfield;
	-moz-appearance: textfield;
}

.counter__input::-webkit-outer-spin-button,
.counter__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.form-group--submit {
	display: flex;
	align-items: end;
	justify-content: center;
}

.btn-search {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	max-width: 400px;
	height: 46px;
	border: 1px solid var(--pink);
	border-radius: 0;
	background: transparent;
	color: var(--pink);
	font-weight: 700;
	cursor: pointer;
	box-shadow: none;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.btn-search:hover {
	border-color: var(--pink-dark);
	color: var(--pink-dark);
}

.btn-search svg {
	width: 18px;
	height: 18px;
}

/* Disabled state for return datetime when one-way */
.form-group.is-disabled {
	opacity: 0.6;
}

.form-group.is-disabled .field,
.form-group.is-disabled input {
	pointer-events: none;
	cursor: not-allowed;
}

/* Field error state */
.field.field--error,
.counter.field--error {
	border-color: #dc3545 !important;
	box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
	animation: shake 0.4s ease;
}

@keyframes shake {

	0%,
	100% {
		transform: translateX(0);
	}

	20%,
	60% {
		transform: translateX(-4px);
	}

	40%,
	80% {
		transform: translateX(4px);
	}
}

/* Form error message - Toast style */
.form-error-message {
	position: fixed;
	top: 100px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	display: flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
	border: 1px solid #ffc0c0;
	color: #c92a2a;
	padding: 14px 24px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	box-shadow: 0 4px 20px rgba(220, 53, 69, 0.25);
	animation: toastSlideIn 0.4s ease;
}

.form-error-message svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: #dc3545;
}

.form-error-message--hiding {
	animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideIn {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

@keyframes toastSlideOut {
	from {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}

	to {
		opacity: 0;
		transform: translateX(-50%) translateY(-20px);
	}
}

@media (max-width: 820px) {
	.hero {
		--hero-image-offset-y: 0px;
		height: auto !important;
	}

	.hero img {
		display: none;
	}

	.hero__overlay {
		position: static;
		top: auto;
		left: auto;
		right: auto;
		background: #fff;
		border-radius: 10px;
		box-shadow: var(--shadow-soft);
		padding: 16px 14px;
		margin: 12px 12px 0;
	}

	.hero__tabs {
		gap: 10px;
	}

	.hero__tab {
		padding: 4px 10px 14px;
		font-size: 14px;
	}

	.booking-form {
		margin-top: 6px;
	}

	.booking-form__row {
		gap: 12px 14px;
		margin-top: 12px;
	}

	.booking-form__row--places {
		grid-template-columns: 1fr;
		position: static;
		gap: 6px;
	}

	.booking-form__row--places .swap-button {
		position: static;
		transform: rotate(90deg);
		width: 30px;
		height: 30px;
		margin: 2px auto 0;
	}

	.booking-form__row--datetime {
		grid-template-columns: 1fr;
	}

	.field-grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px 14px;
	}

	.field {
		gap: 8px;
		padding: 8px 10px;
	}

	.field__icon,
	.field__icon svg {
		width: 16px;
		height: 16px;
	}

	.field input {
		font-size: 13px;
	}

	.form-label {
		font-size: 12px;
	}

	.people-controls {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
	}

	.people-controls .form-group {
		align-items: stretch;
	}

	.booking-form__row--people .counter {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		justify-content: space-between;
	}

	.counter__btn {
		width: 32px;
		height: 36px;
		font-size: 16px;
	}

	.counter__input {
		width: 48px;
		height: 36px;
		line-height: 36px;
	}

	.booking-form__row--people {
		grid-template-columns: 1fr;
		row-gap: 16px;
	}

	.btn-search {
		max-width: none;
		height: 44px;
	}
}

/* Stack people controls further on very small screens */
@media (max-width: 480px) {
	.people-controls {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Features section (below hero) */
.features {
	padding: 26px 20px 54px;
	background: transparent;
}

.features__grid {
	width: 100%;
	max-width: none;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 28px 36px;
	align-items: start;
	justify-items: center;
}

.feature {
	text-align: center;
}

.feature__icon {
	width: 64px;
	height: 64px;
	border-radius: 999px;
	border: 1.5px solid #0f172a;
	color: #0f172a;
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin-bottom: 12px;
}

.feature__title {
	margin: 6px 0 6px;
	font-size: 16px;
	font-weight: 800;
	color: var(--text-dark);
}

.feature__desc {
	margin: 0 auto;
	max-width: 260px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--text-muted);
}

@media (max-width: 1280px) {
	.features__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.features {
		padding: 16px 14px 28px;
	}

	.features__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px 16px;
	}

	.feature__icon {
		width: 56px;
		height: 56px;
		font-size: 24px;
	}

	.feature__title {
		font-size: 15px;
	}

	.feature__desc {
		font-size: 12.5px;
	}
}

@media (max-width: 520px) {
	.features__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 12px;
	}

	.feature__icon {
		width: 48px;
		height: 48px;
		font-size: 20px;
		margin-bottom: 8px;
	}

	.feature__title {
		font-size: 13px;
		margin: 4px 0 4px;
	}

	.feature__desc {
		font-size: 11px;
		line-height: 1.4;
		max-width: none;
	}
}

@media (max-width: 380px) {
	.features {
		padding: 12px 10px 20px;
	}

	.features__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px 10px;
	}

	.feature__icon {
		width: 42px;
		height: 42px;
		font-size: 18px;
		margin-bottom: 6px;
	}

	.feature__title {
		font-size: 12px;
	}

	.feature__desc {
		font-size: 10px;
	}
}

/* Airports slider */
.airports {
	padding: 8px 20px 8px;
	background: #fff;
}

.section-title {
	text-align: center;
	font-size: 28px;
	font-weight: 900;
	letter-spacing: -0.01em;
	margin: 10px 0 18px;
}

.slider {
	position: relative;
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}

.slider__track {
	display: flex;
	/* keep gap as a variable so item width can account for it */
	--slide-gap: 18px;
	gap: var(--slide-gap);
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	/* IE/Edge */
	scrollbar-width: none;
	/* Firefox */
}

.slider__track::-webkit-scrollbar {
	display: none;
}

.slide {
	position: relative;
	/* exact fit: account for gaps between items so the last kart is not half cut */
	flex: 0 0 calc((100% - (var(--slides-per-view, 4) - 1) * var(--slide-gap, 18px)) / var(--slides-per-view, 4));
	scroll-snap-align: start;
	border-radius: 14px;
	overflow: hidden;
	background: #e5e7eb;
	box-shadow: var(--shadow-soft);
	color: inherit;
	text-decoration: none;
}

.slide img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

.slide__label {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}

.slide__country {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 22px;
	padding: 0 8px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.9);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.slide__title {
	margin: 0;
	padding: 8px 10px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(4px);
	font-size: 16px;
	font-weight: 800;
	color: var(--text-dark);
}

.slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(6px);
	color: var(--pink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
	cursor: pointer;
	z-index: 2;
	opacity: 0;
	pointer-events: none;
	transition: opacity .18s ease, transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.slider__nav svg {
	width: 22px;
	height: 22px;
}

.slider__nav--prev {
	left: -28px;
}

.slider__nav--next {
	right: -28px;
}

.slider:hover .slider__nav {
	opacity: 1;
	pointer-events: auto;
}

.slider__nav:hover {
	transform: translateY(-50%) scale(1.06);
	background: #fff;
	box-shadow: 0 10px 34px rgba(15, 23, 42, 0.16);
}

.slider__nav.is-disabled {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	cursor: default;
}

.slider__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
}

.slider__dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #e5e7eb;
	border: none;
	cursor: pointer;
	transition: background-color .2s ease, width .2s ease;
}

.slider__dot.is-active {
	background: var(--pink);
	width: 18px;
}

@media (max-width: 1280px) {
	.slide img {
		height: 170px;
	}
}

@media (max-width: 900px) {
	.section-title {
		font-size: 24px;
	}

	.slide img {
		height: 160px;
	}

	.news-feed__header {
		width: 100%;
	}
}

@media (max-width: 640px) {
	.airports {
		padding: 6px 14px 26px;
	}

	.slider__nav {
		display: none;
	}

	/* arrows off on mobile, swipe instead */
	.slide img {
		height: 150px;
	}
}

@media (max-width: 900px) {
	.slider {
		width: 100%;
	}
}

/* News feed section */
.news-feed {
	padding: 70px 20px 90px;
	background: #fff;
}

.news-feed__inner {
	max-width: 60%;
	margin: 0 auto;
}

.news-feed__header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 38px;
	/* match airports slider width behavior */
	width: 60vw;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.news-feed__header::before,
.news-feed__header::after {
	content: "";
	flex: 1 1 auto;
	height: 2px;
	background: var(--border);
	border-radius: 999px;
	/* rounded line ends */
}

.news-feed__title {
	margin: 0;
	font-size: 42px;
	font-weight: 900;
	letter-spacing: -0.01em;
}

.news-feed__more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	text-decoration: none;
	color: var(--text-dark);
	font-size: 15px;
}

.news-feed__more span {
	font-size: 18px;
	transition: transform 0.2s ease;
}

.news-feed__more:hover span {
	transform: translateX(4px) translateY(-2px);
}

.news-feed__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.news-card {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.news-card__media {
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	aspect-ratio: 4 / 3;
}

.news-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.news-card__date {
	position: absolute;
	top: 18px;
	left: 18px;
	padding: 10px 18px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
	display: inline-flex;
	flex-direction: column;
	line-height: 1;
}

.news-card__day {
	font-size: 46px;
	font-weight: 800;
}

.news-card__month {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-muted);
}

.news-card__category {
	margin: 0;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.news-card__title {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.4;
}

.news-card__cta {
	width: 48px;
	height: 48px;
	border-radius: 999px;
	border: 1px solid var(--border);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--text-dark);
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.news-card__cta svg {
	width: 24px;
	height: 24px;
}

.news-card__cta:hover {
	border-color: var(--pink);
	color: var(--pink);
	transform: translateX(4px);
}

@media (max-width: 1024px) {
	.news-feed {
		padding: 54px 16px 70px;
	}

	.news-feed__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.news-feed__title {
		font-size: 34px;
	}
}

@media (max-width: 700px) {
	.news-feed__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.news-feed__more {
		font-size: 14px;
	}
}

@media (max-width: 640px) {
	.news-feed__grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.news-card__media {
		border-radius: 18px;
	}
}

/* Reviews Section */
.reviews {
	padding: 50px 20px 80px;
	background: #f8fafc;
}

.reviews__inner {
	/* Match slider width */
	width: 60%;
	margin: 0 auto;
}

.reviews__header {
	text-align: center;
	margin-bottom: 40px;
}

.reviews__title {
	font-size: 32px;
	font-weight: 900;
	color: var(--text-dark);
	margin: 0;
	letter-spacing: -0.01em;
}

.reviews .slider {
	width: 100%;
	/* fill the container which is 60% */
}

/* Review Card */
.review-card {
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	box-shadow: var(--shadow-soft);
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
	min-height: 220px;
	border: 1px solid var(--border);
}

.review-card__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.review-card__stars {
	color: var(--pink);
	display: flex;
	gap: 4px;
	font-size: 14px;
}

.review-card__date {
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 500;
}

.review-card__text {
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-dark);
	flex-grow: 1;
	margin: 0;
}

.review-card__author {
	font-size: 14px;
	font-weight: 700;
	color: var(--text-muted);
}

/* Logos */
.reviews__logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	margin-top: 60px;
	flex-wrap: wrap;
}

.review-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	font-weight: 700;
	color: #475569;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.review-logo img {
	height: 48px;
	width: auto;
	display: block;
}

.review-logo:hover {
	transform: translateY(-2px);
}

.review-logo i {
	font-size: 34px;
}

/* Hide fallback icon unless image fails to load */
.review-logo .fallback-icon {
	display: none;
}

.review-logo.is-fallback .fallback-icon {
	display: inline-block;
}

.review-logo--tripadvisor i {
	color: #00af87;
}

.review-logo--google i {
	color: #4285F4;
}

.review-logo--instagram i {
	color: #E1306C;
}

@media (max-width: 900px) {
	.reviews__inner {
		width: 100%;
	}
}

.slide--review {
	background: transparent;
	box-shadow: none;
	overflow: visible;
	border-radius: 0;
	/* card has radius */
}

/* FAQ Section */
.faq {
	padding: 60px 20px;
	background-color: #fff;
}

.faq__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.faq__title {
	text-align: center;
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 40px;
	color: var(--text-dark);
}

.faq__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: start;
}

.faq__column {
	display: flex;
	flex-direction: column;
	gap: 20px;
	/* Added spacing between items */
}

.faq-item {
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	transition: border-color 0.2s ease;
}

.faq-item:hover {
	border-color: var(--pink);
}

.faq-item__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 16px;
	font-weight: 700;
	color: var(--pink);
	transition: color 0.2s ease;
}

.faq-item__trigger:hover {
	color: var(--pink-dark);
}

.faq-item__icon {
	position: relative;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	margin-left: 16px;
}

.faq-item__icon::before,
.faq-item__icon::after {
	content: '';
	position: absolute;
	background-color: currentColor;
	transition: transform 0.3s ease;
}

.faq-item__icon::before {
	top: 6px;
	left: 0;
	width: 14px;
	height: 2px;
}

.faq-item__icon::after {
	top: 0;
	left: 6px;
	width: 2px;
	height: 14px;
}

/* Transform to 'x' (rotate 45deg) when expanded */
.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
	transform: rotate(45deg);
}

.faq-item__content {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s ease-out;
	border-top: 1px solid transparent;
	/* Hide border when closed */
}

.faq-item__trigger[aria-expanded="true"]+.faq-item__content {
	grid-template-rows: 1fr;
	border-top-color: var(--border);
}

.faq-item__body {
	overflow: hidden;
	padding: 0 20px;
	/* Move padding here but handle vertical padding in transition? */
	opacity: 0;
	transition: opacity 0.4s ease-out, padding 0.4s ease;
}

.faq-item__trigger[aria-expanded="true"]+.faq-item__content .faq-item__body {
	padding: 20px;
	opacity: 1;
}

@media (max-width: 768px) {
	.faq__grid {
		grid-template-columns: 1fr;
	}

	.faq__title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.faq-item__trigger {
		padding: 16px;
		font-size: 15px;
	}

	.faq-item__trigger[aria-expanded="true"]+.faq-item__content .faq-item__body {
		padding: 16px;
	}
}

/* Fleet Section */
.fleet {
	padding: 80px 20px;
	background: #fff;
	border-top: 1px solid var(--border);
}

.fleet__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.fleet .slider {
	width: 100%;
}

.fleet .slider__track {
	padding: 10px;
	scroll-padding-left: 10px;
}

.fleet__header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
}

.fleet__title {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0;
	letter-spacing: -0.02em;
}

.fleet__more {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-dark);
	text-decoration: none;
	transition: color 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.fleet__more:hover {
	color: var(--pink);
}

/* Fleet Controls */
.fleet__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
}

.fleet__controls .slider__nav {
	position: static;
	transform: none;
	opacity: 1;
	pointer-events: auto;
	width: 48px;
	height: 48px;
	border: 1px solid var(--border);
	background: #fff;
	color: var(--text-dark);
	box-shadow: none;
	transition: all 0.2s ease;
}

.fleet__controls .slider__nav:hover {
	border-color: var(--text-dark);
	background: #fff;
	transform: none;
	box-shadow: none;
}

.fleet__controls .slider__nav svg {
	width: 20px;
	height: 20px;
}

/* Fleet Card */
.slide--fleet {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 8px;
	/* Sharper corners as per image */
	box-shadow: none;
	height: auto;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}

.slide--fleet:hover {
	background-color: #fff;
	border-color: #525355;
	box-shadow: none;
	transform: none;
}

.fleet-card {
	padding: 32px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.fleet-card__content {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.fleet-card__title {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0 0 12px;
}

.fleet-card__desc {
	font-size: 13px;
	color: var(--text-muted);
	margin: 0 0 30px;
	line-height: 1.6;
	min-height: 42px;
}

.fleet-card__image {
	margin: 0 0 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 140px;
}

.fleet-card__image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
	/* Filter to make placeholder look a bit better if needed, but raw is fine */
}

.slide--fleet:hover .fleet-card__image img {
	transform: translateY(-5px);
}

.fleet-card__meta {
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 24px;
	padding-top: 0;
	border-top: none;
	/* Removed border as per image 1 */
}

.fleet-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 500;
	background: #f8fafc;
	/* Light background pill */
	padding: 8px 12px;
	border-radius: 6px;
}

.fleet-meta-item i {
	font-size: 14px;
	color: var(--text-dark);
}

/* Responsive Fleet */
@media (max-width: 768px) {
	.fleet {
		padding: 40px 20px;
	}

	.fleet__header {
		margin-bottom: 30px;
	}

	.fleet__title {
		font-size: 28px;
	}

	.fleet-card {
		padding: 24px;
	}

	.fleet-card__image {
		height: 120px;
		margin-bottom: 30px;
	}

	.fleet__controls {
		margin-top: 30px;
		justify-content: center;
		/* Center controls on mobile */
	}
}

/* Floating feedback button (homepage) */
.floating-feedback {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 50;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #e91b5b;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	padding: 12px 16px;
	box-shadow: 0 8px 20px rgba(233, 27, 91, 0.35);
	font-weight: 700;
}


.fleet__more {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-dark);
	text-decoration: none;
	transition: color 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.fleet__more:hover {
	color: var(--pink);
}

/* Fleet Controls */
.fleet__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
}

.fleet__controls .slider__nav {
	position: static;
	transform: none;
	opacity: 1;
	pointer-events: auto;
	width: 48px;
	height: 48px;
	border: 1px solid var(--border);
	background: #fff;
	color: var(--text-dark);
	box-shadow: none;
	transition: all 0.2s ease;
}

.fleet__controls .slider__nav:hover {
	border-color: var(--text-dark);
	background: #fff;
	transform: none;
	box-shadow: none;
}

.fleet__controls .slider__nav svg {
	width: 20px;
	height: 20px;
}

/* Fleet Card */
.slide--fleet {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 8px;
	/* Sharper corners as per image */
	box-shadow: none;
	height: auto;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}

.slide--fleet:hover {
	background-color: #fff;
	border-color: #525355;
	box-shadow: none;
	transform: none;
}

.fleet-card {
	padding: 32px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.fleet-card__content {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.fleet-card__title {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0 0 12px;
}

.fleet-card__desc {
	font-size: 13px;
	color: var(--text-muted);
	margin: 0 0 30px;
	line-height: 1.6;
	min-height: 42px;
}

.fleet-card__image {
	margin: 0 0 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 140px;
}

.fleet-card__image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
	/* Filter to make placeholder look a bit better if needed, but raw is fine */
}

.slide--fleet:hover .fleet-card__image img {
	transform: translateY(-5px);
}

.fleet-card__meta {
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 24px;
	padding-top: 0;
	border-top: none;
	/* Removed border as per image 1 */
}

.fleet-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 500;
	background: #f8fafc;
	/* Light background pill */
	padding: 8px 12px;
	border-radius: 6px;
}

.fleet-meta-item i {
	font-size: 14px;
	color: var(--text-dark);
}

/* Responsive Fleet */
@media (max-width: 768px) {
	.fleet {
		padding: 40px 20px;
	}

	.fleet__header {
		margin-bottom: 30px;
	}

	.fleet__title {
		font-size: 28px;
	}

	.fleet-card {
		padding: 24px;
	}

	.fleet-card__image {
		height: 120px;
		margin-bottom: 30px;
	}

	.fleet__controls {
		margin-top: 30px;
		justify-content: center;
		/* Center controls on mobile */
	}
}

/* Floating feedback button (homepage) */
.floating-feedback {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 50;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #e91b5b;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	padding: 12px 16px;
	box-shadow: 0 8px 20px rgba(233, 27, 91, 0.35);
	font-weight: 700;
}

.floating-feedback:hover {
	opacity: 0.95;
	transform: translateY(-1px);
}

.floating-feedback i {
	font-size: 16px;
}

/* Scroll Animations */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: opacity, transform;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* Staggered delays for grid items */
.features__grid .feature.reveal:nth-child(1) {
	transition-delay: 0s;
}

.features__grid .feature.reveal:nth-child(2) {
	transition-delay: 0.1s;
}

.features__grid .feature.reveal:nth-child(3) {
	transition-delay: 0.2s;
}

.features__grid .feature.reveal:nth-child(4) {
	transition-delay: 0.3s;
}

.features__grid .feature.reveal:nth-child(5) {
	transition-delay: 0.4s;
}

.features__grid .feature.reveal:nth-child(6) {
	transition-delay: 0.5s;
}

/* Staggered delays for airport slides */
.airports .slide.reveal:nth-child(1) {
	transition-delay: 0s;
}

.airports .slide.reveal:nth-child(2) {
	transition-delay: 0.1s;
}

.airports .slide.reveal:nth-child(3) {
	transition-delay: 0.15s;
}

.airports .slide.reveal:nth-child(4) {
	transition-delay: 0.2s;
}

.airports .slide.reveal:nth-child(5) {
	transition-delay: 0.25s;
}

.airports .slide.reveal:nth-child(6) {
	transition-delay: 0.3s;
}

/* Staggered delays for news cards */
.news-feed__grid .news-card.reveal:nth-child(1) {
	transition-delay: 0s;
}

.news-feed__grid .news-card.reveal:nth-child(2) {
	transition-delay: 0.15s;
}

.news-feed__grid .news-card.reveal:nth-child(3) {
	transition-delay: 0.3s;
}

/* Staggered delays for review slides */
.reviews .slide.reveal:nth-child(1) {
	transition-delay: 0s;
}

.reviews .slide.reveal:nth-child(2) {
	transition-delay: 0.1s;
}

.reviews .slide.reveal:nth-child(3) {
	transition-delay: 0.15s;
}

.reviews .slide.reveal:nth-child(4) {
	transition-delay: 0.2s;
}

.reviews .slide.reveal:nth-child(5) {
	transition-delay: 0.25s;
}

/* Staggered delays for FAQ items */
.faq__column:first-child .faq-item.reveal:nth-child(1) {
	transition-delay: 0s;
}

.faq__column:first-child .faq-item.reveal:nth-child(2) {
	transition-delay: 0.1s;
}

.faq__column:first-child .faq-item.reveal:nth-child(3) {
	transition-delay: 0.2s;
}

.faq__column:first-child .faq-item.reveal:nth-child(4) {
	transition-delay: 0.3s;
}

.faq__column:first-child .faq-item.reveal:nth-child(5) {
	transition-delay: 0.4s;
}

.faq__column:last-child .faq-item.reveal:nth-child(1) {
	transition-delay: 0.05s;
}

.faq__column:last-child .faq-item.reveal:nth-child(2) {
	transition-delay: 0.15s;
}

.faq__column:last-child .faq-item.reveal:nth-child(3) {
	transition-delay: 0.25s;
}

.faq__column:last-child .faq-item.reveal:nth-child(4) {
	transition-delay: 0.35s;
}

.faq__column:last-child .faq-item.reveal:nth-child(5) {
	transition-delay: 0.45s;
}

/* Staggered delays for fleet slides */
.fleet .slide.reveal:nth-child(1) {
	transition-delay: 0s;
}

.fleet .slide.reveal:nth-child(2) {
	transition-delay: 0.1s;
}

.fleet .slide.reveal:nth-child(3) {
	transition-delay: 0.2s;
}

.fleet .slide.reveal:nth-child(4) {
	transition-delay: 0.25s;
}

.fleet .slide.reveal:nth-child(5) {
	transition-delay: 0.3s;
}

.fleet .slide.reveal:nth-child(6) {
	transition-delay: 0.35s;
}

/* Generic delay classes (fallback) */
.reveal-delay-1 {
	transition-delay: 0.1s;
}

.reveal-delay-2 {
	transition-delay: 0.2s;
}

.reveal-delay-3 {
	transition-delay: 0.3s;
}

/* Location Search Modal */
.location-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(8, 8, 10, 0.98);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 15vh;
	opacity: 0;
	pointer-events: none;
	will-change: opacity;
}

.location-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}


.location-modal__close {
	position: absolute;
	top: 28px;
	right: 32px;
	width: 44px;
	height: 44px;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.location-modal__close:hover {
	color: #fff;
}

.location-modal__close svg {
	width: 32px;
	height: 32px;
}

.location-modal__content {
	width: 100%;
	max-width: 720px;
	padding: 0 24px;
	transform: translateY(20px);
	opacity: 0;
	will-change: transform, opacity;
}

.location-modal.is-open .location-modal__content {
	transform: translateY(0);
	opacity: 1;
	transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.location-modal__search {
	position: relative;
	background: rgba(32, 32, 36, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 0 20px;
	display: flex;
	align-items: center;
}

.location-modal__search input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	height: 64px;
	font-size: 18px;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.01em;
}

.location-modal__search input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.location-modal__clear {
	background: none;
	border: none;
	color: #e53e3e;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
	margin-right: 8px;
	transition: color 0.2s ease;
	flex-shrink: 0;
}

.location-modal__clear svg {
	width: 20px;
	height: 20px;
}

.location-modal__clear:hover {
	color: #ff4d4d;
}

.location-modal__arrow {
	color: rgba(255, 255, 255, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}

.location-modal__arrow svg {
	width: 28px;
	height: 28px;
}

.location-modal__suggestions {
	margin-top: 48px;
}

.location-modal__title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 20px;
	letter-spacing: 0.02em;
}

.location-modal__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.location-modal__list li {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.location-modal__list li:hover {
	color: #fff;
}

.location-modal__list li:last-child {
	border-bottom: none;
}

/* Google Places Autocomplete Styles */
.location-modal__list li .place-main {
	display: block;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

.location-modal__list li .place-secondary {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 2px;
}

.location-modal__list li:hover .place-main {
	color: #fff;
}

.location-modal__list li:hover .place-secondary {
	color: rgba(255, 255, 255, 0.6);
}

.location-modal__list li.no-results {
	color: rgba(255, 255, 255, 0.4);
	cursor: default;
	font-style: italic;
}

.location-modal__list li.no-results:hover {
	color: rgba(255, 255, 255, 0.4);
}

/* Category Headers for Local Search Results */
.location-modal__list li.suggestion-header {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 16px 0 8px;
	border-bottom: none;
	cursor: default;
	display: flex;
	align-items: center;
	gap: 8px;
}

.location-modal__list li.suggestion-header:first-child {
	padding-top: 0;
}

.location-modal__list li.suggestion-header:hover {
	color: rgba(255, 255, 255, 0.5);
}

.location-modal__list li.suggestion-header .header-icon {
	font-size: 14px;
}

/* Local Search Result Items */
.location-modal__list li.local-suggestion {
	padding-left: 24px;
}

/* Make original inputs clickable */
.booking-form .field[data-location-trigger],
.booking-form .field[data-date-trigger] {
	cursor: pointer;
}

.booking-form .field[data-location-trigger] input,
.booking-form .field[data-date-trigger] input {
	cursor: pointer;
}

/* Date Picker Modal */
.date-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(8, 8, 10, 0.98);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 12vh;
	opacity: 0;
	pointer-events: none;
	will-change: opacity;
}

.date-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.date-modal__close {
	position: absolute;
	top: 28px;
	right: 32px;
	width: 44px;
	height: 44px;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.date-modal__close:hover {
	color: #fff;
}

.date-modal__close svg {
	width: 32px;
	height: 32px;
}

.date-modal__content {
	width: 100%;
	max-width: 820px;
	padding: 0 24px;
	transform: translateY(20px);
	opacity: 0;
	will-change: transform, opacity;
}

.date-modal.is-open .date-modal__content {
	transform: translateY(0);
	opacity: 1;
	transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.date-modal__title {
	text-align: center;
	font-size: 28px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 48px;
	letter-spacing: 0.02em;
}

.date-modal__calendars {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 40px;
	position: relative;
}

.date-modal__calendar {
	flex: 0 0 auto;
	min-width: 280px;
}

.date-modal__calendar-header {
	text-align: center;
	margin-bottom: 20px;
}

.date-modal__month-title {
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.date-modal__weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
	margin-bottom: 8px;
}

.date-modal__weekday {
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.4);
	padding: 8px 0;
	text-transform: uppercase;
}

.date-modal__days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.date-modal__day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.5);
	border-radius: 4px;
	cursor: default;
	border: 1px solid transparent;
}

.date-modal__day--empty {
	visibility: hidden;
}

.date-modal__day--disabled {
	color: rgba(255, 255, 255, 0.2);
	cursor: not-allowed;
}

.date-modal__day--available {
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
}

.date-modal__day--available:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.date-modal__day--today {
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
}

.date-modal__day--selected {
	background: rgba(255, 255, 255, 0.9) !important;
	color: #0a0a0c !important;
	font-weight: 600;
}

.date-modal__nav {
	position: absolute;
	top: 0;
	width: 36px;
	height: 36px;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.date-modal__nav:hover {
	color: #fff;
}

.date-modal__nav svg {
	width: 20px;
	height: 20px;
}

.date-modal__nav--prev {
	left: 0;
}

.date-modal__nav--next {
	right: 0;
}

.date-modal__nav:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

/* Divider between calendars */
.date-modal__calendar:first-of-type::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 40px;
	bottom: 0;
	width: 1px;
	background: rgba(255, 255, 255, 0.1);
	transform: translateX(-50%);
}

/* Time Picker Modal */
.time-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(8, 8, 10, 0.98);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 15vh;
	opacity: 0;
	pointer-events: none;
	will-change: opacity;
}

.time-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.time-modal__close {
	position: absolute;
	top: 28px;
	right: 32px;
	width: 44px;
	height: 44px;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.time-modal__close:hover {
	color: #fff;
}

.time-modal__close svg {
	width: 32px;
	height: 32px;
}

.time-modal__content {
	width: 100%;
	max-width: 600px;
	padding: 0 24px;
	transform: translateY(20px);
	opacity: 0;
	will-change: transform, opacity;
	text-align: center;
}

.time-modal.is-open .time-modal__content {
	transform: translateY(0);
	opacity: 1;
	transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.time-modal__title {
	font-size: 28px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 16px;
	letter-spacing: 0.02em;
}

.time-modal__desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 0 48px;
	line-height: 1.6;
}

.time-modal__selectors {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 24px;
}

.time-modal__select-wrapper {
	position: relative;
	flex: 0 0 200px;
}

.time-modal__select {
	background: rgba(32, 32, 36, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: border-color 0.2s ease;
}

.time-modal__select:hover,
.time-modal__select.is-open {
	border-color: rgba(255, 255, 255, 0.2);
}

.time-modal__select-value {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}

.time-modal__select-arrow {
	width: 20px;
	height: 20px;
	color: rgba(255, 255, 255, 0.4);
	transition: transform 0.2s ease;
}

.time-modal__select.is-open .time-modal__select-arrow {
	transform: rotate(180deg);
}

.time-modal__dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin-top: 4px;
	background: rgba(32, 32, 36, 0.98);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	max-height: 240px;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 10;
}

.time-modal__dropdown.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.time-modal__dropdown::-webkit-scrollbar {
	width: 6px;
}

.time-modal__dropdown::-webkit-scrollbar-track {
	background: transparent;
}

.time-modal__dropdown::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 3px;
}

.time-modal__option {
	padding: 12px 20px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	transition: background-color 0.15s ease;
}

.time-modal__option:last-child {
	border-bottom: none;
}

.time-modal__option:hover:not(.time-modal__option--disabled) {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.time-modal__option--disabled {
	color: rgba(255, 255, 255, 0.2);
	cursor: not-allowed;
}

.time-modal__option--selected {
	color: #fff;
	font-weight: 600;
}

.time-modal__confirm {
	margin-top: 48px;
	padding: 14px 48px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 6px;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.time-modal__confirm:hover {
	background: #fff;
	color: #0a0a0c;
}

/* Make time inputs clickable */
.booking-form .field[data-time-trigger] {
	cursor: pointer;
}

.booking-form .field[data-time-trigger] input {
	cursor: pointer;
}

@media (max-width: 640px) {
	.location-modal {
		padding-top: 10vh;
	}

	.location-modal__close {
		top: 16px;
		right: 16px;
	}

	.location-modal__content {
		padding: 0 16px;
	}

	.location-modal__search input {
		height: 56px;
		font-size: 16px;
	}

	.location-modal__suggestions {
		margin-top: 32px;
	}

	.location-modal__title {
		font-size: 14px;
	}

	.location-modal__list li {
		font-size: 15px;
		padding: 10px 0;
	}

	/* Date Modal Mobile */
	.date-modal {
		padding-top: 0;
		align-items: flex-start;
		overflow-y: auto;
	}

	.date-modal__close {
		position: fixed;
		top: 16px;
		right: 16px;
		z-index: 10;
	}

	.date-modal__content {
		padding: 60px 16px 40px;
		max-width: 100%;
		min-height: 100%;
	}

	.date-modal__title {
		font-size: 22px;
		margin-bottom: 24px;
	}

	.date-modal__calendars {
		flex-direction: column;
		gap: 24px;
		padding: 0 8px;
	}

	.date-modal__calendar {
		width: 100%;
		min-width: auto;
		max-width: 320px;
		margin: 0 auto;
	}

	.date-modal__calendar:first-of-type::after {
		display: none;
	}

	.date-modal__nav {
		position: fixed;
		top: 50%;
		transform: translateY(-50%);
		z-index: 5;
	}

	.date-modal__nav--prev {
		left: 8px;
	}

	.date-modal__nav--next {
		right: 8px;
	}

	.date-modal__day {
		font-size: 14px;
	}

	.date-modal__weekday {
		font-size: 11px;
	}

	/* Time Modal Mobile */
	.time-modal {
		padding-top: 12vh;
	}

	.time-modal__close {
		top: 16px;
		right: 16px;
	}

	.time-modal__content {
		padding: 0 16px;
	}

	.time-modal__title {
		font-size: 22px;
	}

	.time-modal__desc {
		font-size: 14px;
		margin-bottom: 32px;
	}

	.time-modal__selectors {
		gap: 16px;
	}

	.time-modal__select-wrapper {
		flex: 1;
	}

	.time-modal__select {
		padding: 14px 16px;
	}

	.time-modal__select-value {
		font-size: 18px;
	}

	.time-modal__confirm {
		margin-top: 32px;
		width: 100%;
	}
}

/* Extra small screens */
@media (max-width: 380px) {
	.date-modal__calendar {
		max-width: 280px;
	}

	.date-modal__day {
		font-size: 13px;
	}

	.date-modal__month-title {
		font-size: 12px;
	}
}

/* Landscape mode on mobile */
@media (max-height: 500px) {
	.date-modal {
		padding-top: 0;
	}

	.date-modal__content {
		padding-top: 50px;
		padding-bottom: 30px;
	}

	.date-modal__title {
		font-size: 18px;
		margin-bottom: 16px;
	}

	.date-modal__calendars {
		gap: 16px;
	}

	.time-modal {
		padding-top: 5vh;
	}

	.time-modal__content {
		padding-top: 40px;
	}

	.time-modal__title {
		font-size: 18px;
	}

	.time-modal__desc {
		margin-bottom: 20px;
	}
}