:root {
	--red: #c34a3c;
	--red-deep: #8f2f25;
	--red-light: #df6a5e;
	--charcoal: #171717;
	--dark: #101010;
	--cream: #f6f1e8;
	--cream-light: #fbf8f3;
	--gold: #d7b36a;
	--gold-light: #efd7a4;
	--white: #ffffff;
	--gray-mid: #707070;
	--gray-light: #b4b4b4;
	--section-gap: 72px;
	--radius-lg: 28px;
	--radius-md: 20px;
	--shadow-soft: 0 18px 45px rgba(0, 0, 0, .25);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--white);
	color: var(--charcoal);
	overflow-x: hidden;
}

body.dark-bg {
	background: var(--dark);
	color: var(--cream);
}

h1,
h2,
h3,
h4,
h5,
.display-title {
	font-family: 'Inter', sans-serif;
	font-weight: 800;
	letter-spacing: -.03em;
}

a {
	color: inherit;
	text-decoration: none;
}

.section-title {
	font-size: clamp(2.2rem, 4.8vw, 4rem);
	line-height: 1.02;
	margin-bottom: 1rem;
	color: var(--dark);
}

.bg-dark-2 .section-title {
	color: var(--white);
}

.bg-dark-2 .section-desc {
	color: var(--gray-light);
}

.section-desc {
	color: var(--charcoal);
	line-height: 1.75;
	max-width: 700px;
}

.label-text {
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--gold);
}

section {
	padding: var(--section-gap) 0;
	position: relative;
}

.bg-dark-2 {
	background: var(--charcoal);
}

.bg-dark-2.customized-tour {
	background:
		linear-gradient(135deg, rgba(0, 0, 0, .36) 0%, rgba(0, 0, 0, .48) 38%, rgba(255, 18, 18, .4) 100%),
		url('../img/backgrounds/bg-18.jpg') center/cover no-repeat;
}

.bg-cream {
	background: linear-gradient(180deg, #fffdfa 0%, #f8f3eb 100%);
	color: var(--charcoal);
}

.bg-warm {
	background: linear-gradient(135deg, rgba(195, 74, 60, .10), rgba(215, 179, 106, .06));
}

.text-muted-soft {
	color: var(--gray-mid) !important;
}

.navbar {
	background: transparent;
	position: sticky;
	top: 0;
	z-index: 1030;
	/* border-bottom: 1px solid rgba(255, 255, 255, .05); */
	transition: background .3s ease, box-shadow .3s ease;
}

.navbar.scrolled {
	background: rgba(255, 255, 255, .95);
	box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: .9rem;
	text-decoration: none;
}

.navbar-brand img {
	width: 100px;
}

.brand-text {
	color: var(--cream);
}

.nav-item .nav-link {
	color: var(--dark);
	font-weight: 600;
	padding: .7rem .95rem;
}

.nav-item .nav-cta {
	color: var(--white);
	padding: .7rem 3rem;
}

.nav-link:hover,
.dropdown-item:hover {
	color: var(--gold) !important;
}

.dropdown-menu {
	background: rgba(255, 255, 255, .98);
	border: 1px solid rgba(255, 255, 255, .08);
	box-shadow: 0 0 50px rgba(0, 0, 0, .2);
	border-radius: 18px;
	overflow: hidden;
}

.dropdown-item {
	color: var(--charcoal);
	padding: .75rem 1rem;
}

.dropdown-item.active,
.dropdown-item:hover {
	background-color: var(--cream-light);
}

.nav-cta,
.btn-primary-nm {
	background: linear-gradient(135deg, var(--red), var(--red-deep));
	border: none;
	color: var(--white);
	border-radius: 999px;
	padding: .9rem 1.5rem !important;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	box-shadow: 0 12px 28px rgba(195, 74, 60, .28);
	transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.nav-cta:hover,
.btn-primary-nm:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(195, 74, 60, .38);
	color: #fff;
}

.btn-outline-nm {
	border: 1px solid var(--red);
	color: var(--red);
	border-radius: 999px;
	padding: .88rem 1.35rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	font-weight: 700;
	transition: .22s ease;
}

.btn-outline-nm:hover {
	border-color: var(--red-deep);
	color: var(--red-deep);
}

.btn-dark-soft {
	border: 1px solid rgba(16, 16, 16, .08);
	color: var(--charcoal);
	background: #fff;
	border-radius: 999px;
	padding: .85rem 1.3rem;
	text-decoration: none;
	font-weight: 700;
}

.hero {
	min-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .56) 0%, rgba(255, 255, 255, .88) 50%, rgba(255, 18, 18, .5) 100%),
		url('../img/backgrounds/bg-16.jpg') center/cover no-repeat;
	opacity: .9;
	z-index: -2;
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(192, 57, 43, .16), transparent 38%);
	z-index: -1;
	pointer-events: none;
}

.hero .hero-eyebrow {
	display: inline-flex;
	gap: .65rem;
	align-items: center;
	padding: .45rem .95rem;
	border-radius: 999px;
	background: rgba(215, 179, 106, .12);
	border: 1px solid rgba(215, 179, 106, .25);
	margin-bottom: 1.2rem;
	font-size: .8rem;
}

.hero .hero-eyebrow .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
}

.hero h1 {
	font-size: clamp(1.25rem, 6.75vw, 5.75rem);
	line-height: .98;
	color: var(--dark);
}

.hero h3 {
	font-weight: 600;
	color: var(--gray-mid);
}

.hero .accent {
	color: var(--red-light);
}

.hero-sub {
	color: rgba(255, 255, 255, .78);
	max-width: 640px;
	line-height: 1.75;
	font-size: 1.06rem;
	margin: 0 auto;
	padding: 24px 0;
}

.hero-stats {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.hero-stat {
	min-width: 150px;
	padding: 1rem 1.1rem;
	border-radius: 18px;
	background: rgba(143, 47, 37, .15);
	border: 1px solid rgba(255, 255, 255, .08);
}

.hero-stat strong {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	color: var(--red-deep);
}

.hero-stat span {
	font-size: .82rem;
	color: var(--dark);
}

.frost-card,
.surface-card,
.info-card,
.tour-card,
.news-card,
.profile-card,
.faq-card,
.contact-card {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
}

.surface-card {
	padding: 2rem;
}

.info-card {
	padding: 1.6rem;
	height: 100%;
	transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.info-card h4 {
	color: var(--gold-light);
}

.info-card:hover,
.tour-card:hover,
.news-card:hover,
.profile-card:hover {
	transform: translateY(-6px);
	border-color: rgba(215, 179, 106, .22);
	transition: .3s;
	-webkit-transition: .3s;
}

.info-icon {
	width: 62px;
	height: 62px;
	border-radius: 18px;
	background: var(--cream-light);
	color: var(--red-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

.intro-card {
	padding: 1.5rem;
	height: 100%;
}

.intro-card h4 {
	margin-bottom: .65rem;
	color: var(--dark);
}

.split-media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 440px;
	background-size: cover;
	background-position: center;
}

.carousel-shell img {
	height: 430px;
	object-fit: cover;
	border-radius: 24px;
}

.metric-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.metric-box {
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 20px;
	padding: 1.2rem;
	text-align: center;
}

.metric-box .number {
	font-size: 2rem;
	font-weight: 800;
	color: var(--gold-light);
}

.metric-box .label {
	font-size: .86rem;
	color: var(--gray-light);
}

.package-card .meta,
.tour-card .meta {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: .85rem;
	margin-top: 1rem;
}

.meta-item {
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 16px;
	padding: .85rem 1rem;
}

.meta-item small {
	display: block;
	color: var(--gray-light);
	margin-bottom: .15rem;
}

.meta-item strong {
	font-size: .94rem;
}

.cta-band {
	padding: 2rem;
	border-radius: 28px;
	background: linear-gradient(135deg, rgb(143, 47, 37), rgb(223, 106, 94));
}

.cta-band .section-title,
.cta-band .section-desc {
	color: var(--cream);
}

.news-card img,
.tour-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	border-radius: 20px 20px 0 0;
}

.news-card .body,
.tour-card .body,
.profile-card .body {
	padding: 1.4rem;
}

.tour-masonry {
	column-count: 3;
	column-gap: 1.25rem;
}

.tour-feature-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 30px;
	min-height: 320px;
	margin: 0 0 1.25rem;
	break-inside: avoid;
	background: #111;
	border: 1px solid rgba(255, 255, 255, .08);
	box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
	text-decoration: none;
}

.tour-feature-card.tall {
	min-height: 520px;
}

.tour-feature-card.medium {
	min-height: 420px;
}

.tour-feature-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}

.tour-feature-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .16) 0%, rgba(0, 0, 0, .28) 18%, rgba(0, 0, 0, .76) 72%, rgba(0, 0, 0, .95) 100%);
	z-index: 1;
}

.tour-feature-card:hover img {
	transform: scale(1.06);
}

.tour-feature-body {
	position: relative;
	z-index: 2;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: inherit;
}

.tour-feature-top {
	max-width: 92%;
}

.tour-feature-top h4 {
	font-size: clamp(1.4rem, 2.5vw, 2.2rem);
	line-height: 1.02;
	margin-bottom: .65rem;
	color: var(--white);
}

.tour-feature-top p {
	color: rgba(245, 239, 230, .82);
	margin-bottom: 0;
	line-height: 1.55;
	max-width: 26rem;
}

.tour-kicker {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .4rem .8rem;
	margin-bottom: .95rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .16);
	color: var(--cream);
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

.tour-feature-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.tour-feature-meta {
	display: flex;
	flex-direction: column;
	gap: .18rem;
}

.tour-feature-meta strong {
	color: var(--white);
	font-size: 1rem;
}

.tour-feature-meta span {
	color: rgba(245, 239, 230, .7);
	font-size: .85rem;
}

.tour-feature-chip {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	border-radius: 999px;
	padding: .55rem .9rem;
	background: rgba(192, 57, 43, .26);
	border: 1px solid rgba(255, 255, 255, .14);
	color: var(--white);
	font-weight: 600;
	font-size: .84rem;
}

.tour-more-link {
	color: var(--gold);
	text-decoration: none;
	font-weight: 700;
}

.tour-more-link:hover {
	color: var(--gold-light);
}

.profile-card img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	border-radius: 22px 22px 0 0;
}

.cert-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.cert-grid h4 {
	color: var(--cream);
}

.cert-box {
	background: linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
	border: 1px solid rgba(255, 255, 255, .09);
	padding: 1.5rem;
	border-radius: 22px;
	text-align: center;
}

.filter-bar {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 24px;
	padding: 1.35rem;
	position: sticky;
	top: 100px;
}

.form-control,
.form-select,
.form-check-input {
	border-radius: 14px;
	border-color: rgba(0, 0, 0, .1);
}

.form-check-input:checked {
    background-color: var(--red-deep);
    border-color: var(--red-deep);
}

.form-check-input:focus {
    border-color: var(--red-light);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(223, 106, 94, .25);
}

.dark-input,
.dark-select,
.dark-textarea {
	background: rgba(0, 0, 0, .06);
	color: var(--charcoal);
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 16px;
	padding: .95rem 1rem;
}

.dark-input::placeholder,
.dark-textarea::placeholder {
	color: var(--gray-mid);
}

.route-overview {
	position: sticky;
	top: 100px;
	border-radius: 26px;
	padding: 1.5rem;
	background: rgba(0, 0, 0, .05);
	border: 1px solid rgba(0, 0, 0, .08);
}

.overview-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.overview-item {
	background: rgba(0, 0, 0, .04);
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 20px;
	padding: 1rem;
    color: var(--cream);
}

.timeline {
	position: relative;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 18px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(var(--red), transparent);
}

.timeline-item {
	position: relative;
	padding-left: 3.2rem;
	margin-bottom: 1.7rem;
}

.timeline-item::before {
	content: '';
	position: absolute;
	left: 9px;
	top: 6px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--red);
	box-shadow: 0 0 0 6px rgba(195, 74, 60, .18);
}

/* FAQ */
.faq .accordion-item {
	background: rgba(223, 106, 94, .05);
	color: var(--charcoal);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 18px !important;
	overflow: hidden;
}

.accordion-button {
	background: transparent;
	color: var(--charcoal);
	font-weight: 700;
}

.accordion-button:not(.collapsed) {
	background: rgba(195, 74, 60, 1);
	color: var(--cream);
	box-shadow: none;
}

.accordion-button:focus {
	box-shadow: none;
}

.legal-card {
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 24px;
	padding: 2rem;
}

.sidebar-widget {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 22px;
	padding: 1.35rem;
}

footer {
	background: #090909;
	border-top: 1px solid rgba(255, 255, 255, .06);
	padding: 4rem 0 2rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: .65rem;
}

.footer-links a {
	color: var(--gray-light);
	text-decoration: none;
}

.footer-links a:hover {
	color: var(--cream);
}

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

.footer-social a {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .12);
	text-decoration: none;
}

.sub-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 1rem 0;
	margin-top: 2.5rem;
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(6px);
}

.sub-footer-link {
	font-size: 0.85rem;
	color: rgba(245, 239, 230, 0.6);
	text-decoration: none;
	transition: all 0.2s ease;
}

.sub-footer-link:hover {
	color: var(--gold-light);
}

.page-hero {
	padding: 60px 0 60px;
	background: linear-gradient(135deg, rgba(16, 16, 16, .9), rgba(143, 47, 37, .46)), url('../img/backgrounds/bg-11.jpeg') center/cover no-repeat;
	color: var(--cream);
}

.page-hero.light {
	background: linear-gradient(135deg, rgba(255, 253, 250, .92), rgba(247, 239, 224, .92)), url('https://images.unsplash.com/photo-1528360983277-13d401cdc186?w=1600&q=80') center/cover no-repeat;
	color: var(--charcoal);
}

.page-hero.light .section-desc,
.page-hero.light .section-title {
	color: var(--charcoal);
}

.page-hero.light .label-text {
	color: var(--gold);
}

.page-hero .section-title,
.page-hero .section-desc {
	color: var(--cream);
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
}

.tag-chip,
.keyword-chip,
.badge-soft {
	background: rgba(143, 47, 37, .1);
	border: 1px solid rgba(143, 47, 37, .1);
	padding: .45rem .8rem;
	border-radius: 999px;
	color: var(--red-deep);
	font-size: .75rem;
	font-weight: 600;
}

.dark-bg .tag-chip,
.dark-bg .keyword-chip,
.dark-bg .badge-soft {
	background: rgba(223, 106, 94, .4);
	border: 1px solid rgba(223, 106, 94, .6);
	padding: .45rem .8rem;
	border-radius: 999px;
	color: var(--cream);
	font-size: .75rem;
	font-weight: 600;
}

.news-mini {
	display: flex;
	gap: .85rem;
	align-items: center;
	margin-bottom: 1rem;
}

.news-mini img {
	width: 82px;
	height: 82px;
	object-fit: cover;
	border-radius: 14px;
}

@media (max-width: 991px) {

	.metric-row,
	.cert-grid,
	.overview-grid {
		grid-template-columns: 1fr;
	}

	.filter-bar,
	.route-overview {
		position: static;
	}

	:root {
		--section-gap: 52px;
	}
}


/* --- Front Gate / Product Flow Additions --- */
.quick-path-card,
.journey-step,
.flow-panel,
.trust-card,
.dashboard-shell,
.stat-tile,
.admin-card,
.table-shell,
.activity-card,
.side-nav {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 24px;
	box-shadow: var(--shadow-soft);
}

.quick-path-card {
	padding: 1.5rem;
	height: 100%;
	transition: .25s ease;
	position: relative;
	overflow: hidden;
}

.quick-path-card:hover {
	transform: translateY(-6px);
	border-color: rgba(215, 179, 106, .22);
}

.quick-path-card .icon {
	width: 58px;
	height: 58px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(195, 74, 60, .15);
	color: var(--gold-light);
	font-size: 1.35rem;
	margin-bottom: 1rem;
}

.quick-path-card .micro {
	color: var(--gray-light);
	font-size: .92rem;
	line-height: 1.7;
}

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

.journey-step {
	padding: 1.4rem;
	position: relative;
}

.journey-step .step-badge {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(195, 74, 60, .14);
	color: var(--gold-light);
	font-weight: 800;
	margin-bottom: .9rem;
}

.flow-panel {
	padding: 2rem;
}

.flow-pill {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	border-radius: 999px;
	background: rgba(215, 179, 106, .12);
	border: 1px solid rgba(215, 179, 106, .16);
	color: var(--gold-light);
	padding: .45rem .85rem;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.trust-card {
	padding: 1.2rem;
	height: 100%;
}

.auth-page {
	background: radial-gradient(circle at top right, rgba(215, 179, 106, .08), transparent 30%), linear-gradient(135deg, #121212, #241311 55%, #151515);
	display: flex;
	align-items: center;
}

.auth-shell {
	overflow: hidden;
}

.auth-visual {
	min-height: 620px;
	background: linear-gradient(135deg, rgba(195, 74, 60, .74), rgba(0, 0, 0, .75)), url('https://images.unsplash.com/photo-1504214208698-ea1916a2195a?w=1400&q=80') center/cover no-repeat;
	padding: 2.2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.auth-form-wrap {
	padding: 2.25rem;
}

.auth-form-wrap img {
	width: 180px;
}

.auth-form-wrap .form-label {
	font-size: .88rem;
	color: var(--gray-light);
}

.auth-form-wrap .form-control,
.auth-form-wrap .form-select {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .12);
	color: var(--cream);
	border-radius: 16px;
	padding: .95rem 1rem;
}

.auth-form-wrap .form-control::placeholder {
	color: rgba(255, 255, 255, .38);
}

.auth-mini-card {
	padding: 1rem 1.1rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .1);
}

.dashboard-page {
	background: #101010;
	color: var(--cream);
	min-height: 100vh;
}

.side-nav {
	position: sticky;
	top: 86px;
	padding: 1.15rem;
}

.side-nav a {
	display: flex;
	align-items: center;
	gap: .85rem;
	color: var(--gray-light);
	text-decoration: none;
	padding: .8rem .9rem;
	border-radius: 16px;
	font-weight: 600;
}

.side-nav a:hover,
.side-nav a.active {
	background: rgba(195, 74, 60, .14);
	color: var(--cream);
}

.dashboard-shell {
	padding: 1.3rem;
}

.stat-tile {
	padding: 1.2rem;
	height: 100%;
}

.stat-tile .kicker {
	color: var(--gray-light);
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.stat-tile h3 {
	font-size: 2rem;
	margin: .4rem 0 0;
}

.progress-soft {
	height: 10px;
	background: rgba(255, 255, 255, .08);
	border-radius: 999px;
	overflow: hidden;
}

.progress-soft>span {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--red), var(--gold));
}

.admin-card {
	padding: 1.3rem;
	height: 100%;
}

.kpi-chip {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	border-radius: 999px;
	padding: .36rem .72rem;
	font-size: .76rem;
	font-weight: 700;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .08);
	color: var(--gray-light);
}

.table-shell {
	overflow: hidden;
}

.table-shell table {
	margin-bottom: 0;
}

.table-shell th,
.table-shell td {
	background: transparent !important;
	color: var(--cream);
	border-color: rgba(255, 255, 255, .06);
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	padding: .32rem .68rem;
	border-radius: 999px;
	font-size: .75rem;
	font-weight: 700;
}

.status-pill.success {
	background: rgba(35, 201, 115, .12);
	color: #7ee2a7;
}

.status-pill.pending {
	background: rgba(244, 180, 0, .12);
	color: #ffd676;
}

.status-pill.draft {
	background: rgba(255, 255, 255, .08);
	color: var(--gray-light);
}

.activity-card {
	padding: 1rem 1.1rem;
	margin-bottom: .9rem;
}

.light-panel {
	background: linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03));
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 22px;
	padding: 1.35rem;
}

@media (max-width: 991px) {
	.journey-grid {
		grid-template-columns: 1fr;
	}

	.auth-visual {
		min-height: 320px;
	}
}


/* --- navigation active state --- */
.navbar .nav-link {
	position: relative;
}

.navbar .nav-link.active,
.navbar .show>.nav-link,
.navbar .dropdown-item.active {
	color: var(--red-deep) !important;
}

.navbar .nav-link.active::after,
.navbar .show>.nav-link::after {
	content: '';
	position: absolute;
	left: .95rem;
	right: .95rem;
	bottom: .25rem;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--red), var(--gold));
}

.navbar .nav-link.dropdown-toggle.active {
	border-bottom: 1px solid linear-gradient(90deg, var(--red), var(--gold));
}

.faq .nav-link.active::after,
.faq .dropdown-toggle::after,
.tnc .nav-link.active::after,
.tnc .dropdown-toggle::after,
.special-request .nav-link.active::after,
.special-request .dropdown-toggle::after,
.contact-us .nav-link.active::after,
.contact-us .dropdown-toggle::after {
	content: '';
	position: absolute;
	left: .95rem;
	right: .95rem;
	bottom: .25rem;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--red), var(--gold));
	display: inline-block;
	margin-left: 0;
	vertical-align: 0;
	border: none;
}


/* --- calendar --- */
.calendar-shell {
	padding: 1.2rem;
}

.calendar-summary {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.calendar-stat {
	padding: 1rem 1.1rem;
	border-radius: 20px;
	background: rgba(0, 0, 0, .04);
	border: 1px solid rgba(0, 0, 0, .08);
}

.calendar-stat strong {
	display: block;
	font-size: 2rem;
	color: var(--charcoal);
}

.calendar-legend {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
}

.legend-pill {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .45rem .75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	color: var(--gray-light);
	font-size: .82rem;
}

.legend-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.legend-dot.open {
	background: #23c973;
}

.legend-dot.incoming {
	background: #f4b400;
}

.legend-dot.closed {
	background: #7f8794;
}

/* --- booking configurator --- */
.booking-card,
.config-card {
	padding: 1.3rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	box-shadow: var(--shadow-soft);
}

.booking-hero {
	background: linear-gradient(135deg, rgba(195, 74, 60, .16), rgba(16, 16, 16, .03));
}

.booking-stepper {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
}

.booking-step {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	padding: .6rem .9rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	color: var(--gray-light);
	font-size: .84rem;
	font-weight: 700;
}

.booking-step span {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(195, 74, 60, .14);
	color: var(--red);
}

.option-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.option-card {
	position: relative;
	padding: 1rem 1rem 1rem 3rem;
	border-radius: 20px;
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .08);
	cursor: pointer;
}

.option-card input {
	position: absolute;
	top: 1.15rem;
	left: 1rem;
}

.option-card h6 {
	margin-bottom: .25rem;
	color: var(--white);
}

.option-card p {
	margin: 0;
	color: var(--gray-light);
	font-size: .88rem;
}

.summary-list {
	display: grid;
	gap: .85rem;
}

.summary-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	color: var(--gray-light);
}

.summary-line strong {
	color: var(--white);
}

.summary-line.total {
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, .08);
	font-size: 1.08rem;
}

.check-soft {
	display: flex;
	gap: .75rem;
	align-items: flex-start;
	padding: .9rem 1rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .06);
}

.check-soft input {
	margin-top: .2rem;
}

.mini-note {
	color: var(--gray-light);
	font-size: .86rem;
	line-height: 1.65;
}

.tour-action-row {
	display: flex;
	gap: .75rem;
	flex-wrap: wrap;
}

.secure-pill {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	border-radius: 999px;
	padding: .5rem .8rem;
	background: rgba(35, 201, 115, .1);
	color: #5ad58d;
	border: 1px solid rgba(35, 201, 115, .18);
	font-size: .8rem;
	font-weight: 700;
}

@media (max-width: 767px) {

	.calendar-summary,
	.option-grid {
		grid-template-columns: 1fr;
	}
}

.about-carousel img {
	height: 460px;
	object-fit: cover;
	border-radius: 24px;
}

.package-strip {
	padding: 1.25rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
}

.route-list {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem;
}

.route-pill {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .08);
	color: var(--gray-light);
	border-radius: 999px;
	padding: .42rem .78rem;
	font-size: .8rem;
}

.news-grid-card img {
	height: 230px;
	object-fit: cover;
	border-radius: 22px 22px 0 0;
}

.soft-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
	margin: 2rem 0 0;
}

.testimonial-shell {
	position: relative;
	overflow: hidden;
	border-radius: 32px;
	background: linear-gradient(135deg, rgba(21, 21, 21, .5) 0%, rgba(29, 22, 19, .9) 72%, #2b1714 100%),
		url('../img/backgrounds/bg-15.jpeg') left/cover no-repeat;
	border: 1px solid rgba(255, 255, 255, .08);
	padding: clamp(1.5rem, 3vw, 2.5rem);
	box-shadow: 0 26px 60px rgba(0, 0, 0, .22);
}

.testimonial-shell::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top right, rgba(215, 179, 106, .18), transparent 28%),
		radial-gradient(circle at bottom left, rgba(195, 74, 60, .22), transparent 32%);
	pointer-events: none;
}

.testimonial-intro-card {
	position: relative;
	z-index: 1;
	height: 100%;
	border-radius: 26px;
	padding: 1.6rem;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
}

.testimonial-intro-card .section-title,
.testimonial-intro-card .section-desc {
	color: var(--white);
}

.testimonial-stat-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .85rem;
	margin-top: 1.5rem;
}

.testimonial-stat {
	border-radius: 20px;
	padding: 1rem;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
}

.testimonial-stat strong {
	display: block;
	color: var(--gold);
	font-size: 1.25rem;
	line-height: 1;
	margin-bottom: .3rem;
}

.testimonial-stat span {
	color: rgba(246, 241, 232, .72);
	font-size: .82rem;
}

.testimonial-card {
	position: relative;
	z-index: 1;
	height: 100%;
	border-radius: 26px;
	padding: 1.45rem;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	backdrop-filter: blur(10px);
	transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.testimonial-card:hover {
	transform: translateY(-4px);
	border-color: rgba(215, 179, 106, .26);
	box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.testimonial-stars {
	display: flex;
	gap: .3rem;
	color: var(--gold-light);
	margin-bottom: 1rem;
	font-size: .9rem;
}

.testimonial-copy {
	color: rgba(246, 241, 232, .88);
	line-height: 1.72;
	margin-bottom: 1.3rem;
	min-height: 8.2rem;
}

.testimonial-user {
	display: flex;
	align-items: center;
	gap: .85rem;
}

.testimonial-user img {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, .14);
}

.testimonial-user strong {
	display: block;
	color: var(--white);
	font-size: .98rem;
}

.testimonial-user span {
	color: rgba(246, 241, 232, .66);
	font-size: .84rem;
}

.testimonial-badge {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .45rem .85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .10);
	color: rgba(246, 241, 232, .84);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

/* .testimonial-shell .section-title{
	font-size: 2.4rem;
} */

.path-band {
	transform: translateY(-44px);
	margin-bottom: -20px;
	position: relative;
	z-index: 5;
}


@media (max-width: 991px) {
	.path-band {
		transform: none;
		margin-bottom: 0;
	}

	.hero-wrap {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.tour-masonry {
		column-count: 2;
	}
}

@media (max-width: 767px) {
	.tour-masonry {
		column-count: 1;
	}

	.tour-feature-card,
	.tour-feature-card.tall,
	.tour-feature-card.medium {
		min-height: 360px;
	}

	.tour-feature-top {
		max-width: 100%;
	}
}

.footer-contact-card {
	padding: 1.4rem 1.5rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	height: 100%;
}

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

.footer-mini-list li,
.footer-mini-list a {
	color: var(--gray-light);
	text-decoration: none;
	transition: color .2s ease;
}

.footer-mini-list a:hover {
	color: var(--cream);
}

.footer-contact-line {
	display: flex;
	gap: .8rem;
	align-items: flex-start;
	color: var(--gray-light);
	line-height: 1.7;
	margin-bottom: .9rem;
}

.footer-contact-line i {
	color: var(--gold-light);
	margin-top: .2rem;
	width: 1rem;
}

.float-whatsapp {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, #30e776 0%, #1fb85a 100%);
	color: #fff;
	font-size: 1.65rem;
	text-decoration: none;
	box-shadow: 0 18px 35px rgba(37, 211, 102, .35);
	z-index: 1055;
	transition: transform .2s ease, box-shadow .2s ease;
}

.float-whatsapp:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 22px 40px rgba(37, 211, 102, .45);
	color: #fff;
}

.float-whatsapp-label {
	position: fixed;
	right: 95px;
	bottom: 33px;
	background: rgba(17, 17, 17, .92);
	color: var(--cream);
	padding: .7rem .95rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .08);
	font-size: .84rem;
	z-index: 1054;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}
.back-to-top {
    position: fixed;
    bottom: 22px; 
    right: 92px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-light), var(--red-deep));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

.back-to-top:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 22px 40px rgba(0,0,0,0.5);
	color: #fff;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
	.float-whatsapp-label {
		display: none;
	}

	.navbar-nav .nav-link.active::after,
	.navbar-nav .show>.nav-link::after {
		left: .5rem;
		right: auto;
		width: 32px;
	}
}

.news-shell {
	position: relative;
}

.news-toolbar {
	padding: 1.25rem;
	border-radius: 24px;
	background: rgba(0, 0, 0, .04);
	border: 1px solid rgba(0, 0, 0, .08);
	box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
	margin-bottom: 1.5rem;
}

.news-search-group {
	position: relative;
}

.news-search-group i {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gray-light);
}

.news-search-group .form-control {
	height: 54px;
	padding-left: 2.8rem;
	border-radius: 999px;
	/* background: ; */
	border: 1px solid rgba(0, 0, 0, .1);
	color: var(--charcoal);
	box-shadow: none;
}

.news-search-group .form-control::placeholder {
	color: var(--gray-light);
}

.news-search-group .form-control:focus {
	border-color: var(--gold);
	/* background: rgba(0, 0, 0, .08); */
}

.news-tabs.nav-pills {
	gap: .75rem;
	flex-wrap: wrap;
}

.news-tabs .nav-link {
	border-radius: 999px;
	padding: .7rem 1rem;
	background: rgba(0, 0, 0, .04);
	border: 1px solid rgba(0, 0, 0, .08);
	color: var(--gray-light);
	font-weight: 400;
	letter-spacing: .01em;
}

.news-tabs .nav-link.active,
.news-tabs .nav-link:hover {
	background: linear-gradient(135deg, rgba(192, 57, 43, 1), rgba(212, 168, 67, 1));
	border-color: rgba(212, 168, 67, .34);
	color: var(--white) !important;
}

.news-highlight-grid {
	display: grid;
}

.news-feature-main,
.news-feature-side,
.sidebar-widget {
	border-radius: 28px;
	overflow: hidden;
	background: rgba(0, 0, 0, .04);
	border: 1px solid rgba(0, 0, 0, .08);
	box-shadow: 0 18px 52px rgba(0, 0, 0, .2);
}

.news-feature-main {
	position: relative;
	min-height: 460px;
	display: block;
	text-decoration: none;
	color: inherit;
}

.news-feature-main img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .6s ease;
}

.news-feature-main::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, .35) 34%, rgba(255, 255, 255, .86) 100%);
	z-index: 1;
}

.news-feature-main:hover img {
	transform: scale(1.05);
}

.news-feature-content {
	position: relative;
	z-index: 2;
	min-height: 460px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.news-kicker {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	border-radius: 999px;
	padding: .45rem .82rem;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .16);
	color: var(--white);
	font-size: .77rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 1rem;
	width: fit-content;
	backdrop-filter: blur(8px);
}

.news-feature-content h3,
.news-feature-side h4,
.news-article-card h5,
.sidebar-news-item h6 {
	color: var(--dark);
}

.news-feature-content h3 {
	font-size: clamp(1.9rem, 3vw, 3rem);
	line-height: 1.05;
	max-width: 44rem;
	margin-bottom: .9rem;
}

.news-feature-content p {
	color: var(--gray-mid);
	font-size: 1rem;
	max-width: 40rem;
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.news-meta-line {
	display: flex;
	flex-wrap: wrap;
	gap: .85rem 1rem;
	color: var(--gray-light);
	font-size: .86rem;
}

.news-meta-line span {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
}

.news-feature-stack {
	display: grid;
	gap: 1.25rem;
}

.news-feature-side {
	display: grid;
	grid-template-columns: 160px 1fr;
	min-height: 218px;
	text-decoration: none;
	color: inherit;
}

.news-feature-side img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-feature-side .side-body {
	padding: 1.35rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.news-feature-side h4 {
	font-size: 1.22rem;
	line-height: 1.2;
	margin-bottom: .6rem;
}

.news-feature-side p,
.news-article-card p,
.sidebar-widget .text-muted-soft,
.sidebar-news-item p {
	color: var(--gray-mid);
	line-height: 1.6;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.news-article-card {
	border-radius: 24px;
	overflow: hidden;
	background: rgba(0, 0, 0, .04);
	border: 1px solid rgba(0, 0, 0, .08);
	height: 100%;
	box-shadow: 0 14px 38px rgba(0, 0, 0, .16);
}

.news-article-card img {
	width: 100%;
	height: 230px;
	object-fit: cover;
}

.news-article-card .body {
	padding: 1.35rem;
}

.news-article-card h5 {
	font-size: 1.16rem;
	line-height: 1.32;
	margin: .8rem 0 .55rem;
}

.sidebar-layout {
	display: grid;
	gap: 1.25rem;
	position: sticky;
	top: 110px;
}

.sidebar-widget {
	padding: 1.25rem;
}

.sidebar-widget .widget-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.sidebar-news-item {
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: .9rem;
	padding: .85rem 0;
	border-top: 1px solid rgba(0, 0, 0, .08);
	text-decoration: none;
}

.sidebar-news-item:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.sidebar-news-item img {
	width: 78px;
	height: 78px;
	border-radius: 18px;
	object-fit: cover;
}

.sidebar-news-item h6 {
	font-size: .98rem;
	line-height: 1.3;
	margin-bottom: .35rem;
}

.keyword-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: .65rem;
}

.recent-activity-list {
	display: grid;
	gap: .9rem;
}

.recent-activity-item {
	padding: .95rem 1rem;
	border-radius: 18px;
	background: rgba(0, 0, 0, .04);
	border: 1px solid rgba(0, 0, 0, .06);
}

.recent-activity-item strong {
	display: block;
	color: var(--charcoal);
	margin-bottom: .35rem;
}

.recent-activity-item span {
	color: var(--gray-mid);
	font-size: .84rem;
	display: block;
	margin-top: .45rem;
}

@media (max-width: 1199px) {
	.news-highlight-grid {
		grid-template-columns: 1fr;
	}

	.sidebar-layout {
		position: static;
	}
}

@media (max-width: 767px) {
	.news-grid {
		grid-template-columns: 1fr;
	}

	.news-feature-side {
		grid-template-columns: 1fr;
	}

	.news-feature-side img {
		height: 200px;
	}

	.news-feature-content,
	.news-feature-main {
		min-height: 380px;
	}
}


/* tours.html, tour-detail.html */
.catalog-intro {
	padding: 1.35rem 1.4rem;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(195, 74, 60, .12), rgba(255, 255, 255, .04));
	border: 1px solid rgba(255, 255, 255, .08)
}

.catalog-toolbar,
.catalog-filter,
.tour-list-card,
.tour-list-card .media,
.tour-list-card .content,
.tour-list-card .head,
.tour-list-card .submeta,
.tour-list-card .facts,
.tour-list-card .fact,
.tour-list-card .score-row,
.tour-list-card .actions {
	display: flex
}
.catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    border-radius: 24px;
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .08);
    backdrop-filter: blur(8px)
}

.catalog-toolbar-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .9rem;
    flex: 1 1 720px
}

.catalog-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center
}

.catalog-filter-input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.catalog-chip {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .8rem 1rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .09);
    color: var(--gray-mid);
    font-weight: 500;
    font-size: .92rem;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease;
    user-select: none
}

.catalog-chip small {
    font-size: .75rem;
    color: rgba(245, 239, 230, .55);
    transition: inherit
}

.catalog-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(212, 168, 67, .45);
    color: var(--white)
}

.catalog-filter-input:checked+.catalog-chip,
.catalog-chip.active {
    background: linear-gradient(135deg, rgba(192, 57, 43, 1), rgba(212, 168, 67, 1));
    border-color: rgba(212, 168, 67, .5);
    color: var(--white);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18), inset 0 0 0 1px rgba(0, 0, 0, .04)
}

.catalog-search {
    position: relative;
    min-width: 260px
}

.catalog-search .form-control {
    padding: .95rem 1rem .95rem 2.85rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .1);
    color: var(--charcoal)
}

.catalog-search .form-control::placeholder {
    color: var(--gray-mid)
}

.catalog-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red)
}

.catalog-side {
    padding: 1.35rem;
    border-radius: 24px;
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .08);
    position: sticky;
    top: 100px
}

.tour-price {
    display: inline-flex;
    align-items: flex-start;
    gap: .35rem;
    padding: .7rem 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(192, 57, 43, 1), rgba(212, 168, 67, 1));
    border: 1px solid rgba(212, 168, 67, .32);
    font-weight: 900;
    font-size: 1.35rem;
    line-height: 1;
    color: var(--white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18)
}

.tour-price::before {
    content: "Start from";
    display: block;
    font-size: .7rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, .68);
    margin-top: .18rem
}

.tour-list-card .head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem
}

.catalog-chip.active {
	background: rgba(195, 74, 60, .10);
	border-color: rgba(195, 74, 60, .25);
	color: var(--red-deep)
}

.catalog-side {
	position: sticky;
	top: 94px;
	background: #fff;
	border: 1px solid rgba(16, 16, 16, .07);
	border-radius: 24px;
	padding: 1.2rem;
	box-shadow: 0 10px 28px rgba(16, 16, 16, .06)
}

.catalog-side .form-label {
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: .45rem
}

.catalog-side .form-control,
.catalog-side .form-select {
	border-radius: 14px;
	padding: .78rem .95rem
}

.tour-list-card {
	gap: 0;
	flex-direction: row;
	overflow: hidden;
	border-radius: 28px;
	background: #fff;
	border: 1px solid rgba(16, 16, 16, .07);
	box-shadow: 0 16px 40px rgba(16, 16, 16, .07);
	height: 100%
}

.tour-list-card .media {
	width: 25%;
	min-height: 100%;
	position: relative;
	overflow: hidden
}

.tour-list-card .media img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	display: block;
	transition: transform .5s ease
}

.tour-list-card:hover .media img {
	transform: scale(1.04)
}

.tour-list-card .media .status-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2
}

.tour-list-card .content {
	width: 75%;
	padding: 1.35rem;
	flex-direction: column;
	justify-content: space-between;
	color: var(--charcoal)
}

.tour-list-card .head {
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: .8rem
}

.tour-code {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .42rem .72rem;
	border-radius: 999px;
	background: rgba(16, 16, 16, .04);
	border: 1px solid rgba(16, 16, 16, .07);
	font-size: .76rem;
	color: var(--gray-mid);
	font-weight: 700
}

.tour-list-card h3 {
	font-size: 1.65rem;
	line-height: 1.06;
	margin: .6rem 0 .45rem;
	color: var(--dark)
}

.tour-list-card p {
	margin: 0;
	color: #4d4d4d;
	line-height: 1.65
}

.tour-list-card .submeta {
	gap: .6rem;
	flex-wrap: wrap;
	margin-top: 1rem
}

.submeta-pill {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .5rem .75rem;
	border-radius: 999px;
	background: rgba(195, 74, 60, .08);
	color: var(--red-deep);
	font-weight: 700;
	font-size: .8rem
}

.tour-list-card .facts {
	gap: .75rem;
	flex-wrap: wrap;
	margin: 1rem 0
}

.tour-list-card .fact {
	flex-direction: column;
	gap: .18rem;
	min-width: 120px;
	padding: .85rem .95rem;
	border-radius: 16px;
	background: #faf8f5;
	border: 1px solid rgba(16, 16, 16, .05)
}

.tour-list-card .fact small {
	font-size: .75rem;
	color: var(--gray-mid);
	text-transform: uppercase;
	letter-spacing: .06em
}

.tour-list-card .fact strong {
	font-size: .96rem;
	color: var(--charcoal)
}

.score-row {
	gap: .55rem;
	flex-wrap: wrap;
	margin-bottom: 1rem
}

.score-badge {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .52rem .78rem;
	border-radius: 999px;
	background: var(--gold-light);
	border: 1px solid rgba(16, 16, 16, .08);
	font-size: .8rem;
	color: var(--charcoal);
	font-weight: 700
}

.score-badge span {
	color: var(--gray-mid);
	font-weight: 600
}

.tour-list-card .actions {
	gap: .8rem;
	flex-wrap: wrap;
	align-items: center
}

.tour-list-card .btn-primary-nm,
.tour-list-card .btn-outline-nm {
	justify-content: center
}

.secondary-link {
	font-weight: 700;
	color: var(--red-deep);
	text-decoration: none;
    font-size:.85rem;
}

.secondary-link:hover {
	color: var(--red)
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .48rem .8rem;
	border-radius: 999px;
	font-size: .78rem;
	font-weight: 800;
	backdrop-filter: blur(8px)
}

.status-badge.open {
	background: rgba(35, 201, 115, .18);
	color: #eafff2;
	border: 1px solid rgba(35, 201, 115, .34)
}

.status-badge.wait {
	background: rgba(244, 180, 0, .18);
	color: #fff9e8;
	border: 1px solid rgba(244, 180, 0, .32)
}

.quick-config {
	background: #141414;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 26px;
	color: var(--cream)
}

.quick-config .form-control,
.quick-config .form-select {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .12);
	color: var(--cream);
	border-radius: 14px
}

.quick-config .form-label {
	color: var(--cream);
	font-weight: 700
}

.modal-mini-tour {
	padding: 1rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08)
}

@media (max-width:1199px) {
	.tour-list-card {
		flex-direction: column
	}

	.tour-list-card .media,
	.tour-list-card .content {
		width: 100%
	}

	.tour-list-card .media img {
		min-height: 260px
	}
}
@media (max-width: 991px) {
    .catalog-toolbar {
        padding: 1rem 1rem 1.1rem
    }

    .catalog-toolbar-left {
        flex-direction: column;
        align-items: stretch
    }

    .catalog-search {
        flex: 1 1 100%;
        min-width: 100%
    }

    .tour-list-card .head {
        flex-direction: column;
        align-items: flex-start
    }

    .catalog-side {
        position: static;
        top: auto
    }
}
.detail-hero {
    position: relative;
    padding: 7.5rem 0 4rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, .88), rgba(146, 43, 33, .5)), url('https://images.unsplash.com/photo-1553708881-112abc53fe54?w=1600&q=80') center/cover no-repeat;
    overflow: hidden
}

.detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .42));
    pointer-events: none
}

.detail-hero .container {
    position: relative;
    z-index: 2
}

.detail-hero-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: end;
    justify-content: space-between
}

.detail-hero .section-title,
.detail-hero .section-desc{
    color: var(--cream);
}

.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem
}

.hero-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .62rem .9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
    color: var(--cream);
    font-size: .86rem
}

.luxury-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 28px;
    padding: 1.6rem;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .18)
}

.luxury-card.inc{
    background-color: rgba(239, 215, 164, .15);
    border-color: rgba(239, 215, 164, .35);
}

.luxury-card.ninc{
    background-color: rgba(223, 106, 94, .15);
    border-color:rgba(223, 106, 94, .35);
}

.route-overview-card img {
    border-radius: 24px;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    width: 100%
}

.sell-panel {
    position: sticky;
    top: 96px;
    background: linear-gradient(180deg, rgba(22, 22, 22, .98), rgba(45, 17, 17, .98));
    border: 1px solid rgba(212, 168, 67, .18);
    border-radius: 28px;
    padding: 1.4rem;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .28)
}

.sell-price {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(192, 57, 43, .18), rgba(212, 168, 67, .12));
    border: 1px solid rgba(255, 255, 255, .08);
    margin: 1rem 0
}

.sell-price strong {
    display: block;
    font-size: 2.1rem;
    line-height: 1;
    color: var(--white)
}

.sell-price span {
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, .56)
}

.overview-lux-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 1.25rem
}

.overview-stack {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem
}

.overview-feature {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 22px;
    padding: 1.1rem 1.15rem;
    min-height: 124px
}

.overview-feature small {
    display: block;
    color: rgba(245, 239, 230, .55);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .72rem;
    margin-bottom: .55rem
}

.overview-feature strong {
    display: block;
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.4
}

.pricing-luxury {
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .03));
    border: 1px solid rgba(212, 168, 67, .14);
    border-radius: 28px;
    padding: 1.4rem
}

.pricing-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.pricing-head .tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .75rem;
    border-radius: 999px;
    background: rgba(212, 168, 67, .14);
    color: var(--gold-light);
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em
}

.pricing-table {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06)
}

.price-row.price-main {
    background: linear-gradient(135deg, rgba(192, 57, 43, .22), rgba(212, 168, 67, .1));
    border-color: rgba(212, 168, 67, .2)
}

.price-row .label {
    color: rgba(245, 239, 230, .72);
    font-size: .92rem
}

.price-row .value {
    color: var(--white);
    font-weight: 800;
    font-size: 1.08rem
}

.price-notes {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .88rem;
    color: rgba(245, 239, 230, .7);
    line-height: 1.65
}

.itinerary-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 24px;
    padding: 1.25rem;
    height: 100%
}

.detail-bookbar {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 1040;
    width: min(940px, calc(100% - 24px));
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: .9rem 1rem;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .35)
}

.detail-bookbar .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap
}

.detail-bookbar .mini {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    color: var(--charcoal)
}

.detail-bookbar strong {
    font-size: 1.2rem;
    color: var(--charcoal)
}

@media(max-width:991px) {
    .overview-lux-grid {
        grid-template-columns: 1fr
    }

    .overview-stack {
        grid-template-columns: 1fr 1fr
    }

    .sell-panel {
        position: relative;
        top: auto
    }

    .detail-bookbar {
        bottom: 12px
    }
}

@media(max-width:767px) {
    .overview-stack {
        grid-template-columns: 1fr
    }

    .detail-hero {
        padding-top: 6.8rem
    }

    .detail-bookbar .inner {
        align-items: stretch
    }

    .detail-bookbar .mini {
        flex-direction: column;
        align-items: flex-start;
        gap: .35rem
    }
}



/* booking.html */
.booking-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 1.25rem;
    align-items: start
}

.booking-panel,
.summary-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
    color: var(--charcoal)
}

.booking-panel {
    padding: 1.35rem
}

.summary-card {
    padding: 1.25rem;
    position: sticky;
    top: 94px
}

.booking-panel .form-label {
    color: var(--gray-light);
    font-weight: 400;
    margin-bottom: .5rem;
    font-size: 14px;
    text-transform: uppercase;
}

.booking-panel .form-control,
.booking-panel .form-select {
    border: 1px solid rgba(0, 0, 0, .1);
    color: var(--charcoal);
    border-radius: 16px;
    padding: .88rem .95rem
}

.booking-topband {
    padding: 1.15rem 1.2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(195, 74, 60, .10), rgba(0, 0, 0, .02));
    border: 1px solid rgba(0, 0, 0, .08);
    margin-bottom: 1rem
}

.booking-topband h2 {
    font-size: 1.4rem;
    margin: 0 0 .35rem;
    color: var(--charcoal)
}

.booking-topband p {
    margin: 0;
    color: var(--gray-mid);
    line-height: 1.65
}

.stepper-wrap {
    margin-bottom: 1rem
}

.stepper-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
    position: relative;
    border-bottom: 1px solid var(--cream);
    padding-bottom: 18px;
}

.step-item {
    position: relative;
    display: flex;
    gap: .8rem;
    align-items: start;
    padding: .9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, .65);
    border: 1px solid rgba(0, 0, 0, .07);
    cursor: pointer;
    transition: .2s ease
}

.step-item:hover {
    transform: translateY(-1px);
    border-color: rgba(195, 74, 60, .28)
}

.step-item.active {
    background: linear-gradient(135deg, rgba(195, 74, 60, .12), rgba(215, 179, 106, .12));
    border-color: rgba(195, 74, 60, .24);
    box-shadow: 0 10px 24px rgba(195, 74, 60, .08)
}

.step-item.done {
    background: rgba(35, 201, 115, .08);
    border-color: rgba(35, 201, 115, .2)
}

.step-bullet {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(195, 74, 60, .15);
    color: var(--red-light);
    font-weight: 800;
    flex-shrink: 0
}

.step-item.active .step-bullet {
    background: var(--red);
    color: var(--white)
}

.step-item.done .step-bullet {
    background: #23c973;
    color: #fff
}

.step-copy{
    text-align: left;
}
.step-copy strong {
    display: block;
    font-size: .96rem;
    color: var(--charcoal);
    line-height: 1.2
}

.step-copy span {
    display: block;
    font-size: .8rem;
    color: var(--gray-mid);
    margin-top: .15rem
}

.step-stage {
    display: none
}

.step-stage.active {
    display: block
}

.stage-card {
    border-radius: 24px;
}

.stage-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem
}

.stage-header h3 {
    margin: 0;
    color: var(--charcoal);
    font-size: 1.22rem
}

.stage-header p {
    margin: .3rem 0 0;
    color: var(--gray-mid);
    line-height: 1.65
}

.stage-chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem .9rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .08);
    font-size: .8rem;
    font-weight: 700;
    color: var(--charcoal);
    white-space: nowrap
}

.tour-snapshot {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .08)
}

.tour-snapshot img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    border-radius: 18px
}

.tour-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .8rem;
    margin-top: 1rem
}

.tour-meta-box {
    padding: .85rem .9rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(0, 0, 0, .07)
}

.tour-meta-box small {
    display: block;
    color: var(--gray-light);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .18rem
}

.tour-meta-box strong {
    color: var(--charcoal);
    font-size: .95rem
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
}

.option-card-strong,
.gateway-card {
    position: relative;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(0, 0, 0, .08);
    cursor: pointer;
    transition: .2s ease
}

.option-card-strong:hover,
.gateway-card:hover {
    transform: translateY(-2px);
    border-color: rgba(215, 179, 106, .4)
}

.option-card-strong input,
.gateway-card input {
    position: absolute;
    top: 1.1rem;
    left: 1rem
}

.option-card-strong.active,
.gateway-card.active {
    border-color: rgba(195, 74, 60, .24);
    background: linear-gradient(135deg, rgba(195, 74, 60, .10), rgba(255, 255, 255, .9));
    box-shadow: 0 12px 28px rgba(195, 74, 60, .08)
}

.option-card-strong h6,
.gateway-card h6 {
    margin: 0 0 .22rem;
    color: var(--charcoal);
    font-size: 1rem
}

.option-card-strong p,
.gateway-card p {
    margin: 0;
    color: var(--gray-mid);
    font-size: .88rem;
    line-height: 1.55
}

.inline-help {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    padding: .95rem 1rem;
    border-radius: 18px;
    background: rgba(35, 201, 115, .08);
    border: 1px solid rgba(35, 201, 115, .18);
    color: var(--charcoal)
}

.check-soft-strong {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(0, 0, 0, .08)
}

.check-soft-strong strong {
    display: block;
    color: var(--charcoal);
    margin-bottom: .18rem
}

.booking-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, .08)
}

.summary-card h3 {
    font-size: 1.22rem;
    color: var(--charcoal)
}

.summary-mini-tour {
    padding: 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(195, 74, 60, .08), rgba(0, 0, 0, .01));
    border: 1px solid rgba(0, 0, 0, .08);
    margin-bottom: 1rem
}

.summary-mini-tour strong {
    display: block;
    font-size: 1.05rem;
    color: var(--charcoal)
}

.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .45rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, .06)
}

.summary-line:last-child {
    border-bottom: none
}

.summary-line span {
    color: var(--gray-mid)
}

.summary-line strong {
    color: var(--charcoal);
    text-align: right
}

.summary-line.total {
    margin-top: .5rem;
    padding-top: .9rem;
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: none
}

.summary-line.total strong {
    font-size: 1.18rem;
    color: var(--red)
}

.summary-paymode {
    display: grid;
    gap: .8rem
}

.gateway-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .9rem
}

.gateway-card .gateway-brand {
    display: block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray-light);
    margin-bottom: .18rem
}

.pay-note {
    padding: .9rem 1rem;
    border-radius: 18px;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .08);
    color: var(--gray-mid);
    line-height: 1.6
}

.locked-bar {
    position: sticky;
    bottom: 16px;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(17, 17, 17, .94);
    backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .18)
}

.locked-bar strong {
    display: block;
    font-size: 1rem
}

.locked-bar span {
    display: block;
    color: rgba(255, 255, 255, .68);
    font-size: .84rem
}

@media (max-width:1199px) {
    .booking-shell {
        grid-template-columns: 1fr
    }

    .summary-card {
        position: static
    }

    .tour-meta-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:991px) {

    .stepper-track,
    .gateway-grid,
    .option-grid {
        grid-template-columns: 1fr
    }

    .tour-snapshot {
        grid-template-columns: 1fr
    }
}

@media (max-width:767px) {
    .tour-meta-grid {
        grid-template-columns: 1fr
    }

    .booking-actions,
    .locked-bar {
        flex-direction: column;
        align-items: stretch
    }

    .step-item {
        padding: .8rem
    }
}

/* tnc.html */
.legal-layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 1.5rem;
}

.legal-side,
.legal-main-card {
	background: var(--cream-light);
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 24px;
	backdrop-filter: blur(10px);
}

.legal-side {
	position: sticky;
	top: 148px;
	padding: 1.2rem;
	height: fit-content;
}

.legal-main-card {
	padding: 1.4rem;
}

.legal-side .toc-link {
	display: block;
	padding: .72rem .8rem;
	border-radius: 14px;
	color: var(--charcoal);
	text-decoration: none;
	font-size: .92rem;
	transition: .2s ease;
}

.legal-side .toc-link:hover,
.legal-side .toc-link.active {
	background: rgba(195, 74, 60, .16);
	color: var(--charcoal);
}

.legal-section {
	padding: 1.35rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, .08);
	scroll-margin-top: 110px;
}

.legal-section:last-child {
	border-bottom: 0;
}

.legal-section h2 {
	font-size: 1.45rem;
	margin-bottom: .85rem;
	color: var(--charcoal);
}

.legal-section h3 {
	font-size: 1rem;
	margin: 1rem 0 .55rem;
	color: var(--gold);
	letter-spacing: .02em;
}

.legal-section p,
.legal-section li {
	color: var(--gray-mid);
	line-height: 1.75;
}

.legal-section ul {
	padding-left: 1.15rem;
}

.legal-note,
.legal-highlight {
	border-radius: 18px;
	padding: 1rem 1.1rem;
	margin-top: 1rem;
}

.legal-note {
	background: rgba(0, 0, 0, .04);
	border: 1px solid rgba(0, 0, 0, .08);
}

.legal-highlight {
	background: rgba(195, 74, 60, .14);
	border: 1px solid rgba(195, 74, 60, .24);
}

.legal-def-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.legal-def-item {
	padding: 1rem;
	border-radius: 18px;
	background: rgba(0, 0, 0, .03);
	border: 1px solid rgba(0, 0, 0, .08);
}

.legal-def-item small {
	display: block;
	color: var(--gray-light);
	margin-bottom: .3rem;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.table-policy {
	overflow: hidden;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, .08);
	background: rgba(0, 0, 0, .03);
	margin-top: 1rem;
}

.table-policy table {
	margin: 0;
}

.table-policy th,
.table-policy td {
	background: transparent !important;
	color: var(--charcoal);
	border-color: rgba(0, 0, 0, .08);
	padding: .95rem 1rem;
}

.table-policy th {
	color: var(--black);
	font-weight: 700;
}

.mini-cta-bar {
	margin-top: 1.5rem;
	padding: 1rem 1.1rem;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(195, 74, 60, .16), rgba(0, 0, 0, .03));
	border: 1px solid rgba(0, 0, 0, .08);
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 991px) {
	.legal-layout {
		grid-template-columns: 1fr;
	}

	.legal-side {
		position: static;
	}

	.legal-def-grid {
		grid-template-columns: 1fr;
	}
}


.pricing-meta {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.pricing-meta span {
  color: #fff;
  margin-right: 6px;
}

/* PRICE CARD */
.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}

.price-card.active {
  background: linear-gradient(135deg, #c34a3c, #111);
  border-color: transparent;
}

.price-title {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.price-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 10px 0;
}

.price-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* NOTES */
.price-notes {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}