:root {
	--voyalli-coral: #ed2649;
	--voyalli-blue: #5468af;
	--voyalli-navy: #101b3f;
	--voyalli-ink: #171717;
	--voyalli-muted: #667085;
	--voyalli-white: #ffffff;
	--voyalli-soft: #fff5f7;
	--voyalli-sand: #fff8ef;
	--voyalli-line: #e7e9f2;
	--voyalli-radius-sm: 12px;
	--voyalli-radius-md: 20px;
	--voyalli-radius-lg: 32px;
	--voyalli-shadow-card: 0 18px 40px rgba(16, 27, 63, 0.12);
	--voyalli-font: "Century Gothic", "Avenir Next", Montserrat, Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
	scroll-behavior: smooth;
}

body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	margin: 0;
	background: var(--voyalli-white);
	color: var(--voyalli-ink);
	font-family: var(--voyalli-font);
	font-size: 16px;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
}

.site-main {
	flex: 1 0 auto;
	width: 100%;
}

.voyalli-homepage {
	width: 100%;
	max-width: none;
}

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

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

button,
input,
select {
	font: inherit;
}

.container {
	width: min(100% - 32px, 1180px);
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--voyalli-navy);
	color: #ffffff !important;
	clip: auto;
	border-radius: 8px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid rgba(231, 233, 242, 0.8);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	width: min(100% - 32px, 1180px);
	min-height: 86px;
	margin-inline: auto;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	width: 190px;
}

.site-brand img {
	width: 190px;
}

.primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 2vw, 30px);
	padding: 0;
	margin: 0;
	list-style: none;
	color: var(--voyalli-navy);
	font-size: 14px;
	font-weight: 700;
}

.primary-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 40px;
}

.primary-menu a::after {
	position: absolute;
	right: 0;
	bottom: 2px;
	left: 0;
	height: 2px;
	background: var(--voyalli-coral);
	content: "";
	opacity: 0;
	transform: scaleX(0.4);
	transition: opacity 160ms ease, transform 160ms ease;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item a::after {
	opacity: 1;
	transform: scaleX(1);
}

.header-cta,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 13px 23px;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	font-weight: 800;
	line-height: 1;
	text-align: center;
}

.header-cta,
.btn-primary {
	background: var(--voyalli-coral);
	color: var(--voyalli-white);
	box-shadow: 0 12px 28px rgba(237, 38, 73, 0.28);
}

.btn-block {
	width: 100%;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--voyalli-line);
	border-radius: 999px;
	background: var(--voyalli-white);
	color: var(--voyalli-navy);
}

.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
	display: block;
	width: 18px;
	height: 2px;
	margin: auto;
	background: currentColor;
	content: "";
}

.menu-toggle__bar::before {
	transform: translateY(-6px);
}

.menu-toggle__bar::after {
	transform: translateY(4px);
}

.hero {
	position: relative;
	min-height: 620px;
	padding-top: 18px;
	overflow: hidden;
	color: var(--voyalli-white);
}

.hero__media,
.hero__overlay {
	position: absolute;
	inset: 0;
}

.hero__media {
	background-position: center;
	background-size: cover;
	transform: scale(1.01);
}

.hero__overlay {
	background:
		linear-gradient(90deg, rgba(237, 38, 73, 0.78) 0%, rgba(237, 38, 73, 0.46) 44%, rgba(16, 27, 63, 0.10) 100%),
		linear-gradient(0deg, rgba(16, 27, 63, 0.34), rgba(16, 27, 63, 0.02));
}

.hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(330px, 430px);
	align-items: center;
	gap: clamp(32px, 6vw, 78px);
	min-height: 620px;
	padding-block: 64px;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--voyalli-coral);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero .eyebrow {
	display: inline-flex;
	padding: 9px 18px;
	border-radius: 999px;
	background: rgba(237, 38, 73, 0.84);
	color: var(--voyalli-white);
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	color: var(--voyalli-navy);
	font-weight: 900;
	line-height: 1.08;
}

.hero h1 {
	max-width: 720px;
	margin-bottom: 24px;
	color: var(--voyalli-white);
	font-size: clamp(42px, 7vw, 76px);
}

.hero__content > p:not(.eyebrow) {
	max-width: 620px;
	margin-bottom: 34px;
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 800;
	line-height: 1.45;
}

.hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 14px;
	font-weight: 900;
}

.hero-trust li {
	position: relative;
	padding-left: 28px;
}

.hero-trust li::before {
	position: absolute;
	top: 1px;
	left: 0;
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	border: 2px solid currentColor;
	border-radius: 999px;
	content: "";
}

.quote-card {
	padding: 24px;
	position: relative;
	z-index: 2;
	border-radius: var(--voyalli-radius-md);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--voyalli-shadow-card);
	color: var(--voyalli-navy);
}

.quote-card__tabs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--voyalli-line);
}

.quote-card__tabs button {
	padding: 0 0 12px;
	border: 0;
	background: transparent;
	color: var(--voyalli-navy);
	cursor: pointer;
	font-size: 14px;
	font-weight: 900;
}

.quote-card__tabs button.is-active {
	color: var(--voyalli-coral);
	border-bottom: 2px solid var(--voyalli-coral);
}

.quote-card label {
	display: block;
	margin-bottom: 12px;
}

.quote-card input,
.quote-card select {
	width: 100%;
	min-height: 52px;
	padding: 0 16px;
	border: 1px solid #d8dbe8;
	border-radius: 10px;
	background: var(--voyalli-white);
	color: var(--voyalli-navy);
	font-size: 14px;
	font-weight: 700;
}

.quote-card__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.quote-card .btn {
	width: 100%;
	margin-top: 2px;
}

.quote-card__note {
	margin: 16px 0 0;
	color: var(--voyalli-muted);
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}

.section {
	padding-block: clamp(58px, 8vw, 88px);
}

.destinations {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.98)),
		url("../img/backgrounds/white-wave-background.png") center top / cover no-repeat;
}

.section__head,
.section__center {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.section__center {
	display: block;
	text-align: center;
}

.voyalli-home-deals__intro-card {
	width: min(100% - 32px, 1180px);
	margin: 0 auto 18px;
	padding: 20px 22px;
	border: 1px solid var(--voyalli-line);
	border-radius: var(--voyalli-radius-md);
	background: linear-gradient(180deg, #fffdfb, #fff7ef);
	box-shadow: 0 14px 32px rgba(16, 27, 63, 0.08);
}

.voyalli-home-deals__intro-card h3 {
	margin-bottom: 8px;
	font-size: 18px;
}

.section h2 {
	margin: 0;
	font-size: clamp(28px, 4vw, 44px);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--voyalli-coral);
	font-weight: 900;
}

.package-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
}

.package-card,
.deal-card,
.testimonial-card {
	overflow: hidden;
	border: 1px solid var(--voyalli-line);
	border-radius: var(--voyalli-radius-md);
	background: var(--voyalli-white);
	box-shadow: 0 14px 32px rgba(16, 27, 63, 0.08);
}

.package-card__image,
.deal-card__image {
	position: relative;
	aspect-ratio: 1.58 / 1;
	overflow: hidden;
}

.voyalli-destination-card {
	position: relative;
	overflow: hidden;
	height: 420px;
	min-height: 420px;
	border-radius: 26px;
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
	display: block;
	cursor: pointer;
}

.voyalli-destination-card .package-card__body {
	display: none;
}

.voyalli-destination-card__image,
.voyalli-destination-card__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.voyalli-destination-card__image {
	display: block;
	z-index: 1;
}

.voyalli-destination-card__image img {
	object-fit: cover;
	transition: transform 350ms ease;
}

.voyalli-destination-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.75) 100%);
}

.voyalli-destination-card__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	pointer-events: auto;
	padding: 24px;
	padding-top: 72px;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 10px;
	width: 100%;
	max-width: 85%;
}

.voyalli-destination-card__title {
	margin: 0;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.15;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	color: #ffffff !important;
	text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.voyalli-destination-card__caption {
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	display: -webkit-box !important;
	visibility: visible !important;
	opacity: 1 !important;
	color: rgba(255,255,255,.92) !important;
	font-size: 15px;
	line-height: 1.45;
	text-shadow: 0 2px 8px rgba(0,0,0,.45);
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.voyalli-destination-card__cta {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 18px;
	border-radius: 999px;
	background: #f32b55;
	color: #fff !important;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(243,43,85,.30);
	transition: transform .2s ease, background .2s ease;
	width: fit-content;
	line-height: 1;
	white-space: nowrap;
}

.voyalli-destination-card .package-card__image {
	position: absolute;
	inset: 0;
	aspect-ratio: auto;
	overflow: hidden;
	border-radius: 0;
}

.voyalli-destination-card .package-card__image span {
	display: none;
}

.voyalli-destination-card__cta::after {
	content: " →";
}

.voyalli-destination-card:hover .voyalli-destination-card__link img,
.voyalli-destination-card:focus-within .voyalli-destination-card__link img {
	transform: scale(1.03);
}

.voyalli-destination-card__link:focus-visible {
	outline: 3px solid var(--voyalli-coral);
	outline-offset: 3px;
}

.package-card__image img,
.deal-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.package-card__image span,
.deal-card__image span {
	position: absolute;
	bottom: 12px;
	left: 12px;
	padding: 6px 10px;
	border-radius: 8px;
	background: var(--voyalli-coral);
	color: var(--voyalli-white);
	font-size: 13px;
	font-weight: 900;
}

.package-card__body,
.deal-card__body {
	padding: 16px;
}

.package-card h3,
.deal-card h3 {
	margin-bottom: 8px;
	font-size: 16px;
}

.package-card ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	padding: 0;
	margin: 0 0 18px;
	list-style: none;
	color: var(--voyalli-muted);
	font-size: 12px;
	font-weight: 800;
}

.package-card p,
.deal-card p {
	margin-bottom: 16px;
	color: var(--voyalli-navy);
	font-size: 14px;
	font-weight: 800;
}

.package-card strong,
.deal-card strong {
	color: var(--voyalli-coral);
	font-size: 22px;
}

.package-card span,
.deal-card span {
	color: var(--voyalli-muted);
	font-size: 12px;
}

.advantage {
	background: linear-gradient(180deg, var(--voyalli-white) 0%, #f7fbff 100%);
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
}

.benefit {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 16px;
	padding: 12px 22px;
	border-right: 1px solid var(--voyalli-line);
}

.benefit:last-child {
	border-right: 0;
}

.benefit img {
	width: 58px;
	height: 58px;
	padding: 13px;
	border-radius: 999px;
	background: var(--voyalli-soft);
}

.benefit h3 {
	margin-bottom: 7px;
	font-size: 15px;
}

.benefit p {
	margin-bottom: 0;
	color: var(--voyalli-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
}

.deals {
	position: relative;
	overflow: hidden;
	background: #f7fbff;
}

.deals::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: min(26vw, 340px);
	background: url("../img/backgrounds/blue-palm-shadow-background.png") left center / cover no-repeat;
	content: "";
	opacity: 0.38;
}

.voyalli-home-deals__wrap {
	position: relative;
	width: min(100% - 32px, 1180px);
	margin-inline: auto;
}

.voyalli-home-deals__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	width: 100%;
	align-items: stretch;
}

.voyalli-home-deals__intro-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
	padding: 20px;
	border: 1px solid var(--voyalli-line);
	border-radius: var(--voyalli-radius-md);
	background: linear-gradient(180deg, #fffdfb, #fff7ef);
	box-shadow: 0 14px 32px rgba(16, 27, 63, 0.08);
}

.voyalli-home-deals__intro-card h3 {
	margin-bottom: 10px;
	font-size: 18px;
}

.voyalli-home-deals__intro-card p {
	margin-bottom: 14px;
	color: var(--voyalli-navy);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.5;
}

.voyalli-home-deal-card {
	min-width: 0;
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--voyalli-line);
	border-radius: var(--voyalli-radius-md);
	background: var(--voyalli-white);
	box-shadow: 0 14px 32px rgba(16, 27, 63, 0.08);
}

.voyalli-home-deal-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 1.25 / 1;
	overflow: hidden;
}

.voyalli-home-deal-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.voyalli-home-deal-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
	padding: 14px;
}

.voyalli-home-deal-card__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 8px;
	min-width: 0;
	margin: 2px 0 4px;
}

.voyalli-home-deal-card__price-label,
.voyalli-home-deal-card__price small {
	flex: 0 0 auto;
}

.voyalli-home-deal-card__price .woocommerce-Price-amount {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	max-width: 100%;
	white-space: normal;
}

.voyalli-home-deal-card__body p {
	margin-bottom: 4px;
}

.voyalli-home-deal-card__body h3 {
	margin-bottom: 8px;
	font-size: 15px;
}

.voyalli-home-deal-card__body strong {
	color: var(--voyalli-coral);
	font-size: 19px;
}

.testimonials {
	background: linear-gradient(180deg, #f7fbff 0%, #eef8ff 100%);
}

.testimonials__inner {
	display: grid;
	grid-template-columns: 270px 1fr;
	gap: 38px;
	align-items: center;
}

.rating {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 20px 0 4px;
}

.rating span {
	color: #ffb423;
	font-size: 22px;
	letter-spacing: 0;
}

.rating strong {
	color: var(--voyalli-navy);
	font-size: 24px;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.testimonial-card {
	padding: 24px;
	position: relative;
	z-index: 2;
}

.testimonial-card__quote {
	position: relative;
	min-height: 96px;
	margin-bottom: 18px;
	color: var(--voyalli-navy);
	font-size: 14px;
	font-weight: 800;
}

.testimonial-card__quote::before {
	display: block;
	color: var(--voyalli-coral);
	content: "\"";
	font-size: 42px;
	font-weight: 900;
	line-height: 0.7;
}

.testimonial-card > div {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonial-card p:last-child {
	margin: 0;
	color: var(--voyalli-navy);
	font-size: 13px;
	line-height: 1.35;
}

.testimonial-card span:not(.avatar) {
	color: var(--voyalli-muted);
}

.vc-brand-marquee-section {
	width: 100%;
	padding: 3rem 0 3.25rem;
	overflow: hidden;
	background: #f7f3ed;
}

.vc-brand-marquee-head {
	max-width: 1200px;
	margin: 0 auto 1.5rem;
	padding: 0 1.25rem;
	text-align: center;
}

.vc-brand-marquee-head .vc-brand-marquee-kicker {
	margin: 0 0 .35rem;
	color: #9a6b2f;
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.vc-brand-marquee-head h2 {
	margin: 0;
	color: #171311;
	font-size: clamp(1.6rem, 2.8vw, 2.5rem);
	line-height: 1.1;
}

.vc-brand-marquee-subtitle {
	max-width: 52rem;
	margin: .55rem auto 0;
	color: #5d5750;
}

.vc-brand-marquee {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.vc-brand-marquee:before,
.vc-brand-marquee:after {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 72px;
	content: "";
	z-index: 1;
	pointer-events: none;
}

.vc-brand-marquee:before {
	left: 0;
	background: linear-gradient(90deg, #f7f3ed 0, rgba(247, 243, 237, 0) 100%);
}

.vc-brand-marquee:after {
	right: 0;
	background: linear-gradient(270deg, #f7f3ed 0, rgba(247, 243, 237, 0) 100%);
}

.vc-brand-marquee-track {
	display: flex;
	align-items: center;
	gap: 2rem;
	width: max-content;
	will-change: transform;
	animation: vc-brand-marquee-scroll 30s linear infinite;
}

.vc-brand-marquee-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: .35rem .75rem;
	text-decoration: none;
}

.vc-brand-marquee-item img {
	display: block;
	max-width: 180px;
	max-height: 64px;
	width: auto;
	object-fit: contain;
}

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

@media (max-width: 768px) {
	.vc-brand-marquee-section {
		padding: 2.25rem 0 2.5rem;
	}
	.vc-brand-marquee-head {
		margin-bottom: 1.1rem;
	}
	.vc-brand-marquee-track {
		gap: 1.35rem;
		animation-duration: 22s;
	}
	.vc-brand-marquee-item {
		padding: .25rem .5rem;
	}
	.vc-brand-marquee-item img {
		max-width: 140px;
		max-height: 50px;
	}
}

.avatar {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 999px;
	background: var(--voyalli-blue);
	color: var(--voyalli-white);
	font-weight: 900;
}

.site-footer {
	position: relative;
	flex-shrink: 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 100% 100%, rgba(84, 104, 175, 0.55) 0, rgba(84, 104, 175, 0) 34%),
		linear-gradient(135deg, #ed2649 0%, #d91f42 58%, #101b3f 100%);
	color: var(--voyalli-white);
}

.site-footer::after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 360px;
	height: 260px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0) 0 42%, rgba(255, 255, 255, 0.14) 42% 46%, rgba(255, 255, 255, 0) 46% 56%, rgba(255, 255, 255, 0.12) 56% 60%, rgba(255, 255, 255, 0) 60%),
		radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 62%);
	content: "";
	opacity: 1;
	pointer-events: none;
}

.site-footer__inner,
.site-footer__bottom {
	position: relative;
	z-index: 1;
	width: min(100% - 32px, 1180px);
	margin-inline: auto;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.5fr repeat(4, 1fr);
	gap: 34px;
	padding-block: 54px 42px;
}

.footer-brand img {
	width: 190px;
	margin-bottom: 24px;
}

.footer-brand p,
.footer-list li,
.site-footer__bottom p {
	color: var(--voyalli-white);
	font-size: 14px;
	font-weight: 700;
}

.social-links {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.social-links a {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 999px;
	background: var(--voyalli-white);
	color: var(--voyalli-coral);
	font-weight: 900;
}

.footer-list h2 {
	margin: 0 0 16px;
	color: var(--voyalli-white);
	font-size: 16px;
}

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

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-block: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.site-footer__bottom p {
	margin: 0;
}

.content-page {
	padding-block: 70px;
	background: #f7fbff;
}

.content-article {
	padding: clamp(28px, 5vw, 48px);
	border-radius: var(--voyalli-radius-md);
	background: var(--voyalli-white);
	box-shadow: var(--voyalli-shadow-card);
}

.entry-header h1 {
	font-size: clamp(32px, 5vw, 54px);
}

.entry-content a {
	color: var(--voyalli-coral);
	font-weight: 800;
}

@media (max-width: 1080px) {
	.site-header__inner {
		grid-template-columns: auto auto auto;
		justify-content: space-between;
	}

	.menu-toggle {
		display: grid;
		place-items: center;
		order: 3;
	}

	.primary-navigation {
		position: absolute;
		top: 100%;
		right: 16px;
		left: 16px;
		display: none;
		padding: 18px;
		border: 1px solid var(--voyalli-line);
		border-radius: var(--voyalli-radius-md);
		background: var(--voyalli-white);
		box-shadow: var(--voyalli-shadow-card);
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-menu {
		display: grid;
		justify-content: stretch;
		gap: 4px;
	}

	.primary-menu a {
		width: 100%;
		padding: 10px 4px;
	}

	.header-cta {
		order: 2;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		align-items: end;
	}

	.quote-card {
		max-width: 520px;
	}

	.package-grid,
	.benefit-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.benefit {
		border-right: 0;
		border-bottom: 1px solid var(--voyalli-line);
	}

	.deals__inner,
	.testimonials__inner {
		grid-template-columns: 1fr;
	}

	.site-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.container,
	.site-header__inner,
	.site-footer__inner,
	.site-footer__bottom {
		width: min(100% - 24px, 1180px);
	}

	.site-header__inner {
		grid-template-columns: 1fr auto;
		gap: 12px;
		min-height: 72px;
	}

	.site-brand,
	.site-brand img {
		width: 154px;
	}

	.header-cta {
		display: none;
	}

	.menu-toggle {
		order: 2;
	}

	.hero {
		min-height: auto;
	}

	.hero__inner {
		min-height: auto;
		padding-block: 54px 38px;
	}

	.hero h1 {
		font-size: 42px;
	}

	.hero__content > p:not(.eyebrow) {
		font-size: 17px;
	}

	.quote-card {
		padding: 18px;
		border-radius: 18px;
	}

	.quote-card__grid,
	.package-grid,
	.voyalli-home-deals__grid,
	.testimonial-grid,
	.benefit-grid,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.section__head {
		display: block;
	}

	.section__head .text-link {
		margin-top: 14px;
	}

	.benefit {
		padding-inline: 0;
	}

	.site-footer__bottom {
		display: grid;
	}
}

@media (max-width: 1199px) {
	.voyalli-home-deals__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 899px) {
	.voyalli-home-deals__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 599px) {
	.voyalli-home-deals__grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 1200px) {
	.voyalli-home-deals__intro-card {
		min-height: 100%;
	}
}


.voyalli-privacy-form {
	margin-top: 18px;
}

.voyalli-privacy-form-card {
	padding: clamp(20px, 3vw, 32px);
	border: 1px solid var(--voyalli-line);
	border-radius: var(--voyalli-radius-lg);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 239, 0.88));
	box-shadow: var(--voyalli-shadow-card);
}

.voyalli-privacy-message {
	margin-bottom: 18px;
	padding: 14px 16px;
	border-radius: 16px;
	font-weight: 700;
}

.voyalli-privacy-message p {
	margin: 0;
}

.voyalli-privacy-message--success {
	background: #eefbf2;
	border: 1px solid #b9e6c7;
	color: #14532d;
}

.voyalli-privacy-message--error {
	background: #fff0f1;
	border: 1px solid #f0b6bf;
	color: #8b1530;
}

.voyalli-privacy-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 16px;
}

.voyalli-privacy-field,
.voyalli-privacy-submit {
	margin: 0;
}

.voyalli-privacy-field--full {
	grid-column: 1 / -1;
}

.voyalli-privacy-form label {
	display: inline-block;
	margin: 0 0 8px;
	color: var(--voyalli-navy);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
}

.voyalli-privacy-form input,
.voyalli-privacy-form select,
.voyalli-privacy-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--voyalli-line);
	border-radius: 14px;
	background: var(--voyalli-white);
	color: var(--voyalli-ink);
	box-shadow: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.voyalli-privacy-form input::placeholder,
.voyalli-privacy-form textarea::placeholder {
	color: #98a2b3;
}

.voyalli-privacy-form input:focus,
.voyalli-privacy-form select:focus,
.voyalli-privacy-form textarea:focus {
	outline: none;
	border-color: rgba(237, 38, 73, 0.45);
	box-shadow: 0 0 0 4px rgba(237, 38, 73, 0.12);
}

.voyalli-privacy-form select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--voyalli-navy) 50%), linear-gradient(135deg, var(--voyalli-navy) 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 12px) calc(1em + 2px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 40px;
}

.voyalli-privacy-form textarea {
	min-height: 150px;
	resize: vertical;
}

.voyalli-privacy-submit {
	display: flex;
	justify-content: flex-end;
	margin-top: 10px;
}

.voyalli-privacy-submit .button {
	min-width: 180px;
}

@media (max-width: 720px) {
	.voyalli-privacy-form-grid {
		grid-template-columns: 1fr;
	}

	.voyalli-privacy-submit {
		justify-content: stretch;
	}

	.voyalli-privacy-submit .button {
		width: 100%;
		min-width: 0;
/* Secure payment form styles */
.voyalli-secure-payment-form {
    max-width: 760px;
    margin: 24px 0 40px;
}

.voyalli-secure-payment-card {
    width: 100%;
    padding: 24px;
	position: relative;
	z-index: 2;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.voyalli-secure-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.voyalli-secure-payment-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.voyalli-secure-payment-field--full {
    grid-column: 1 / -1;
}

.voyalli-secure-payment-field label {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    color: #071f55;
}

.voyalli-required {
    color: #ef2350;
}

.voyalli-secure-payment-form input,
.voyalli-secure-payment-form textarea {
    width: 100%;
    box-sizing: border-box;
    min-height: 46px;
    padding: 11px 14px;
    border: 1px solid #d8deea;
    border-radius: 14px;
    background: #fff;
    color: #172033;
    font-size: 15px;
    line-height: 1.35;
    outline: none;
    appearance: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.voyalli-secure-payment-form textarea {
    min-height: 118px;
    resize: vertical;
}

.voyalli-secure-payment-form input:focus,
.voyalli-secure-payment-form textarea:focus {
    border-color: #0b64d8;
    box-shadow: 0 0 0 4px rgba(11, 100, 216, 0.12);
}

.voyalli-secure-payment-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
    margin-top: 2px;
}

.voyalli-secure-payment-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #f32b55;
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(243, 43, 85, 0.28);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.voyalli-secure-payment-submit:hover {
    transform: translateY(-1px);
    background: #d91f46;
    box-shadow: 0 18px 36px rgba(243, 43, 85, 0.32);
}

.voyalli-secure-payment-message {
    max-width: 760px;
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 700;
}

.voyalli-secure-payment-message--success {
    background: #ecfdf3;
    color: #027a48;
    border: 1px solid #abefc6;
}

.voyalli-secure-payment-message--error {
    background: #fef3f2;
    color: #b42318;
    border: 1px solid #fecdca;
}

@media (max-width: 720px) {
    .voyalli-secure-payment-form {
        max-width: 100%;
        margin: 20px 0 32px;
    }

    .voyalli-secure-payment-card {
        padding: 18px;
        border-radius: 20px;
    }

    .voyalli-secure-payment-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .voyalli-secure-payment-actions {
        justify-content: stretch;
    }

    .voyalli-secure-payment-submit {
        width: 100%;
    }
}
