/**
 * Travel Tours — homepage
 */

:root {
	--tt-header-offset: 116px;
}

/* Full-bleed home, no extra main padding */
.site-main--home {
	padding: 0;
}

.site-main--home .tt-home {
	overflow-x: hidden;
}

/* ── Hero ──────────────────────────────────────────────────── */
.tt-hero {
	position: relative;
	min-height: 92vh;
	min-height: 92dvh;
	display: flex;
	align-items: center;
	margin-top: calc(-1 * var(--tt-header-offset));
	padding-top: calc(var(--tt-header-offset) + 2rem);
	padding-bottom: 4rem;
	color: #fff;
}

.tt-hero__bg {
	position: absolute;
	inset: 0;
	background: url("../images/home/decor/aurora.jpg") center/cover no-repeat;
	z-index: 0;
}

.tt-hero__bg[style*="background-image"] {
	background-size: cover !important;
	background-position: center !important;
}

.tt-hero__overlay {
	position: absolute;
	inset: 0;
	/* Subtle neutral scrim for text readability — no purple tint */
	background: linear-gradient(
		105deg,
		rgba(0, 0, 0, 0.45) 0%,
		rgba(0, 0, 0, 0.15) 50%,
		rgba(0, 0, 0, 0.35) 100%
	);
	z-index: 1;
	pointer-events: none;
}

.tt-hero__content {
	position: relative;
	z-index: 2;
}

.min-vh-75 {
	min-height: 65vh;
}

.tt-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--tt-accent);
	margin-bottom: 1.25rem;
}

.tt-hero__title {
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.03em;
	margin-bottom: 1rem;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.tt-hero__subtitle {
	font-size: clamp(1rem, 2vw, 1.2rem);
	opacity: 0.95;
	max-width: 540px;
	line-height: 1.65;
	margin-bottom: 1.75rem;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.tt-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.btn-tt-hero-outline {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.65);
	color: #fff;
	font-weight: 600;
	border-radius: 999px;
	padding: 0.65rem 1.5rem;
	transition: all 0.2s ease;
}

.btn-tt-hero-outline:hover {
	background: #fff;
	border-color: #fff;
	color: var(--tt-primary-dark);
}

.tt-hero__trust {
	font-size: 0.875rem;
	opacity: 0.9;
}

.tt-hero__trust i {
	color: var(--tt-accent);
	margin-right: 0.25rem;
}

/* Hero — Plan Your Journey inquiry form */
.tt-hero-inquiry {
	animation: ttInquiryIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s backwards;
}

@keyframes ttInquiryIn {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.98);
	}
}

.tt-hero-inquiry__card {
	position: relative;
	border-radius: 1.25rem;
	background: #fff;
	overflow: hidden;
	box-shadow:
		0 4px 6px rgba(0, 0, 0, 0.04),
		0 24px 60px rgba(0, 0, 0, 0.2),
		0 0 48px rgba(var(--tt-primary-rgb), 0.22);
	transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.tt-hero-inquiry.is-focused .tt-hero-inquiry__card {
	box-shadow:
		0 8px 12px rgba(0, 0, 0, 0.06),
		0 28px 64px rgba(0, 0, 0, 0.22),
		0 0 56px rgba(var(--tt-primary-rgb), 0.32);
}

.tt-hero-inquiry__header {
	position: relative;
	padding: 1.5rem 1.65rem 2.15rem;
	text-align: center;
	background: linear-gradient(135deg, var(--tt-primary) 0%, var(--tt-primary-dark) 100%);
	color: #fff;
}

.tt-hero-inquiry__header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 28px;
	background: #fff;
	border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.tt-hero-inquiry__title {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	margin: 0 0 0.35rem;
	font-size: 1.35rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.tt-hero-inquiry__title .bi-star-fill {
	font-size: 0.85rem;
	color: var(--tt-accent);
}

.tt-hero-inquiry__tagline {
	margin: 0;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.4;
}

.tt-hero-inquiry__body {
	padding: 0.35rem 1.65rem 1.35rem;
}

.tt-hero-field {
	margin-bottom: 1rem;
	border: none;
	padding: 0;
	min-width: 0;
}

.tt-hero-field--chips {
	margin-bottom: 1.15rem;
}

.tt-hero-field__label,
.tt-hero-field legend.tt-hero-field__label {
	display: block;
	float: left;
	width: 100%;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #9ca3af;
	margin-bottom: 0.45rem;
	padding: 0;
	border: none;
}

.tt-hero-field__control {
	position: relative;
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid rgba(var(--tt-primary-rgb), 0.14);
	border-radius: 0.65rem;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.tt-hero-field__control:focus-within {
	border-color: var(--tt-primary);
	box-shadow: 0 0 0 3px rgba(var(--tt-primary-rgb), 0.1);
}

.tt-hero-field__icon {
	flex-shrink: 0;
	width: 2.65rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--tt-primary);
	font-size: 1rem;
}

.tt-hero-field__select,
.tt-hero-field__input {
	flex: 1;
	width: 100%;
	min-width: 0;
	border: none;
	background: transparent;
	padding: 0.82rem 2.35rem 0.82rem 0;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--tt-dark);
}

.tt-hero-field__select {
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.tt-hero-field__input {
	cursor: text;
	color-scheme: light;
}

.tt-hero-field__input::-webkit-calendar-picker-indicator {
	opacity: 0;
	position: absolute;
	right: 0;
	width: 2.5rem;
	height: 100%;
	cursor: pointer;
}

.tt-hero-field__select:focus,
.tt-hero-field__input:focus {
	outline: none;
}

.tt-hero-field__select option {
	color: var(--tt-dark);
}

.tt-hero-field__chevron,
.tt-hero-field__date-icon {
	position: absolute;
	right: 0.85rem;
	pointer-events: none;
	color: var(--tt-primary);
	font-size: 0.95rem;
}

.tt-hero-field__control:focus-within .tt-hero-field__chevron {
	transform: rotate(180deg);
}

.tt-hero-field__input::placeholder {
	color: #9ca3af;
	opacity: 1;
}

.tt-hero-field__input--date:not(:focus):invalid {
	color: #9ca3af;
}

.tt-hero-service-chips {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.45rem;
}

.tt-hero-chip {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	min-height: 4.25rem;
	padding: 0.45rem 0.25rem;
	border-radius: 0.65rem;
	border: 1px solid rgba(var(--tt-primary-rgb), 0.18);
	background: #fff;
	color: var(--tt-primary);
	font-size: 0.68rem;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.tt-hero-chip input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.tt-hero-chip__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	line-height: 1;
}

.tt-hero-chip__label {
	line-height: 1.2;
}

.tt-hero-chip:hover {
	border-color: var(--tt-primary);
	transform: translateY(-1px);
}

.tt-hero-chip.is-active,
.tt-hero-chip:has(input:checked) {
	background: var(--tt-primary);
	border-color: var(--tt-primary);
	color: #fff;
	box-shadow: 0 6px 16px rgba(var(--tt-primary-rgb), 0.28);
}

.tt-hero-inquiry__submit {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 0.15rem;
	padding: 0.95rem 1.35rem;
	border: none;
	border-radius: 0.65rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--tt-navy);
	background: linear-gradient(135deg, var(--tt-accent) 0%, #fcd34d 50%, var(--tt-accent-hover) 100%);
	box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tt-hero-inquiry__submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(251, 191, 36, 0.48);
}

.tt-hero-inquiry__submit:active {
	transform: translateY(0);
}

.tt-hero-inquiry__submit i {
	font-size: 1rem;
	transition: transform 0.25s ease;
}

.tt-hero-inquiry__submit:hover i {
	transform: translateX(3px);
}

.tt-hero-inquiry__badges {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.5rem;
	margin: 0;
	padding: 0.95rem 1rem 1.1rem;
	border-top: 1px solid rgba(var(--tt-primary-rgb), 0.1);
}

.tt-hero-inquiry__badges li {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 0.3rem;
	padding: 0 0.35rem;
	font-size: 0.68rem;
	font-weight: 600;
	color: var(--tt-primary);
	text-align: center;
	line-height: 1.3;
}

.tt-hero-inquiry__badges li:not(:last-child) {
	border-right: 1px solid rgba(var(--tt-primary-rgb), 0.12);
}

.tt-hero-inquiry__badges i {
	font-size: 1.05rem;
	color: var(--tt-primary);
}

@media (prefers-reduced-motion: reduce) {
	.tt-hero-inquiry {
		animation: none;
	}
}

.tt-hero__scroll {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.5rem;
	text-decoration: none;
	animation: ttBounce 2s ease infinite;
}

.tt-hero__scroll:hover {
	color: var(--tt-accent);
}

@keyframes ttBounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero header: transparent nav over hero */
.has-hero-header .site-header--hero:not(.is-sticky) .tt-navbar {
	background: transparent;
	border-bottom-color: transparent;
	box-shadow: none;
}

.has-hero-header .site-header--hero:not(.is-sticky) .tt-nav-menu > .nav-item > .nav-link {
	color: #fff;
}

.has-hero-header .site-header--hero:not(.is-sticky) .tt-nav-menu > .nav-item > .nav-link:hover {
	background: rgba(255, 255, 255, 0.12);
	color: var(--tt-accent);
}

.has-hero-header .site-header--hero:not(.is-sticky) .tt-brand {
	color: #fff;
}

.has-hero-header .site-header--hero:not(.is-sticky) .tt-brand__sub {
	color: rgba(255, 255, 255, 0.7);
}

.has-hero-header .site-header--hero:not(.is-sticky) .btn-tt-ghost {
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}

.has-hero-header .site-header--hero.is-sticky + .site-main--home {
	padding-top: 0;
}

/* ── Section shared ─────────────────────────────────────────── */
.tt-section {
	padding: 5rem 0;
}

.tt-section-head__eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--tt-accent);
	margin-bottom: 0.5rem;
}

.tt-section-head__title {
	font-size: clamp(1.65rem, 3vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--tt-dark);
	margin-bottom: 0.75rem;
}

.tt-section-head__text {
	max-width: 620px;
	color: var(--tt-muted);
	font-size: 1.05rem;
	line-height: 1.65;
}

/* ── Services — bento grid (What We Offer) ─────────────────── */
.tt-services {
	position: relative;
	background: linear-gradient(180deg, var(--tt-light) 0%, #fff 50%, var(--tt-light) 100%);
	overflow: hidden;
}

.tt-services .container {
	position: relative;
	z-index: 1;
}

.tt-services .tt-section-head {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.tt-services.is-inview .tt-section-head {
	opacity: 1;
	transform: none;
}

.tt-section-head--services .tt-section-head__eyebrow {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--tt-accent);
	margin-bottom: 0.35rem;
}

.tt-section-head--services .tt-section-head__star {
	display: block;
	color: var(--tt-accent);
	font-size: 0.85rem;
	margin-bottom: 0.65rem;
	line-height: 1;
}

.tt-section-head--services .tt-section-head__title {
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: clamp(1.85rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: var(--tt-primary-dark);
	margin-bottom: 0.85rem;
}

.tt-section-head--services .tt-section-head__text {
	max-width: 640px;
	color: #6b7280;
	font-size: 1rem;
}

.tt-services-bento {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
	gap: clamp(1rem, 2vw, 1.25rem);
	align-items: stretch;
}

.tt-services-bento__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.25rem);
}

/* Shared card */
.tt-service-card {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(var(--tt-primary-rgb), 0.06);
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.03),
		0 10px 28px rgba(var(--tt-primary-rgb), 0.06);
	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}

.tt-service-card:hover,
.tt-service-card.is-hovered {
	transform: translateY(-4px);
	border-color: rgba(var(--tt-primary-rgb), 0.12);
	box-shadow:
		0 4px 8px rgba(15, 23, 42, 0.04),
		0 18px 40px rgba(var(--tt-primary-rgb), 0.1);
}

[data-service-item] {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
	transition-delay: var(--animate-delay, 0ms);
}

.tt-services.is-inview [data-service-item] {
	opacity: 1;
	transform: none;
}

/* Featured card */
.tt-service-card--featured {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: clamp(440px, 52vw, 540px);
	padding: clamp(1.75rem, 3vw, 2.35rem);
	color: #fff;
}

.tt-service-card__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.tt-service-card--featured:hover .tt-service-card__bg,
.tt-service-card--featured.is-hovered .tt-service-card__bg {
	transform: scale(1.04);
}

.tt-service-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(26, 10, 46, 0.08) 0%,
		rgba(26, 10, 46, 0.2) 38%,
		rgba(26, 10, 46, 0.88) 100%
	);
	pointer-events: none;
}

.tt-service-card--featured .tt-service-card__body {
	position: relative;
	z-index: 1;
	max-width: 400px;
}

.tt-service-card__icon-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 0.85rem;
	border-radius: 50%;
	background: var(--tt-primary);
	color: var(--tt-accent);
	font-size: 1.25rem;
	box-shadow: 0 8px 20px rgba(91, 33, 182, 0.35);
}

.tt-service-card--featured .tt-service-card__title {
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: clamp(1.55rem, 2.5vw, 1.95rem);
	font-weight: 700;
	margin: 0 0 0.65rem;
	color: #fff;
	letter-spacing: -0.01em;
}

.tt-service-card--featured .tt-service-card__text {
	margin: 0 0 1.35rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.92rem;
	line-height: 1.65;
	max-width: 36ch;
}

.tt-service-card__cta {
	min-width: 190px;
	border-radius: 0.65rem !important;
	padding: 0.7rem 1.35rem !important;
	font-size: 0.9rem !important;
	box-shadow: 0 8px 24px rgba(251, 191, 36, 0.35);
}

/* Compact cards */
.tt-service-card--compact {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: visible;
}

.tt-service-card__media {
	position: relative;
	height: 142px;
	overflow: visible;
	flex-shrink: 0;
	margin-bottom: 1.35rem;
}

.tt-service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1rem 1rem 0 0;
	transition: transform 0.5s ease;
}

.tt-service-card__media::after {
	content: "";
	position: absolute;
	left: -8%;
	right: -8%;
	bottom: -14px;
	height: 28px;
	background: #fff;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.tt-service-card--compact:hover .tt-service-card__media img,
.tt-service-card--compact.is-hovered .tt-service-card__media img {
	transform: scale(1.05);
}

.tt-service-card--compact .tt-service-card__icon {
	position: absolute;
	left: 1.15rem;
	bottom: -1.35rem;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: var(--tt-primary);
	color: var(--tt-accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	box-shadow: 0 6px 18px rgba(91, 33, 182, 0.28);
	z-index: 2;
}

.tt-service-card__icon--float {
	animation: ttServiceIconFloat 5s ease-in-out infinite;
}

@keyframes ttServiceIconFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-3px); }
}

.tt-service-card--compact .tt-service-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 0 1.25rem 1.3rem;
}

.tt-service-card--compact .tt-service-card__title {
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 1.08rem;
	font-weight: 700;
	margin: 0 0 0.4rem;
	color: var(--tt-primary-dark);
	letter-spacing: -0.01em;
	transition: color 0.25s ease;
}

.tt-service-card--compact:hover .tt-service-card__title,
.tt-service-card--compact.is-hovered .tt-service-card__title {
	color: var(--service-accent);
}

.tt-service-card--compact .tt-service-card__text {
	flex: 1;
	margin: 0 0 0.75rem;
	color: #6b7280;
	font-size: 0.84rem;
	line-height: 1.58;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tt-service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: auto;
	font-size: 0.84rem;
	font-weight: 700;
	color: var(--service-accent);
	text-decoration: none;
	transition: gap 0.25s ease;
}

.tt-service-card__link i {
	transition: transform 0.25s ease;
}

.tt-service-card--compact:hover .tt-service-card__link,
.tt-service-card--compact.is-hovered .tt-service-card__link {
	gap: 0.55rem;
}

.tt-service-card--compact:hover .tt-service-card__link i,
.tt-service-card--compact.is-hovered .tt-service-card__link i {
	transform: translateX(3px);
}

/* Trust badges */
.tt-services-trust {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.75rem);
	margin-top: clamp(2rem, 4vw, 2.75rem);
	padding: clamp(1.35rem, 2.5vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
	border-radius: 1rem;
	background: #fff;
	border: 1px solid rgba(var(--tt-primary-rgb), 0.1);
	box-shadow: 0 8px 24px rgba(var(--tt-primary-rgb), 0.05);
}

.tt-services-trust__item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.tt-services-trust__icon {
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 50%;
	background: rgba(var(--tt-primary-rgb), 0.08);
	color: var(--tt-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	flex-shrink: 0;
}

.tt-services-trust__copy {
	min-width: 0;
}

.tt-services-trust__label {
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--tt-primary-dark);
	margin-bottom: 0.2rem;
	line-height: 1.3;
}

.tt-services-trust__text {
	font-size: 0.78rem;
	color: #6b7280;
	line-height: 1.5;
}

@media (max-width: 991.98px) {
	.tt-services-bento {
		grid-template-columns: 1fr;
	}

	.tt-service-card--featured {
		min-height: 400px;
	}

	.tt-services-bento__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tt-services-trust {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575.98px) {
	.tt-services-bento__grid {
		grid-template-columns: 1fr;
	}

	.tt-services-trust {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tt-services .tt-section-head,
	[data-service-item] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.tt-service-card {
		transform: none !important;
	}
}

/* ── Stats ─────────────────────────────────────────────────── */
.tt-stats {
	background: linear-gradient(90deg, var(--tt-navy) 0%, var(--tt-primary-dark) 100%);
	color: #fff;
	padding: 3rem 0;
}

.tt-stat__icon {
	font-size: 1.75rem;
	color: var(--tt-accent);
	margin-bottom: 0.5rem;
	display: block;
}

.tt-stat__value {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	line-height: 1.1;
}

.tt-stat__label {
	font-size: 0.875rem;
	opacity: 0.8;
	margin-top: 0.25rem;
}

/* ── Destinations ──────────────────────────────────────────── */
.tt-dest-card {
	display: block;
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	aspect-ratio: 4/5;
	text-decoration: none;
	color: #fff;
}

.tt-dest-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.tt-dest-card:hover .tt-dest-card__img {
	transform: scale(1.08);
}

.tt-dest-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 55%);
	transition: opacity 0.3s ease;
}

.tt-dest-card:hover .tt-dest-card__overlay {
	opacity: 0.95;
}

.tt-dest-card__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.5rem;
	z-index: 1;
}

.tt-dest-card__name {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.2rem;
}

.tt-dest-card__tours {
	font-size: 0.85rem;
	opacity: 0.85;
}

.tt-dest-card__arrow {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--tt-accent);
	color: var(--tt-navy);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	opacity: 0;
	transform: translate(8px, -8px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 2;
}

.tt-dest-card:hover .tt-dest-card__arrow {
	opacity: 1;
	transform: translate(0, 0);
}

/* ── Process steps ─────────────────────────────────────────── */
.tt-process {
	background: #fff;
}

.tt-process__steps {
	position: relative;
}

.tt-step-card {
	padding: 1.5rem 1rem;
}

.tt-step-card__number {
	font-size: 2.5rem;
	font-weight: 800;
	color: rgba(var(--tt-primary-rgb), 0.12);
	line-height: 1;
	margin-bottom: 0.75rem;
}

.tt-step-card__title {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.tt-step-card__text {
	font-size: 0.9rem;
	color: var(--tt-muted);
	line-height: 1.55;
}

@media (min-width: 992px) {
	.tt-process__steps::before {
		content: "";
		position: absolute;
		top: 2.75rem;
		left: 12.5%;
		right: 12.5%;
		height: 2px;
		background: linear-gradient(90deg, var(--tt-primary) 0%, var(--tt-accent) 100%);
		opacity: 0.2;
		z-index: 0;
	}

	.tt-step-card {
		position: relative;
		z-index: 1;
	}
}

/* ── Home CTA ──────────────────────────────────────────────── */
.tt-home-cta {
	padding: 4.5rem 0;
	background: linear-gradient(135deg, var(--tt-primary) 0%, var(--tt-primary-light) 100%);
	color: #fff;
}

.tt-home-cta__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	margin-bottom: 0.75rem;
}

.tt-home-cta__text {
	opacity: 0.9;
	max-width: 560px;
	margin: 0 auto 1.75rem;
	font-size: 1.05rem;
}

.tt-home-cta .btn-tt-hero-outline:hover {
	color: var(--tt-primary-dark);
}

@media (max-width: 767.98px) {
	.tt-hero {
		min-height: auto;
		padding-bottom: 3rem;
	}

	.tt-section {
		padding: 3.5rem 0;
	}

	.tt-hero__scroll {
		display: none;
	}
}
