/* ========================================
   Why Travel With Moraway
======================================== */

.moraway-why-travel-section {
	position: relative;
	padding: 90px 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.moraway-why-travel-overlay {
	position: absolute;
	inset: 0;
	background: rgba(18, 27, 34, 0.45);
	pointer-events: none;
}

.moraway-why-travel-inner {
	position: relative;
	z-index: 2;
	width: min(1280px, calc(100% - 48px));
	margin: 0 auto;
}

.moraway-why-travel-header {
	text-align: center;
	margin-bottom: 42px;
}

.moraway-why-travel-header h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 3vw, 3.25rem);
	line-height: 1.1;
}

.moraway-why-travel-carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
}

.moraway-why-travel-viewport {
	overflow: hidden;
	flex: 1 1 auto;
}

.moraway-why-travel-track {
	display: flex;
	transition: transform 0.45s ease;
	will-change: transform;
}

.moraway-why-travel-card {
	flex: 0 0 33.3333%;
	padding: 0 14px;
	box-sizing: border-box;
}

.moraway-why-travel-card-inner {
	height: 100%;
	min-height: 290px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 18px;
	padding: 34px 28px;
	box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	text-align: center;
}

.moraway-why-travel-card h3 {
	margin: 0 0 16px;
	font-size: 1.35rem;
	line-height: 1.2;
	color: #1f2f3a;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.moraway-why-travel-copy,
.moraway-why-travel-copy p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
	color: #3d4b55;
}

.moraway-why-arrow {
	flex: 0 0 auto;
	width: 54px;
	height: 54px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	color: #22313b;
	font-size: 2rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.moraway-why-arrow:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.moraway-why-arrow:disabled {
	opacity: 0.4;
	cursor: default;
	transform: none;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.moraway-why-travel-section.is-static .moraway-why-travel-track {
	justify-content: center;
}

.moraway-why-travel-section.is-static .moraway-why-travel-viewport {
	overflow: visible;
}

@media (max-width: 1024px) {
	.moraway-why-travel-card {
		flex: 0 0 50%;
	}

	.moraway-why-travel-card-inner {
		min-height: 260px;
	}
}

@media (max-width: 767px) {
	.moraway-why-travel-section {
		padding: 70px 0;
	}

	.moraway-why-travel-inner {
		width: min(100% - 28px, 1280px);
	}

	.moraway-why-travel-carousel {
		gap: 12px;
	}

	.moraway-why-arrow {
		width: 44px;
		height: 44px;
		font-size: 1.7rem;
	}

	.moraway-why-travel-card {
		flex: 0 0 100%;
		padding: 0 8px;
	}

	.moraway-why-travel-card-inner {
		min-height: auto;
		padding: 26px 22px;
	}
}