:root {
	--ink: #172033;
	--muted: #172033;
	--line: #f8faff;
	--paper: #ffffff;
	--mist: #f8faff;
	--vc-red: #ed2649;
	--vc-blue: #5468af;
	--shadow: 0 18px 45px rgba(23, 32, 51, 0.13);
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--ink);
	background: #f8faff;
	font-family: "Century Gothic", "Montserrat", "Poppins", Arial, sans-serif;
	line-height: 1.55;
}

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

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 14px;
	padding: 14px clamp(18px, 4vw, 54px);
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 1.08rem;
}


.brand-logo {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
}

.brand-logo--header {
	max-width: 170px;
	max-height: 64px;
}

.brand-logo--footer {
	max-width: min(100%, 320px);
	max-height: 132px;
}

.hero-logo {
	display: block;
	width: min(100%, 420px);
	max-height: 170px;
	object-fit: contain;
	object-position: left center;
}

.mobile-call img {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.menu-toggle {
	display: grid;
	gap: 4px;
	width: 42px;
	height: 42px;
	place-content: center;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
}

.menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--ink);
}

.site-nav {
	display: none;
	grid-column: 1 / -1;
}

.site-nav.is-open {
	display: block;
}

.menu {
	display: grid;
	gap: 8px;
	padding: 12px 0 0;
	margin: 0;
	list-style: none;
}

.menu a {
	display: block;
	padding: 9px 0;
	color: var(--muted);
	font-weight: 700;
}

.header-call,
.button,
.mobile-call {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 16px;
	border-radius: var(--radius);
	font-weight: 800;
}

.header-call {
	color: #ffffff;
	background: var(--vc-red);
	white-space: nowrap;
}

.site-main {
	min-height: 70vh;
}

.hero {
	display: grid;
	gap: 26px;
	align-items: end;
	min-height: min(720px, calc(100vh - 82px));
	padding: clamp(46px, 8vw, 96px) clamp(18px, 5vw, 72px);
	background:
		linear-gradient(120deg, rgba(23, 32, 51, 0.88), rgba(84, 104, 175, 0.62)),
		radial-gradient(circle at 78% 20%, rgba(237, 38, 73, 0.35), transparent 26%),
		linear-gradient(135deg, #ed2649 0%, #5468af 100%);
	color: #ffffff;
}

.hero h1,
.archive-hero h1 {
	margin: 0;
	font-size: clamp(3.2rem, 10vw, 7.5rem);
	line-height: 0.9;
	letter-spacing: 0;
}

.hero p {
	max-width: 660px;
	font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.eyebrow {
	margin: 0 0 8px;
	color: #5468af;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero .eyebrow,
.archive-hero .eyebrow {
	color: #ffffff;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.button {
	border: 1px solid transparent;
}

.button-primary {
	color: #ffffff;
	background: #ed2649;
}

.button-light {
	color: var(--ink);
	background: #ffffff;
}

.search-panel {
	display: grid;
	gap: 14px;
	width: min(100%, 920px);
	padding: 18px;
	color: var(--ink);
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.search-panel label {
	display: grid;
	gap: 6px;
	font-weight: 800;
}

.search-panel span {
	color: var(--muted);
	font-size: 0.8rem;
	text-transform: uppercase;
}

.search-panel input,
.search-panel select {
	width: 100%;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #ffffff;
	font: inherit;
}

.section {
	padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.section-tint {
	background: var(--mist);
}

.section-head {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 24px;
}

.section h2,
.single-content h1 {
	margin: 0;
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1;
	letter-spacing: 0;
}

.card-grid,
.vc-shortcode-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: 18px;
}

.travel-card,
.vc-card {
	overflow: hidden;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 10px 24px rgba(23, 32, 51, 0.07);
}

.travel-card a,
.vc-card__link {
	display: grid;
	min-height: 100%;
}

.card-media,
.vc-card__media {
	min-height: 190px;
	background-position: center;
	background-size: cover;
}

.travel-card-body,
.vc-card__body {
	display: grid;
	gap: 10px;
	padding: 18px;
}

.travel-card h2,
.travel-card h3,
.vc-card h3 {
	margin: 0;
	font-size: 1.18rem;
	line-height: 1.2;
}

.travel-card p,
.vc-card p {
	margin: 0;
	color: var(--muted);
}

.card-footer,
.vc-card__meta {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 12px;
	margin-top: 8px;
	padding-top: 12px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.92rem;
}

.card-footer strong,
.vc-card__meta strong {
	color: var(--vc-red);
	white-space: nowrap;
}

.split-feature,
.two-lanes {
	display: grid;
	gap: 28px;
}

.trust-band {
	display: grid;
	gap: 28px;
	background: #172033;
	color: #ffffff;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
	gap: 14px;
}

.trust-grid div {
	display: grid;
	gap: 8px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
}

.trust-grid span {
	color: #f8faff;
}

.archive-hero {
	padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px);
	background:
		linear-gradient(115deg, rgba(23, 32, 51, 0.9), rgba(84, 104, 175, 0.72)),
		linear-gradient(135deg, #ed2649 0%, #5468af 100%);
	color: #ffffff;
}

.archive-hero p {
	max-width: 760px;
	font-size: 1.1rem;
}

.single-travel {
	display: grid;
	gap: 28px;
	padding: clamp(30px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.single-media .card-media {
	min-height: clamp(300px, 48vw, 560px);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.single-content {
	display: grid;
	align-content: start;
	gap: 18px;
}

.lead {
	margin: 0;
	color: var(--muted);
	font-size: 1.1rem;
}

.detail-strip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px;
	background: var(--mist);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.detail-strip strong {
	color: var(--vc-red);
}

.entry-content {
	color: var(--muted);
}

.empty-panel {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px;
	background: #ffffff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.site-footer {
	padding: 42px clamp(18px, 5vw, 72px) 86px;
	color: #f8faff;
	background: #172033;
}

.footer-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.site-footer h2 {
	margin: 0 0 10px;
	color: #ffffff;
	font-size: 1rem;
}

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

.footer-phone,
.footer-brand {
	color: #ffffff;
	font-weight: 900;
}

.disclaimer {
	max-width: 980px;
	margin: 32px 0 0;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 0.92rem;
}

.mobile-call {
	position: fixed;
	right: 14px;
	bottom: 14px;
	z-index: 60;
	color: #ffffff;
	background: var(--vc-red);
	box-shadow: var(--shadow);
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.nav-links a,
.nav-links span {
	padding: 8px 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #ffffff;
}

@media (min-width: 760px) {
	.site-header {
		grid-template-columns: auto 1fr auto;
	}

	.brand-logo--header {
		max-width: 220px;
	}

	.menu-toggle {
		display: none;
	}

	.site-nav {
		display: block;
		grid-column: auto;
	}

	.menu {
		display: flex;
		justify-content: center;
		gap: 22px;
		padding: 0;
	}

	.search-panel {
		grid-template-columns: 1.2fr 1fr auto;
		align-items: end;
	}

	.hero {
		grid-template-columns: minmax(0, 1fr);
	}

	.split-feature {
		grid-template-columns: 0.42fr 1fr;
		align-items: start;
	}

	.two-lanes {
		grid-template-columns: 1fr 1fr;
	}

	.trust-band {
		grid-template-columns: 0.35fr 1fr;
	}

	.single-travel {
		grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
	}
}

@media (min-width: 980px) {
	.mobile-call {
		display: none;
	}
}


.hotels-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(120deg, rgba(23, 32, 51, 0.9), rgba(84, 104, 175, 0.72)),
		linear-gradient(135deg, #ed2649 0%, #5468af 100%);
}

.hotels-hero::before,
.hotels-hero::after {
	position: absolute;
	content: "";
	pointer-events: none;
}

.hotels-hero::before {
	right: clamp(24px, 8vw, 110px);
	bottom: clamp(22px, 6vw, 70px);
	width: min(42vw, 430px);
	height: min(24vw, 210px);
	border-top: 2px dashed rgba(255, 255, 255, 0.55);
	border-right: 2px dashed rgba(255, 255, 255, 0.32);
	border-radius: 999px 999px 0 0;
	transform: rotate(-8deg);
}

.hotels-hero::after {
	right: clamp(18px, 5vw, 70px);
	top: clamp(34px, 8vw, 100px);
	width: 18px;
	height: 18px;
	background: #ffffff;
	border: 6px solid #ed2649;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	box-shadow: -72px 88px 0 -5px rgba(255, 255, 255, 0.72), -116px 34px 0 -6px rgba(237, 38, 73, 0.78);
}

.hotels-brand-section {
	position: relative;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.92)),
		linear-gradient(135deg, rgba(237, 38, 73, 0.08), rgba(84, 104, 175, 0.12));
}

.section-head--wide {
	max-width: 820px;
}

.section-head > p:not(.eyebrow) {
	max-width: 720px;
	margin: 4px 0 0;
	color: var(--muted);
}

.vc-brand-logo-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.vc-brand-logo-card {
	display: grid;
	align-content: center;
	gap: 7px;
	min-width: 0;
	min-height: 96px;
	padding: 10px 8px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	box-shadow: 0 8px 18px rgba(23, 32, 51, 0.06);
	text-align: center;
}

.vc-brand-logo-wrap {
	display: grid;
	place-items: center;
	height: 60px;
	padding: 4px;
}

.vc-brand-logo-wrap img {
	display: block;
	max-width: 125px;
	max-height: 52px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.vc-brand-logo-wrap span {
	display: grid;
	place-items: center;
	width: 100%;
	min-height: 52px;
	padding: 7px;
	color: #ffffff;
	background: linear-gradient(135deg, #ed2649 0%, #5468af 100%);
	border-radius: 8px;
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1.12;
	overflow-wrap: anywhere;
}

.vc-brand-logo-card h3 {
	margin: 0;
	color: #172033;
	font-size: 0.82rem;
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.vc-brand-marquee-section {
	overflow: hidden;
	background: #f8faff;
}

.vc-brand-marquee-section .section-head {
	margin-bottom: 16px;
}

.vc-brand-marquee {
	overflow: hidden;
	width: 100%;
	padding: 8px 0;
	mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.vc-brand-marquee-track {
	display: flex;
	width: max-content;
	gap: 14px;
	animation: vc-brand-marquee 44s linear infinite;
}

.vc-brand-marquee:hover .vc-brand-marquee-track {
	animation-play-state: paused;
}

.vc-brand-marquee-item {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 160px;
	height: 72px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(23, 32, 51, 0.06);
}

.vc-brand-marquee-logo {
	display: grid;
	place-items: center;
	padding: 8px 14px;
}

.vc-brand-marquee-logo img {
	display: block;
	max-width: 120px;
	max-height: 46px;
	width: auto;
	height: auto;
	object-fit: contain;
}

@keyframes vc-brand-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (min-width: 700px) {
	.vc-brand-logo-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 10px;
	}
}

@media (min-width: 1100px) {
	.vc-brand-logo-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

@media (min-width: 1380px) {
	.vc-brand-logo-grid {
		grid-template-columns: repeat(8, minmax(0, 1fr));
	}
}
