/* Fonts loaded via Google Fonts in view_header.php (Cinzel + Montserrat) */
:root {
	--primary-color: #E57C16;
	--text-color: #585858;
	--yellow-color: #faaf40ff;
	--white: #fff;
	--black: #000;
	--btn-color: #E57C16;
	--bg-color: #e9ecefff;
	--youtube: #FF0000;
	--instagram: #C32AA3;
	--whatsapp: #25D366;
	--facebook: #1877F2;
	--google: #ea4335;
	--tripadvisor: #00af87;
	--tiktok: #010101;

	--email: #E87715;
	--phone: #521A97;
	--font-primary: "Montserrat", sans-serif;
	--font-secondary: "Cinzel", serif;

}

body {
	margin: 0;
	padding: 0;
	top: 0 !important;
	overflow-x: hidden;
	font-family: var(--font-primary);
	position: relative;
}

ul li {
	list-style: none;
}

ul {
	padding-left: 0;
}

p {
	color: black;
	font-size: 15px;
	font-weight: 400;

}

.navbar {
	position: fixed;
	width: 100%;
	z-index: 5;

	transition: .5s;
	padding-top: 15px;
	padding-bottom: 15px;
}

.navbar.navbar-fixed {
	background: var(--white);
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
	padding-top: 5px;
	padding-bottom: 5px;
}

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

.navbar-brand {
	padding: 0 !important;
	margin: 0 !important;
}

footer img {
	width: 400px;
	margin-bottom: 10px;



}

.nav-link {
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	color: rgb(255, 255, 255);
	transition: .5s;
	padding: 10px !important;
}



.navbar.navbar-fixed .nav-link {
	color: var(--black);
}

.nav-link:hover,
.navbar.navbar-fixed .nav-link:hover {
	color: var(--btn-color);
}

.activity-detail-banner {
	height: 420px;
	position: relative;
	overflow: hidden;
}

.activity-detail-banner .overlay {
	background: linear-gradient(180deg, rgba(8, 15, 38, 0.18) 0%, rgba(8, 15, 38, 0.62) 100%);
	position: absolute;
	inset: 0;
	z-index: 0;
}

.activity-detail-banner .container {
	position: relative;
	z-index: 1;
	height: 100%;
}

.activity-banner-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 900px;
	padding: 0 20px;
}

.activity-banner-text__eyebrow,
.activity-detail-eyebrow {
	display: inline-block;
	font-family: var(--font-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.activity-banner-text h2 {
	font-family: var(--font-secondary);
	font-size: 56px;
	line-height: 1.02;
	color: #ffffff;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.activity-banner-text p {
	font-size: 17px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.9);
	max-width: 760px;
	margin: 0 auto 18px;
}

.activity-banner-text__actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.activity-detail-section {
	background: linear-gradient(180deg, #f7f8fe 0%, #ffffff 100%);
}

.activity-detail-image-card {
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 18px 50px rgba(17, 24, 39, 0.14);
	border: 1px solid rgba(44, 181, 173, 0.18);
	background: #ffffff;
}

.activity-detail-image-card img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.activity-detail-image-card:hover img {
	transform: scale(1.03);
}

.activity-detail-copy {
	background: #ffffff;
	border-radius: 22px;
	padding: 18px 8px 8px;
}

.activity-detail-title {
	font-size: 44px;
	line-height: 1.06;
	color: #1c1f7a;
	margin-bottom: 18px;
}

.activity-detail-content p,
.activity-detail-content {
	font-family: var(--font-primary);
	font-size: 16px;
	line-height: 1.8;
	color: #5b6275;
}

.activity-detail-content p + p {
	margin-top: 14px;
}

.activity-detail-actions {
	margin-top: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.activity-detail-actions .theme-btn-3 {
	background: linear-gradient(135deg, #521A97 0%, var(--primary-color) 100%);
	color: #ffffff !important;
	box-shadow: 0 14px 32px rgba(82, 26, 151, 0.24);
}

.activity-detail-actions .theme-btn-3:hover {
	transform: translateY(-2px);
}

.activity-gallery-block {
	margin-top: 14px;
	padding: 22px;

}

.activity-gallery-head {
	margin-bottom: 12px;
}

.activity-gallery-slider .slide-item {
	padding: 0 8px;
}

.activity-gallery-card {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(17, 24, 39, 0.12);
	background: #ffffff;
	border: 1px solid rgba(82, 26, 151, 0.14);
}

.activity-gallery-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.activity-gallery-card:hover img {
	transform: scale(1.04);
}

@media (max-width: 1025px) {
	.activity-detail-banner {
		height: 360px;
	}

	.activity-banner-text h2 {
		font-size: 40px;
	}

	.activity-banner-text p {
		font-size: 15px;
	}

	.activity-detail-title {
		font-size: 34px;
	}

	.activity-detail-copy {
		padding: 8px 0 0;
	}

	.activity-gallery-block {
		padding: 16px;
		border-radius: 18px;
	}

	.activity-gallery-card img {
		height: 180px;
	}
}

@media (max-width: 767px) {
	.activity-detail-banner {
		height: 320px;
	}

	.activity-banner-text {
		padding: 0 14px;
	}

	.activity-banner-text h2 {
		font-size: 28px;
		line-height: 1.08;
	}

	.activity-banner-text p {
		font-size: 13px;
		line-height: 1.55;
		margin-bottom: 14px;
	}

	.activity-detail-section {
		padding-top: 36px;
		padding-bottom: 36px;
	}

	.activity-detail-image-card,
	.activity-detail-copy {
		border-radius: 18px;
	}

	.activity-detail-title {
		font-size: 20px;
		line-height: 1.12;
		margin-bottom: 12px;
	}

	.activity-detail-content p,
	.activity-detail-content {
		font-size: 12px;
		line-height: 1.65;
	}

	.activity-detail-actions {
		margin-top: 18px;
	}

	.activity-gallery-block {
		padding: 14px;
	}

	.activity-gallery-card img {
		height: 160px;
	}

	.activity-gallery-slider .slide-item {
		padding: 0 5px;
	}
}

	.about-hero-banner {
		height: 460px;
		position: relative;
	}
	/* .about-hero-banner also carries .section-banner, whose ::after adds its
	   own top-heavy dark gradient — that would stack with .overlay below and
	   over-darken the banner. This page has its own bespoke overlay, so
	   suppress the generic one here. */
	.about-hero-banner.section-banner::after { content: none; }

	.about-hero-banner .overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(8, 15, 38, 0.15) 0%, rgba(8, 15, 38, 0.66) 100%);
	}

	.about-hero-copy {
		position: relative;
		z-index: 2;
		max-width: 860px;
		margin: 0 auto;
		padding-top: 150px;
	}

	.about-hero-eyebrow {
		display: inline-block;
		font-family: var(--font-primary);
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: var(--primary-color);
		margin-bottom: 10px;
	}

	.about-hero-copy h1 {
		font-family: var(--font-secondary);
		font-size: 56px;
		line-height: 1.02;
		color: #ffffff;
		margin-bottom: 12px;
		text-transform: uppercase;
	}

	.about-hero-copy p {
		font-family: var(--font-primary);
		font-size: 17px;
		line-height: 1.65;
		color: rgba(255, 255, 255, 0.9);
		margin: 0 auto;
		max-width: 720px;
	}

	.about-modern-section {
		background: linear-gradient(180deg, #f7f8fe 0%, #ffffff 100%);
	}

	.about-modern-image-card {
		border-radius: 24px;
		overflow: hidden;
		border: 1px solid rgba(44, 181, 173, 0.18);
		box-shadow: 0 18px 45px rgba(17, 24, 39, 0.13);
		background: #ffffff;
	}

	.about-modern-image-card img {
		width: 100%;
		height: 100%;
		min-height: 460px;
		object-fit: cover;
		display: block;
	}

	.about-modern-section--home-like .about-modern-content-card {
		align-items: center;
		text-align: center;
		max-width: 980px;
		margin: 0 auto;
	}

	.about-modern-section--home-like .about-modern-content,
	.about-modern-section--home-like .about-modern-content p {
		text-align: center;
	}

	.about-modern-section--home-like .about-modern-stats,
	.about-modern-section--home-like .about-modern-actions {
		justify-content: center;
	}

	.about-modern-section--home-like .about-modern-image-card {
		max-width: 100%;
		width: 100%;
		margin: 0 auto;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		background: transparent;
	}

	.about-modern-image-card--bottom img {
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		object-fit: contain;
		object-position: center bottom;
	}

	.about-modern-content-card {

		display: flex;
		flex-direction: column;
	}

	.about-modern-eyebrow {
		display: inline-block;
		font-family: var(--font-primary);
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: var(--primary-color);
		margin-bottom: 10px;
	}

	.about-modern-content-card h2 {
		font-family: var(--font-secondary);
		font-size: 44px;
		line-height: 1.08;
		color: #1c1f7a;
		text-transform: uppercase;
		margin-bottom: 18px;
	}

	.about-modern-content,
	.about-modern-content p {
		font-family: var(--font-primary);
		font-size: 16px;
		line-height: 1.8;
		color: #5b6275;
	}

	.about-modern-content p + p {
		margin-top: 12px;
	}

	.about-modern-stats {
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
		margin-top: 18px;
		margin-bottom: 24px;
	}

	.about-modern-stat {
		min-width: 160px;
		padding: 12px 16px;
		border-radius: 14px;
		border: 1px solid rgba(29, 78, 216, 0.22);
		background: linear-gradient(135deg, rgba(17, 171, 169, 0.08) 0%, rgba(29, 78, 216, 0.07) 100%);
		display: flex;
		flex-direction: column;
	}

	.about-modern-stat strong {
		font-family: var(--font-secondary);
		font-size: 34px;
		line-height: 1;
		color: #111827;
	}

	.contact-modern-banner {
		height: 430px;
		position: relative;
	}

	.contact-modern-banner .overlay {
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(8, 15, 38, 0.2) 0%, rgba(8, 15, 38, 0.66) 100%);
	}

	.contact-modern-banner-copy {
		position: relative;
		z-index: 2;
		max-width: 780px;
		margin: 0 auto;
		padding-top: 148px;
	}

	.contact-modern-banner-copy h1 {
		font-family: var(--font-secondary);
		font-size: 54px;
		line-height: 1.03;
		text-transform: uppercase;
		color: #fff;
		margin-bottom: 10px;
	}

	.contact-modern-banner-copy p {
		font-size: 17px;
		line-height: 1.65;
		color: rgba(255, 255, 255, 0.92);
		margin: 0;
	}

	.contact-modern-eyebrow {
		display: inline-block;
		font-family: var(--font-primary);
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: var(--primary-color);
		margin-bottom: 10px;
	}

	.contact-modern-section {
		background: linear-gradient(180deg, #f7f8fe 0%, #ffffff 100%);
	}

	.contact-modern-info-card {
		background: #f4f3f4;
		border: 1px solid #e7e5e8;
		padding: 34px 30px;
		position: relative;
		border-radius: 4px;
	}

	.contact-modern-info-card::before {
		content: "";
		position: absolute;
		top: -12px;
		left: 18px;
		width: 18px;
		height: 18px;
		border-radius: 50%;
		background: #73ccc7;
		border: 2px solid rgba(44, 181, 173, 0.5);
	}

	.contact-modern-info-item + .contact-modern-info-item {
		margin-top: 20px;
	}

	.contact-modern-info-item h5 {
		font-family: var(--font-primary);
		font-size: 33px;
		line-height: 1.15;
		font-weight: 700;
		color: #111827;
		margin-bottom: 10px;
		position: relative;
		padding-left: 16px;
	}

	.contact-modern-info-item h5::before {
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 8px;
		height: 8px;
		background: #11aba9;
	}

	.contact-modern-info-item p,
	.contact-modern-info-item a {
		font-family: var(--font-primary);
		font-size: 16px;
		line-height: 1.75;
		color: #7a828f;
		text-decoration: none;
		margin: 0;
	}

	.contact-modern-info-item a:hover {
		color: #1d4ed8;
	}

	.contact-modern-social {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		margin-top: 24px;
	}

	.contact-modern-social a {
		width: 44px;
		height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 1px solid #a8a8ae;
		color: #7d7f86;
		border-radius: 50%;
		font-size: 18px;
		transition: all 0.3s ease;
		text-decoration: none;
	}

	.contact-modern-social a:hover {
		border-color: #11aba9;
		color: #11aba9;
		transform: translateY(-2px);
	}

	.contact-modern-form-card {
		background: #ffffff;
		border: 1px solid #e5e7eb;
		border-radius: 4px;
		padding: 24px;
		box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
	}

	.contact-modern-form-card h4 {
		font-family: var(--font-secondary);
		font-size: 34px;
		line-height: 1.12;
		text-transform: uppercase;
		color: #111827;
		margin-bottom: 14px;
	}

	.contact-modern-iframe {
		width: 100%;
		min-height: 980px;
		border: 0;
		background: #fff;
	}

	.contact-modern-empty {
		font-size: 15px;
		line-height: 1.7;
		color: #5b6275;
		margin: 0;
	}

	.contact-modern-map-wrap {
		border: 1px solid rgba(17, 171, 169, 0.2);
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
		background: #fff;
	}

	.contact-modern-map-wrap iframe {
		width: 100% !important;
		display: block;
		border: 0;
	}

	.about-modern-stat span {
		font-family: var(--font-primary);
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: #334155;
		margin-top: 6px;
	}

	.about-modern-actions {
		display: flex;
		gap: 12px;
		flex-wrap: wrap;
		margin-top: auto;
	}

	@media only screen and (max-width: 1025px) {
		.about-hero-banner {
			height: 360px;
		}

		.about-hero-copy {
			padding-top: 118px;
		}

		.about-hero-copy h1 {
			font-size: 38px;
		}

		.about-hero-copy p {
			font-size: 15px;
		}

		.about-modern-image-card img {
			min-height: 330px;
		}

		.about-modern-content-card {
			padding: 24px 24px 22px;
		}

		.about-modern-content-card h2 {
			font-size: 30px;
		}

		.contact-modern-banner {
			height: 340px;
		}

		.contact-modern-banner-copy {
			padding-top: 114px;
		}

		.contact-modern-banner-copy h1 {
			font-size: 38px;
		}

		.contact-modern-banner-copy p {
			font-size: 15px;
		}

		.contact-modern-form-card h4 {
			font-size: 28px;
		}

		.contact-modern-info-item h5 {
			font-size: 26px;
		}

		.contact-modern-iframe {
			min-height: 900px;
		}

		.about-modern-content,
		.about-modern-content p {
			font-size: 14px;
			line-height: 1.72;
		}
	}

	@media only screen and (max-width: 600px) {
		.about-hero-banner {
			height: 320px;
		}

		.about-hero-copy {
			padding-top: 104px;
			padding-left: 14px;
			padding-right: 14px;
		}

		.about-hero-copy h1 {
			font-size: 28px;
			line-height: 1.08;
		}

		.about-hero-copy p {
			font-size: 13px;
			line-height: 1.55;
		}

		.about-modern-content-card h2 {
			font-size: 20px;
			line-height: 1.12;
		}

		.about-modern-content,
		.about-modern-content p {
			font-size: 12px;
			line-height: 1.65;
		}

		.about-modern-image-card,
		.about-modern-content-card {
			border-radius: 18px;
		}

		.about-modern-image-card img {
			min-height: 260px;
		}

		.about-modern-section--home-like .about-modern-image-card {
			max-width: 100%;
		}

		.about-modern-content-card {
			padding: 18px 16px 16px;
		}

		.about-modern-stat {
			min-width: calc(50% - 6px);
			padding: 10px 12px;
		}

		.about-modern-stat strong {
			font-size: 24px;
		}

		.home-intro-stat {
			min-width: calc(50% - 6px);
			padding: 10px 12px;
		}

		.home-intro-stat strong {
			font-size: 24px;
		}

		.contact-modern-banner {
			height: 300px;
		}

		.contact-modern-banner-copy {
			padding-top: 100px;
			padding-left: 14px;
			padding-right: 14px;
		}

		.contact-modern-banner-copy h1 {
			font-size: 28px;
			line-height: 1.08;
		}

		.contact-modern-banner-copy p {
			font-size: 13px;
			line-height: 1.55;
		}

		.contact-modern-info-card {
			padding: 20px 16px;
		}

		.contact-modern-info-item + .contact-modern-info-item {
			margin-top: 16px;
		}

		.contact-modern-info-item h5 {
			font-size: 20px;
			margin-bottom: 8px;
		}

		.contact-modern-info-item p,
		.contact-modern-info-item a {
			font-size: 12px;
			line-height: 1.65;
		}

		.contact-modern-form-card {
			padding: 16px;
		}

		.contact-modern-form-card h4 {
			font-size: 20px;
			line-height: 1.12;
		}

		.contact-modern-iframe {
			min-height: 860px;
		}
	}

.hero {
	position: relative;

}

.hero img {
	width: 100%;
	object-fit: cover;
	height: 800px;
}

.hero-video-wrap {
	position: relative;
	width: 100%;
	height: 800px;
	overflow: hidden;
	background: #000;
}

.hero-video-wrap iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.hero-content {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	bottom: 185px;
	text-align: center;
	color: var(--white);
	font-family: var(--font-primary);

}



.hero-content h1 {
    font-size: clamp(40px, 7vw, 96px) !important;
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 1px;
    font-family: var(--font-secondary);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: clamp(16px, 1.7vw, 25px) !important;
    color: #f3f3f3;
}

.hero-date {
	position: absolute;
	left: 40px;
	bottom: 20px;
	color: var(--white);
	text-transform: uppercase;

}

.hero-date h6 {
	font-size: 22px;
	font-weight: 400;
	margin: 0;
	padding: 0;
}

.hero-date h5 {
	font-size: 28px;
	margin: 0;
	font-weight: 400;
	padding: 0;
}

h4.section-title {
	font-weight: 400;
	color: var(--primary-color);
	font-size: 45px;

}

.btn-fill,
.btn-fill:hover {
	border: 1px solid var(--btn-color);
	background-color: var(--btn-color);
	font-size: 14px;
	font-weight: 400;
	color: var(--white);
	padding: 8px 16px;
	text-transform: uppercase;
	border-radius: 0px;
	text-decoration: none;
	transition: .5s;
}

.btn-fill:hover {
	color: var(--btn-color);
	background-color: var(--white);
}

.btn-more,
.btn-more:hover {
	color: var(--primary-color);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	position: relative;
	text-transform: uppercase;
	transition: .5s;
	padding-right: 35px;
}

.btn-more:hover {
	color: var(--btn-color);
}

.btn-more:before {
	content: ' ';
	width: 30px;
	height: 3px;
	right: 0;
	top: 50%;
	transition: .5s;
	position: absolute;
	background: var(--primary-color);
}

.btn-more:hover:before {
	background-color: var(--btn-color);
}

.btn-more.text-white::before {
	background-color: var(--white);
}

.container-xl {
	max-width: 90% !important;
}

.package-card,
.destination-card {
	position: relative;
	overflow: hidden;
}

.destination-card i {
	position: absolute;
	top: 0;
	z-index: 2;
	content: '';
	background-color: var(--black);
	color: var(--white);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
	line-height: 48px;
	margin-top: -25px;
	margin-left: -25px;
	font-size: 25px;
	border: 3px solid var(--yellow-color);
}

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 10%, transparent);
	content: '';
	left: 0;
	top: 0;
}

.instagram-img .overlay {
	background: rgba(0, 0, 0, 0.4);
	transition: .5s;
	font-size: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	font-weight: 400;
}

.instagram-img .overlay:before {
	content: '\F437';
	font-family: 'bootstrap-icons';
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: .8;
}

.instagram-img:hover .overlay {
	opacity: 1;

}

.package-card img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	padding: 0;
	transition: .5s;
}

.destination-card img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	padding: 0;
	transition: .5s;
}

.package-card:hover img,
.destination-card:hover img {
	transform: scale(1.1) rotate(2deg);
}

.instagram-img img {
	width: 220px;
	height: 220px;
	object-fit: cover;
	padding: 0;
}

.package-details,
.destination-details {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px;
	color: var(--white);
}



.package-details h5 a,
.destination-details h5 a {
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--white);
	text-decoration: none;
}


.package-details p,
.destination-details p {
	font-size: 14px;

	line-height: 1.3;
	margin: 0;
	padding: 0;
	color: var(--white);

}



.tour {
	padding: 30px 0;
	background: linear-gradient(90deg, #1c1464e8 40%, #fff 40%), url(../images/adventure_banner.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 50px;

}

.packages {
	margin: 60px 0 50px 0;
}
.mh{
	margin-top: -150px;
}
.review {
	padding: 50px 0 150px 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 10%, transparent), url(../images/beaches_1.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.about-review {
	background-image: none;
	padding: 30px 0;
}



.transport-contact {
	margin-bottom: 20px;
}

.transport-title {
	color: var(--yellow-color);
}

.transport-contact .item {
	display: flex;
	align-items: center;
	margin-right: 10px;
	padding: 20px;
	background-color: var(--yellow-color);
	border-radius: 5px;
	color: black;
}

.transpot-title {
	color: var(--primary-color);
}

.vehicle-feet {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.vehicle-feet .item {
	width: 200px;
	height: 200px;

}

.vehicle-feet .item:hover {
	background-color: #f9f9f9;
}

.vehicle-feet .item img {
	width: 100%;
	margin: auto;
	object-fit: cover;
}

.transport-features {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.transport-features li {
	padding: 10px;
	padding-left: 25px;
	font-size: 17px;
	font-weight: 600;
	position: relative;
}

.transport-features li:before {
	color: var(--btn-color);
	content: '\F26F';
	position: absolute;
	font-family: 'bootstrap-icons';
	left: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 25px;
}

.contact-form h5 {
	font-weight: 400;
	font-size: 28px;

}

.whatsapp-icon {
	width: 150px;
	position: fixed;
	right: 20px;
	bottom: 65px;
	z-index: 999;
	animation: spin 10s infinite;
}

.transport-contact .item h5 {
	font-size: 16px;
	color: black;
	font-weight: 400;
	padding: 0;
	margin: 0;

}

.transport-contact a {
	color: black;
	text-decoration: none;
}

.transport-contact .item h6 {
	font-size: 16px;
	padding: 0;
	margin: 0;
	color: black;
	font-weight: 500;
}

.transport-contact .item i {
	font-size: 30px;
	color: black;
	margin-right: 10px;
}

.news {
	padding: 50px 0 60px 0;

}

.instagram-card {
	position: absolute;
	margin-top: 40px;
	width: 90%;
	overflow: hidden;

}

.review p {
	color: var(--black);
}

.review-btns {
	display: flex;
	align-items: center;
	justify-content: center;
}

.review-card {
	display: flex;
	text-decoration: none;
	align-items: center;
	padding: 0 20px;
	flex-wrap: wrap;
}

.review-card img {
	width: 40px;
	height: 40px;
}

.review-card h6 {
	color: var(--black);
	font-size: 16px;
	line-height: 1;
	margin: 0;
	padding: 0;
	margin-left: 10px;
	white-space: normal;
	text-align: left;

}

.border-left {
	border-left: 2px solid var(--black);
}

.news-card,
.tour-card {
	position: relative;
	background-color: var(--white);
}

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

.tour-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.news-card .news-img,
.tour-card .tour-img {
	position: relative;
}

.news-img span {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	color: var(--white);
	font-size: 12px;
	text-transform: uppercase;
	padding: 10px 20px;
}

.tour-img span.days {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--primary-color);
	color: var(--white);
	font-size: 18px;
	text-transform: uppercase;
	padding: 10px 20px;
}

.tour-img span.price {
	position: absolute;
	top: 18px;
	left: 18px;
	background-color: var(--primary-color);
	color: var(--white);
	font-size: 16px;
	text-transform: capitalize;
	padding: 5px 10px;
	border: 2px solid var(--btn-color);


}


.days {
  display: block;           /* makes the span full-width */
  text-align: center;       /* centers the text/icon */
  font-size: 18px;          /* change to whatever size you want */
  font-weight: 500;         /* optional */
  margin-top: 5px;          /* optional spacing */
}
.days i {
  margin-right: 5px;        /* small space between icon and text */
}


.tour-img {
  position: relative;
}

.badge {
  position: absolute;
  padding: 10px 10px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  z-index: 10;
  border-radius: 0px;
}

/* Top-left duration */
.duration-badge {
  top: 10px;
  left: 10px;
  background-color: #f4791e; /* red */
}

/* Top-right price */
.price-badge {
  top: 10px;
  right: 10px;
  background-color: #27ae60; /* green */
}



.news-details,
.tour-details {
	padding: 5px;

}

.news-details h5 a,
.tour-details h5 a {
	font-size: 18px;
	color: var(--black);
	font-weight: 400;
	text-decoration: none;
	font-size: 25px;
	transition: .5s;
}

.news-details h5 a:hover,
.tour-details h5 a:hover {
	color: var(--btn-color);
}
/* Footer styles handled by fliersphp-global.css */


.footer-nav {
	margin-top: 20px;
	padding: 20px 0;
	margin-bottom: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, .5);
	border-bottom: 1px solid rgba(255, 255, 255, .5);
}

#itemSplide {
	overflow: hidden;
}

#itemSplide .splide__slide h5 {

	transform: translateX(0px);
	transition: .5s;

}

#itemSplide .splide__slide.is-active h5 {
	transform: translateX(10px);
	opacity: 1;

}

#itemSplide .splide__slide {
	transition: .3s;
	cursor: pointer;
}





.footer-links {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.footer-links a {
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--white);
	margin: 0 10px;
	transition: .5s;
}

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

.footer-social {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.footer-social a {
	text-decoration: none;
	margin: 0;
	padding: 0;
	margin: 0 5px;
}

.footer-social a:hover {
	opacity: .7;

}

.footer-social a i {
	width: 30px;
	height: 30px;
	border-radius: 50%;

	display: block;
	color: var(--white);
	font-size: 14px;
	line-height: 30px;
	text-align: center;
	margin: 0;
	padding: 0;
}

.home-chat a>i.bi.bi-youtube,
.footer-social a i.bi.bi-youtube {
	background: var(--youtube);
}



.home-chat a>i.fa.fa-facebook-f,
.footer-social a i.fa.fa-facebook-f {
	background: var(--facebook);
}

.home-chat a>i.fa.fa-tripadvisor,
.footer-social a i.fa.fa-tripadvisor {
	background: var(--tripadvisor);
}

.home-chat a>i.bi.bi-whatsapp,
.footer-social a i.bi.bi-whatsapp {
	background: var(--whatsapp);
}

.home-chat a>i.bi.bi-instagram,
.footer-social a i.bi.bi-instagram {
	background: var(--instagram);
}

.footer-social a i.fa.fa-google-plus {
	background: var(--google);
}

.home-chat a>i.bi.bi-tiktok,
.footer-social a i.bi.bi-tiktok,
.footer-social a i.bi.bi-twitter-x,
.footer-social a i.bi.bi-threads {
	background-color: var(--tiktok);
}

.home-chat a>i.bi.bi-telephone {
	background-color: var(--phone);
}

.home-chat a>i.bi.bi-envelope {
	background-color: var(--email);
}

.contact-social {
	margin-top: 20px;

}


.contact-social a {
	color: var(--primary-color);
	margin-right: 10px;
	font-size: 25px;

}

.contact-social a:hover {
	color: var(--btn-color);
}

p.copyright {
	font-size: 14px;
	font-weight: 400;
	color: var(--white);
	padding: 0;
	margin: 0;
}

.copyright a {
	color: var(--white);
	text-decoration: none;
}

.contact-page-details h6 {
	font-size: 32px;
	text-transform: uppercase;
	font-weight: 400;
	color: var(--primary-color);
}

.contact-page-details h5 {
	font-size: 25px;
	text-transform: uppercase;
	font-weight: 400;
	color: var(--black);
}

.quick-links {
	display: flex;
	flex-direction: row;
}

.quick-links ul {
	margin-right: 20px;
}

footer p {
	font-size: 14px;
}

.quick-links a {
	text-decoration: none;
	font-size: 14px;
	color: var(--white);
	margin-bottom: 10px;
	transition: .5s;
	padding-left: 20px;
	display: flex;
	align-items: center;
	position: relative;
	transition: .5s;
}

.quick-links a:hover {
	color: var(--btn-color);
}

.quick-links a:before {
	color: var(--btn-color);
	content: '\F309';
	position: absolute;
	font-family: 'bootstrap-icons';
	left: 0;
	font-size: 25px;
	font-weight: 600;
	line-height: 25px;

}

.footer-title {
	font-size: 14px;
	background: var(--primary-color);
	/* This will be the background color */
	color: var(--white);
	padding: 2px 10px;
	text-transform: uppercase;
	display: inline-block;
	/* Ensures only the text area is covered */
	margin-bottom: 10px;
	/* Optional: adds space below the title */
}


.footer-contact {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.footer-contact i {

	color: var(--white);
	min-width: 30px !important;
	height: 30px;
	border-radius: 50%;

	display: block;
	color: var(--white);
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	margin-right: 7px;
	margin-left: 7px;
	padding: 0;
	background-color: var(--primary-color);
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.contact-item i {

	color: var(--white);
	min-width: 50px !important;
	height: 50px;
	border-radius: 50%;

	display: block;
	color: var(--white);
	font-size: 18px;
	line-height: 50px;
	text-align: center;
	margin-right: 10px;
	padding: 0;
	background-color: var(--primary-color);

}

.footer-contact a {
	font-size: 20px;
	color: var(--white);
	transition: .5s;
	text-decoration: none;
}

.footer-contact a:hover {
	color: var(--btn-color);
}

.contact-item a {
	font-size: 22px;
	color: var(--black);
	text-decoration: none;
	font-weight: 500;
	transition: .5s;
}

.contact-item a:hover {
	color: var(--btn-color);
}

.destination {
	padding: 50px 0;
	background: radial-gradient(circle at center, #C8E9F2 30%, #ffff 50%, #fff 100%);
}

.destination-map {
	position: relative;
}

.destination-map img {
	width: 550px;
	height: 100%;
	object-fit: cover;
	margin: 30px;
	position: relative;
}

.map-pin h5 {
	font-size: 12px;
	color: var(--black);
	text-transform: uppercase;
	font-weight: 400;

}

.map-pin>div {
	transition: .5s;
}

.destination .destination-item.beach-item.active+.destination-map .map-pin .beaches {
	display: none;
}

.dot-right h5 {
	margin-right: 2px;
	border-radius: 2px;
	background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 90%, transparent);
	padding: 0 18px 0 3px;
	position: relative;
	margin: 0;
}

.dot-right h5:before {
	position: absolute;
	content: url('../images/map-dot.png');
	right: 0;
	top: 0;
	width: 15px;
	height: 15px;

}

.dot-left h5 {
	margin-left: 2px;
	border-radius: 2px;
	background: linear-gradient(to left, rgba(255, 255, 255, 0.95) 90%, transparent);
	padding: 0 3px 0 18px;
	position: relative;
	margin: 0;

}

.dot-left h5:before {
	position: absolute;
	content: url('../images/map-dot.png');
	left: 0;
	top: 0;
	width: 15px;
	height: 15px;
}

.dot-right {
	position: absolute;
	display: flex;
	cursor: pointer;
}

.dot-left {
	cursor: pointer;
	position: absolute;
	display: flex;

}

.map-pin img {
	width: 15px;
	height: 15px;
	margin: 0;
	padding: 0;
	object-fit: cover;
}


.destination-item {
	display: flex;
	align-items: center;
	margin: 20px;
}


.destination-img {
	position: relative;
}

.destination-img img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	position: relative;
}

.destination-img:before {
	position: absolute;
	content: '';
	left: -5px;
	top: -5px;
	background: var(--white);
	border-radius: 50%;
	width: 90px;
	height: 90px;
	border: 2px dotted var(--primary-color);

}

.destination-item h5 {
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	margin-left: 20px;
}


.destination-item {
	cursor: pointer;
}

.section-banner {
    height: 65vh;
    min-height: 420px;
    max-height: 700px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    overflow: hidden;
}
.section-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8,18,40,0.72) 0%, rgba(8,18,40,0.25) 45%, rgba(0,0,0,0.20) 100%);
    z-index: 0;
}

.section-banner-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.section-banner .container {
	position: relative;
	z-index: 1;
}
/* Pages using the new left-aligned .section-banner-heading (Packages, Gallery,
   Contact, Destinations, News, Activities) use .cgr-container instead of
   Bootstrap's .container as their banner's inner wrapper — .cgr-container
   already has the site's own clamp-based left inset (matching the header logo
   and every .cgr-container section below it) with no max-width/centering, so
   it lines up correctly without touching the plain .container rule above
   (which Adventure/Beaches/History/Wildlife/Transportation still rely on for
   their own centered col-lg-8/offset-lg-2 banner-text layout). */
.section-banner .cgr-container {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	align-items: flex-start;
	/* Room to clear the fixed/sticky header, matching the homepage hero's own
	   top offset convention — plus the banner's own dark-to-light gradient is
	   darkest at the top, so this is also where heading text reads best. */
	padding-top: clamp(140px, 20vh, 220px);
}
.section-banner-heading { color: #fff; max-width: 640px; }
.section-banner-heading .eyebrow-sm-cgr { color: var(--gold, #c9a24b) !important; }
.section-banner-heading h1 {
	font-family: 'Playfair Display', serif !important;
	color: #fff !important;
	font-weight: 800 !important;
	font-size: clamp(2.1rem, 4.2vw, 3.2rem) !important;
	text-transform: uppercase;
	letter-spacing: .5px;
	line-height: 1.15 !important;
	margin: 0 !important;
}
.section-banner-heading p {
	color: rgba(255,255,255,.82);
	font-size: 1rem;
	line-height: 1.6;
	margin: 14px 0 0 !important;
	max-width: 560px;
}
@media (max-width: 767px) {
	.section-banner .container { padding-top: 120px; }
}

.section-banner .overlay {
	background: rgba(0, 0, 0, .3);
	z-index: 0;
}

.booking {
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
	background-image: url(../images/booking-bg.jpg);
	padding: 50px 0;
}

.booking,
.booking p {
	color: var(--white);
}



.booking ul li {
	margin-right: 10px;
	font-size: 16px;
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.booking ul li i {
	margin-right: 10px;
}

.booking ul li a {
	text-decoration: none;
	color: var(--white);
}

.booking ul li a:hover {
	color: var(--btn-color);
}

.booking h5 {
	font-size: 35px;
	font-weight: 500;
}

.booking h6 {
	font-size: 22px;
	font-weight: 500;
}

.book-form-content input {
	background-color: #ffffff;
	padding: 8px 10px;
	font-size: 14px;
	color: var(--text-color);
	font-weight: 400;
	border-radius: 4px;
	width: 100%;
	margin-bottom: 10px;
	box-shadow: none;
	border: none;
}

.book-form-content select {
	background-color: var(--white);
	padding: 8px 10px;
	font-size: 14px;
	color: var(--text-color);
	font-weight: 400;
	border-radius: 4px;
	width: 100%;
	margin-bottom: 10px;
	box-shadow: none;
	border: 1px solid black;
}



.book-form-content textarea {
	background-color: var(--white);
	padding: 8px 10px;
	font-size: 14px;
	color: var(--text-color);
	font-weight: 400;
	border-radius: 4px;
	width: 100%;
	margin-bottom: 10px;
	box-shadow: none;
	border: none;
}

.contact-form .book-form-content input,
.contact-form .book-form-content textarea {
	border: 1px solid var(--black);
}

.book-form {
	background-color: var(--bg-color);
	padding: 30px;
	border-radius: 10px;
}



.banner-text {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.banner-text .btn-fill {
	margin-top: 15px;
}

.banner-text h2 {
	font-size: 45px;
	font-weight: 500;
}

.banner-text h5 {
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
}

.banner-text h5 span {
	font-size: 20px;
	font-weight: 500;
}

.banner-text ul {
	margin-left: 0;
	padding-left: 0;
}

.banner-text ul li {
	display: flex;
	font-size: 16px;
	justify-content: center;
}

.banner-text ul li i {
	margin-right: 10px;
}

.package-page {
	padding: 50px 0;
	background-color: #eee;
}

.latest-packages {
	background: linear-gradient(to bottom, #eee, #fff);
}

.destination-page {
	padding: 50px 0;
}

.border-b-1 {
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 30px;
	background: #fff;
}

.gallery-img img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: 1s;
	transform: scale(1.1);
}

.gallery-img {
	overflow: hidden;
	position: relative;


}

.splide__arrow {
	opacity: .7;
	background: var(--white);
	width: 40px;
	height: 40px;

}

.splide__arrow svg {
	fill: var(--text-color);
}

.package-title {
	font-weight: 500;
	font-size: 24px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.destination-detail-section {
	padding: 40px 20px;
}

.destination-detail-banner .banner-text h2,
.destination-detail-section .package-title {
	font-size: 30px;
	line-height: 1.18;
}

.package-view-section .banner-text h2,
.package-view-section .package-title,
.package-view-section .f-bg h2 {
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.package-detail-banner {
	height: 420px;
}

.package-detail-banner .overlay {
	background: linear-gradient(180deg, rgba(3, 9, 20, 0.24) 0%, rgba(3, 9, 20, 0.62) 100%);
}

.package-detail-banner .banner-text {
	padding-left: 20px;
	padding-right: 20px;
}

.package-detail-banner .banner-text h2 {
	font-size: 56px !important;
	line-height: 1.04;
	margin-bottom: 10px;
}

.package-detail-banner .banner-text h5 {
	font-size: 14px;
	margin-bottom: 8px;
}

.package-detail-banner .banner-text ul li {
	font-size: 15px;
	line-height: 1.35;
	flex-wrap: wrap;
	column-gap: 6px;
}

.package-view-section .package-overview-head .package-title {
	font-size: 48px !important;
	line-height: 1.06;
	word-break: break-word;
}

.package-view-section .f-bg .fs-4 {
	font-size: 1.25rem !important;
}

.package-overview-head__duration {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1d4ed8;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.package-gallery--enhanced {
	
	overflow: hidden;

}

.package-gallery-slider {
	overflow: hidden;
	border-radius: 8px;
}

.package-gallery-slider .slide-item {
	padding: 0;
}

.package-gallery-slider .slick-list,
.package-gallery-slider .slick-track {
	border-radius: 8px;
}

.package-gallery-slider .slick-prev-black,
.package-gallery-slider .slick-next-black {
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
}

.package-gallery-slider .slick-prev-black {
	left: 14px;
}

.package-gallery-slider .slick-next-black {
	right: 14px;
}

.package-view-section .package-gallery--enhanced .gallery-img img {
	height: 420px;
	object-fit: cover;
	transform: scale(1);
}

.package-gallery-thumbs {
	margin-left: 0;
	margin-right: 0;
}

.package-gallery-thumb {
	display: block;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 8px 20px rgba(2, 6, 23, 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-gallery-thumb img {
	width: 100%;
	height: 90px;
	object-fit: cover;
	display: block;
}

.package-gallery-thumb:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(2, 6, 23, 0.2);
}

@media (max-width: 767px) {
	.package-detail-banner {
		height: 330px;
	}

	.package-detail-banner .banner-text {
		top: 58%;
		padding-left: 10px;
		padding-right: 10px;
	}

	.package-detail-banner .banner-text h2 {
		font-size: 30px !important;
		margin-bottom: 8px;
	}

	.package-detail-banner .banner-text h5 {
		font-size: 12px;
	}

	.package-detail-banner .banner-text ul li {
		font-size: 12px;
		line-height: 1.32;
	}

	.package-detail-banner .banner-text .btn-fill {
		padding: 7px 14px;
		font-size: 12px;
	}

	.package-view-section .package-gallery--enhanced .gallery-img img {
		height: 260px;
	}

	.package-view-section .package-overview-head .package-title {
		font-size: 24px !important;
		line-height: 1.08;
	}

	.package-gallery-thumb img {
		height: 72px;
	}

	.package-view-section .package-title {
		font-size: 19px;
		margin-bottom: 10px;
	}

	.package-view-section .package-overview-head__duration {
		font-size: 12px;
	}

	.package-view-section .itinerary h5,
	.package-view-section .itinerary h5 strong {
		font-size: 12px !important;
		line-height: 1.28;
	}

	.package-view-section .itinerary h5 {
		padding: 0 6px 10px 30px;
		align-items: flex-start;
		line-height: 1.28;
		column-gap: 8px;
	}

	.package-view-section .itinerary h5 strong {
		flex: 0 0 64px;
		display: inline-block;
		margin-right: 0;
		line-height: 1.2;
	}

	.package-view-section .itinerary h5::before {
		width: 21px;
		height: 21px;
		font-size: 16px;
		line-height: 21px;
	}

	.package-view-section .itinerary > ul > li {
		font-size: 12px !important;
		margin-bottom: 8px;
	}

	.package-view-section .itinerary .nested-list {
		padding-left: 6px;
	}

	.package-view-section .itinerary .nested-list,
	.package-view-section .itinerary .nested-list * {
		font-family: "Montserrat", sans-serif !important;
	}

	.package-view-section .itinerary .nested-list > ul > li {
		font-size: 11px !important;
		line-height: 1.45;
		padding-left: 18px;
		margin-bottom: 8px;
	}

	.package-view-section .itinerary .nested-list > ul > li::before {
		font-size: 12px;
		line-height: 14px;
		top: 2px;
	}

	.package-view-section .itinerary .nested-list li p {
		font-size: 11px !important;
		line-height: 1.45;
		margin-bottom: 6px;
	}

	.package-view-section .f-bg {
		padding: 16px !important;
	}

	.package-view-section .f-bg h2 {
		font-size: 24px;
	}

	.package-view-section .f-bg .fs-4 {
		font-size: 0.95rem !important;
	}

	.package-view-section .book-form-content input,
	.package-view-section .book-form-content textarea {
		font-size: 13px;
		padding: 8px;
	}

	.package-view-section iframe {
		min-height: 760px !important;
	}
}

.destination-detail-banner .banner-text h2 {
	margin-bottom: 12px;
}

.img-overlay {
	transition: .5s;
	color: var(--white);
	text-align: center;
	position: absolute;
	top: 0;
	z-index: 2;
	bottom: 0;
	font-size: 30px;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: .5s ease;
	background-color: rgba(0, 0, 0, 0.4);

	color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-img:hover .img-overlay {
	opacity: 1;
}

.gallery-img:hover img {
	transform: scale(1);
}

.nested-list {
	display: none;
	padding-bottom: 10px;
	margin-left: 40px;
}

.itinerary h5 {
	cursor: pointer;
	padding: 0 10px 10px 35px;
	display: flex;
	position: relative;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
	align-items: center;
}

.itinerary h5 strong {
	font-size: 18px;
	font-weight: 600;
	margin-right: 10px;
	text-transform: uppercase;
}

.itinerary>ul>li {
	margin-bottom: 10px;

	border-bottom: 1px dotted var(--text-color);
	font-size:18px;
}

.itinerary>ul>li:last-child {


	border-bottom: none;
}

.itinerary h5::before {
	width: 25px;
	height: 25px;
	background: var(--btn-color);
	color: var(--white);
	content: '\F4FE';
	position: absolute;
	font-family: 'bootstrap-icons';
	left: 0;
	text-align: center;
	font-size: 25px;
	border-radius: 50%;
	line-height: 25px;
	font-weight: 600;
}

.itinerary h5.is-open::before {
	content: '\F2EA';
}

.package-view-section .itinerary--plain h5::before,
.package-view-section .itinerary--plain h5.is-open::before {
	content: none;
	display: none;
}

.package-view-section .itinerary--plain h5 {
	cursor: default;
	padding-left: 0;
}

.package-view-section .itinerary--plain h5 strong {
	margin-right: 0;
}

.package-view-section .itinerary .nested-list {
	padding-left: 14px;
	margin-bottom: 10px;
}

.package-view-section .itinerary .nested-list li {
	margin-bottom: 6px;
	line-height: 1.55;
}

.package-view-section iframe {
	max-width: 100%;
}

@media (min-width: 768px) and (max-width: 1025px) {
	.package-view-section .container-xl.py-5 {
		padding-top: 28px !important;
		padding-bottom: 28px !important;
	}

	.package-detail-banner {
		height: 360px;
	}

	.package-detail-banner .banner-text {
		top: 57%;
		padding-left: 14px;
		padding-right: 14px;
	}

	.package-detail-banner .banner-text h2 {
		font-size: 40px !important;
	}

	.package-detail-banner .banner-text ul li {
		font-size: 13px;
	}

	.package-view-section .col-md-8.pe-md-5 {
		padding-right: 12px !important;
	}

	.package-view-section .row {
		--bs-gutter-x: 1rem;
	}

	.package-view-section .package-title {
		font-size: 22px;
		margin-bottom: 14px;
	}

	.package-view-section .package-overview-head .package-title {
		font-size: 36px !important;
	}

	.package-view-section .f-bg {
		padding: 22px !important;
		border-radius: 10px;
	}

	.package-view-section .f-bg h2 {
		font-size: 30px;
		line-height: 1.18;
	}

	.package-view-section .f-bg p {
		font-size: 14px;
		line-height: 1.55;
	}

	 .package-view-section .itinerary h5,
	 .package-view-section .itinerary h5 strong {
		font-size: 16px;
	}
}

.Language {

	cursor: pointer;
	position: fixed;
	bottom: 20%;
	right: 0;
	z-index: 100;
	transition: .5s;

}

.Language select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-weight: 400;
	background-color: var(--primary-color);
	color: #fff;
	cursor: pointer;
	border-radius: 0;
	padding: 5px 10px;
	border: none;
	font-size: 16px;
}

.custom_select::after {
	color: #fff;
}

.Language select option {
	color: #fff;
	line-height: 20px;
	min-height: 20px;
	font-size: 16px;

}

.Language .open .list {
	border-radius: 0;
	padding: 5px 0;
}

.Language::after {
	content: "";
	font-family: "fontawesome";
	/* Unicode character for a down arrow */
	position: absolute;
	top: 50%;

	transform: translateY(-50%);
	color: #fff;
	font-size: 22px;
	pointer-events: none;
	right: 7px;
}

.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-ORHb-OEVmcd {

	display: none !important;
}

.home-chat a {
	margin-right: 0px;
	position: relative;
	display: flex;
}

.home-chat {
	position: fixed;
	bottom: 25%;
	right: 0;
	z-index: 100;
}

.home-chat a,
.home-chat a:hover {
	text-decoration: none;
}

.home-chat a>i {
	font-size: 25px;
	text-align: center;
	height: 45px;
	width: 45px;
	color: #fff;
	line-height: 45px;
	border: none;
	border-radius: 0;
	display: block;
	position: relative;

}

.home-chat a>i:hover {
	opacity: .7;
}

.additional ul li {
	display: flex;
	margin-bottom: 10px;
	padding: 10px 0;
	border-bottom: 1px dotted var(--btn-color);
	flex-direction: row;
}

.additional ul li:last-child {
	margin-bottom: 0;
	border-bottom: none;
}

.additional h5 {

	font-size: 20px;
	font-weight: 500;
}

.additional h6 {
	font-size: 20px;
	font-weight: 600;
	margin-right: 10px;
}

.additional-list {
	margin-top: 10px;
}

.additional-list ul li {
	display: flex;
	font-size: 16px;
	font-weight: 500;
	display: flex;
	padding: 10px 0;
	border-bottom: 1px dotted var(--btn-color);
	flex-direction: row;
	padding-left: 25px;
	position: relative;
}

.additional-list ul li:last-child {
	border: none;
}

.nested-list>ul>li {
	padding-left: 25px;
	position: relative;
}

.nested-list>ul>li:before {
	color: var(--btn-color);
	content: '\F26E';
	position: absolute;
	font-family: 'bootstrap-icons';
	left: 0;
	font-size: 25px;
	font-weight: 600;
	line-height: 25px;

}

.additional-list>ul>li:before {
	color: var(--btn-color);
	content: '\F309';
	position: absolute;
	font-family: 'bootstrap-icons';
	left: 0;
	font-size: 25px;
	font-weight: 600;
	line-height: 25px;

}

.vision-card {
	padding: 20px;
	margin-top: 18px;
}

.vision-card p {
	font-size: 20px;
	font-weight: 600;
	font-style: italic;
}

.vision-card h5 {
	font-size: 25px;
	color: var(--primary-color);
	text-transform: uppercase;
	position: relative;
	padding-left: 35px;
	display: block;
}

.vision-card h5:before {
	position: absolute;
	width: 30px;
	left: 0;
	height: 3px;
	top: 50%;
	content: '';
	background-color: var(--primary-color);
}

.vision-card i {
	color: var(--primary-color);
	font-size: 40px;
	font-weight: 600;
}

@media (min-width:992px) {






	.navbar.navbar-fixed .navbar-brand img {

		filter: none;
	}

	.order-lg-1 {
		order: 1;
	}

	.order-lg-2 {
		order: 2;
	}

	.order-lg-3 {
		order: 3;
	}

	.tour .section-title,
	.tour-p,

	.tour .btn-more {
		color: var(--white);
	}

	.tour .btn-more:before {
		background: var(--white);
	}
}

@media (min-width:1025px) {
	#header .book_div > .header_button-toggle {
		display: none !important;
	}
}


@media (max-width:992px) {


	.tour {
		margin-top: 0;
		padding: 30px 0 10px 0;
	}

	.destination {
		padding: 20px 0 40px 0;
	}

	.packages {
		margin: 20px 0;
	}

	footer {
		padding: 100px 0 20px 0;
		
	}

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

	.hero-content h1 {
		font-size: 38px;
	}

	.contact-social a {
		font-size: 20px;
	}

	.contact-item i {

		color: var(--white);
		min-width: 35px !important;
		height: 35px;
		border-radius: 50%;

		display: block;
		color: var(--white);
		font-size: 16px;
		line-height: 35px;
		text-align: center;
		margin-right: 8px;
		padding: 0;
		background-color: var(--primary-color);

	}

	.contact-item a {
		font-size: 15px;
	}

	.booking ul {
		display: flex;
		flex-direction: column;
	}

	.home-chat a>i {
		font-size: 20px;
		text-align: center;
		height: 40px;
		width: 40px;
		color: #fff;
		line-height: 40px;
		border: none;
		border-radius: 0;
		display: block;
		position: relative;
	}

	.destination-tags {
		display: flex;
		align-items: start;
		justify-content: center;
	}

	.destination {
		background: linear-gradient(to bottom, #fff 10%, #C8E9F2 80%, #fff 100%);
	}

	.quick-links a {
		display: inline;
		justify-content: center;
	}

	.banner-text {
		width: 95%;
	}

	.banner-text h2 {
		font-size: 25px;
	}

	.border-b-1 {
		margin-bottom: 10px;
		padding: 15px 10px;
	}

	.navbar-brand img,
	footer img {
		width: 170px;
	}

	.destination-item {
		flex-direction: column;
		justify-content: center;
	}

	.destination-item h5 {
		margin: 0;
		margin-top: 10px;
	}

	.destination {
		text-align: center;
	}

	#itemSplide .splide__slide h5 {

		transform: translateY(0px);
		transition: .5s;

	}

	#itemSplide .splide__slide.is-active h5 {
		transform: translateY(10px);

		position: relative;
	}

	.order-1 {
		order: 1;
	}

	.order-2 {
		order: 2;
	}

	.order-3 {
		order: 3;
	}






	.destination-map img {

		width: 100% !important;
		margin: 0;
	}

	.tour {
		background: transparent;
		text-align: center;
	}

	.tour .package-card .package-details {
		text-align: left;
	}

	.destination-list {
		flex-wrap: wrap;
		justify-content: center;
		flex-direction: row;
		margin: 0;

	}

	.hero-content {
		width: 95%;
	}

	.hero-date {
		display: flex;
	}

	.hero-date h5,
	.hero-date h6 {
		font-size: 20px;
		font-weight: 400;
		margin-right: 10px;
	}

	h4.section-title {
		font-size: 35px;
	}

	.destination-item {
		margin: 10px;
	}

	.destination-img img {
		width: 60px;
		height: 60px;
		object-fit: cover;
		border-radius: 50%;
		position: relative;
	}

	.destination-img:before {
		position: absolute;
		content: '';
		left: -5px;
		top: -5px;
		background: var(--white);
		border-radius: 50%;
		width: 70px;
		height: 70px;
		border: 2px dotted var(--primary-color);

	}

	.destination-item h5 {
		font-size: 12px;
		font-weight: 400;
		text-transform: uppercase;
		margin-left: 0px;
	}



	.navbar {
		background: var(--white);
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.navbar.navbar.navbar-fixed {
		background: var(--white);
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.nav-link {
		color: var(--black);
	}

	.navbar-toggler .navbar-toggler-icon {
		transition: .5s;
	}

	.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
		background-image: url('../images/menu-burger.svg') !important;
		filter: brightness(0) saturate(100%) invert(21%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(60%) contrast(100%);
	}

	.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
		transition: .5s;
		background-image: url('../images/cross.svg') !important;
		filter: brightness(0) saturate(100%) invert(21%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(60%) contrast(100%);
	}


	.navbar-nav {
		padding: 30px;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		justify-content: center;
		width: 300px;
		height: 100vh;
		position: fixed !important;
		top: 0;
		right: 0;
		background-color: rgba(255, 255, 255, 0.97);
		transform: translateX(100%);
		transition: transform 0.3s ease-in-out;
		z-index: 5;
	}

	.collapse.show .navbar-nav {
		transform: translateX(0);
	}

	.navbar-toggler,
	.navbar-toggler:hover,
	.navbar-toggler:focus,
	.navbar-toggler:active {
		padding: 0.5rem 1rem;
		border: none !important;
		color: transparent;
		background: transparent;
	}

	.navbar-toggler-icon {

		z-index: 10;
		position: absolute;
		top: 25px;
		right: 20px;
	}



	.navbar-nav .nav-item {
		font-size: 18px;
		font-weight: 500;
		text-transform: uppercase;

	}

	.navbar-nav .nav-item:last-child {

		border-bottom: none
	}

	.navbar-collapse.show .close-icon {
		display: block;
		color: #fff;
		font-size: 1.5rem;
		cursor: pointer;
		padding: 0 1rem;
		position: absolute;
		z-index: 5;
	}
}

@media(max-width:768px) {
	h4.section-title {
		font-size: 30px;
	}


@media (max-width: 767px) {
	body.home .home-intro-section,
	body.home .destination-strip-section,
	body.home .destination-mosaic-section,
	body.home .tours-packages-section {
		padding-top: 36px !important;
		padding-bottom: 36px !important;
	}

	body.home .home-intro-section .common-heading,
	body.home .destination-strip-head,
	body.home .destination-mosaic-head,
	body.home .tours-packages-head {
	
		text-align: center;
	}

	body.home .destination-strip-head,
	body.home .destination-mosaic-head,
	body.home .tours-packages-head {
		align-items: center !important;
		justify-content: center !important;
	}

	body.home .destination-strip-head p,
	body.home .destination-mosaic-head p,
	body.home .tours-packages-head p {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	body.home .home-intro-section .common-heading h1,
	body.home .destination-strip-head h2,
	body.home .destination-mosaic-head h2,
	body.home .tours-packages-head h2,
	body.home .tours-packages-page .tour-type-heading h2 {
		font-size: 28px !important;
		line-height: 1.12 !important;
	}

	body.home .home-intro-section {
		padding-bottom: 36px !important;
	}

	body.home .home-intro-section .home-intro-grid {
		gap: 16px;
	}

	body.home .tour-type-heading {
		text-align: center !important;
	}

	body.home .tour-type-heading__eyebrow,
	body.home .tour-type-heading h2 {
		display: block;
		text-align: center !important;
	}

	body.home .wrapper--80 > .common-heading,
	body.home .wrapper--80 > .common-heading span,
	body.home .wrapper--80 > .common-heading h2 {
		text-align: center !important;
		margin-left: auto;
		margin-right: auto;
	}

	body.home .tour-package-card__body h3 {
		font-size: 24px !important;
		line-height: 1.18 !important;
	}

	body.home .tours-packages-slider .slick-prev,
	body.home .tours-packages-slider .slick-next {
		width: 34px !important;
		height: 34px !important;
		bottom: -34px !important;
		background-image: url("../images/theme/car-arrow-black.svg") !important;
		background-size: 16px 16px !important;
		background-repeat: no-repeat !important;
		background-position: center !important;
		background-color: rgba(17, 171, 169, 0.15) !important;
		border: 1px solid #11aba9 !important;
		border-radius: 50% !important;
		opacity: 1 !important;
	}

	body.home .tours-packages-slider .slick-prev::before,
	body.home .tours-packages-slider .slick-next::before {
		color: #0f355f !important;
		opacity: 1 !important;
	}

	body.home .center-arrows .slick-prev,
	body.home .center-arrows .slick-next,
	body.home .tours-packages-slider .slick-prev,
	body.home .tours-packages-slider .slick-next {
		display: none !important;
	}

	body.home .tours-packages-head h2::after {
		margin-left: auto;
		margin-right: auto;
	}

	body.home .tours-packages-head p {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}
	

	.quick-links,
	.footer-contact {
		justify-content: center;
	}
}



.custom-shape-divider-bottom-1754884983 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;

}

.custom-shape-divider-bottom-1754884983 img {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.custom-shape-divider-bottom-1754884983 .shape-fill {
    fill: #FFFFFF;
}

.des{

	

	padding: 30px 0;
	background: linear-gradient(90deg, #1c1464e8 40%, #fff 40%), url(../images/adventure_banner.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 50px;


}

.booking-form {
  position: relative;
  margin-top: -150px;
}

.booking-form .bg-white {

  padding: 20px;
}

.booking-form label {
  font-weight: 500;
  color: #555;
}

.booking-form .form-control,
.booking-form .form-select {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding-left: 0;
  font-weight: 600;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  box-shadow: none;
  border-color: #f7941d; /* orange highlight */
}

.booking-form .btn-warning {
  background-color: var(--primary-color);
  border: none;
  padding: 10px 0;
  font-size: 16px;
  letter-spacing: 0.5px;
  border-radius: 0px;
}

.booking-form .btn-warning:hover {
  background-color: #e28312;
}



/* Mobile tweaks */
@media (max-width: 768px) {
  .booking-form .bg-white {
    padding: 15px;
  }
}


.map-container-11 {
	position: relative;
	padding-bottom: 20%;
	height: 600px;
	overflow: hidden;
}

.map-containerd {
    position: relative;
    height: 550px; /* visible height */
    overflow: hidden;
}

/* Iframe is moved up to crop header */
.map-containerd iframe {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 680px;
    border: 0;
}

/* White gradient overlay at the bottom */
.map-containerd::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px; /* height of the fade */
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none; /* allows interaction with map */
}

	.section-title {
  font-size: 2rem;
  font-weight: bold;
}
.second-txt {
  color: #f39c12;
}
.section-des {
  font-size: 1rem;
  color: #555;
}

.vehicle-card {
  background: #f3f3f3;
  padding: 20px;

  transition: 0.3s ease;
}
.vehicle-card:hover {
  transform: translateY(-5px);
}
.vehicle-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
}
.taxi-txt {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}
.vehicle-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}
.book-taxi a {
  display: inline-block;
  background: var(--btn-color);
  color: #fff;
  font-weight: 600;
  padding: 8px 18px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.book-taxi a:hover {
  background: #d68910;
}

.btn-white-b {
  border: 2px solid #f39c12;
  color: #f39c12;
  background: #fff;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-white-b:hover {
  background: #f39c12;
  color: #fff;
}

.f-bg {
  background-image: url('../images/beaches_1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.f-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.295); /* Change the color and opacity here */
  z-index: -1;
}

.btn-book{
	background-color:  var(--btn-color);
	border-radius: 0;
	color: white;
}

.btn-book:hover{
	background-color: rgb(255, 255, 255);
	border-radius: 0;
	color: var(--btn-color);
}

/* Section */
.destination-page {
  padding: 60px 0;
  background-color: #ffffff;
}

/* Card container */
.destination-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;

}

.destination-card img {
  width: 100%;
  height: 365px; /* fill the card height */
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}



/* Overlay gradient */


.destination-card:hover .overlay {
  opacity: 0.8;
}

/* Title & description below card */
.destination-page h5 {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.destination-page h5 a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
  font-size: 25px;
}

.destination-page h5,
.destination-page h5 a,
body.home .destination-mosaic-content strong,
body.home .destination-strip-card__meta strong {
	font-family: 'Cinzel', serif !important;
}

.destination-page h5 a:hover {
  color: #007bff;
}

.destination-page .destination-text-block {
  text-align: center;
}

.destination-page p {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

.destination-page .destination-view-btn {
  justify-content: center;
}

.destination-detail-gallery {
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.destination-detail-slider {
  position: relative;
}

.destination-detail-slide {
  position: relative;
  overflow: hidden;
}

.destination-detail-slide a {
  display: block;
}

.destination-detail-slide img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.destination-detail-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.34) 100%);
}

.destination-detail-slider .slick-prev-black,
.destination-detail-slider .slick-next-black {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.destination-detail-slider .slick-prev-black {
  left: 18px;
}

.destination-detail-slider .slick-next-black {
  right: 18px;
}

.destination-detail-slider .slick-prev-black::before,
.destination-detail-slider .slick-next-black::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid #111827;
  border-left: 2px solid #111827;
}

.destination-detail-slider .slick-prev-black::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.destination-detail-slider .slick-next-black::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.destination-detail-slider .slick-prev-black:hover,
.destination-detail-slider .slick-next-black:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.06);
}

@media only screen and (max-width: 767px) {
  .destination-detail-slide img {
    height: 300px;
  }

  .destination-detail-slider .slick-prev-black,
  .destination-detail-slider .slick-next-black {
    width: 36px;
    height: 36px;
  }
}



@media (max-width: 767px) {
  .destination-card {
    height: 320px; /* same as desktop */
  }
}


.contact-card {
	transition: transform 0.28s ease, box-shadow 0.28s ease;
	background: linear-gradient(140deg, #1c1f7a 0%, #123f88 100%);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--white);
	border-radius: 12px;
	width: 100%;
	min-height: 208px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-us .row > [class*="col-"] {
	display: flex;
}

.contact-card__icon {
	line-height: 1;
}

.contact-card__title {
	font-family: var(--font-secondary);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 20px;
	margin-bottom: 10px !important;
}

.contact-card__value,
.contact-card__value a {
	color: #ffffff;
	font-family: var(--font-primary);
	font-size: 20px;
	line-height: 1.35;
	margin: 0;
	text-decoration: none;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.contact-card__value a:hover {
	color: #d8fbff;
}

.contact-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 14px 30px rgba(12, 23, 58, 0.28);
}

@media (max-width: 991px) {
	.contact-card {
		min-height: 190px;
	}

	.contact-card__title {
		font-size: 18px;
	}

	.contact-card__value,
	.contact-card__value a {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.contact-card {
		min-height: 170px;
	}

	.contact-card__title {
		font-size: 17px;
	}

	.contact-card__value,
	.contact-card__value a {
		font-size: 15px;
	}
}

/* Contact page main title: match site heading style and keep same size on mobile */
.contact-main-title {
	font-family: var(--font-secondary, "Cinzel", serif) !important;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #1c1f7a !important;
	font-size: 45px !important;
	line-height: 1.08;
}

@media (max-width: 992px) {
	.contact-main-title {
		font-size: 45px !important;
	}
}

@media (max-width: 768px) {
	.contact-main-title {
		font-size: 45px !important;
	}
}

/* Home Intro Stats and Actions */
.home-intro-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
	margin-bottom: 24px;
}

.home-intro-stat {
	min-width: 160px;
	padding: 12px 16px;
	border: 1px solid rgba(29, 78, 216, 0.22);
	background: linear-gradient(135deg, rgba(17, 171, 169, 0.08) 0%, rgba(29, 78, 216, 0.07) 100%);
	display: flex;
	flex-direction: column;
}

.home-intro-stat strong {
	font-family: var(--font-secondary);
	font-size: 34px;
	line-height: 1;
	color: #111827;
}

.home-intro-stat span {
	font-family: var(--font-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #334155;
	margin-top: 6px;
}

.home-intro-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: auto;
}

/* Keep homepage main H2 titles visually consistent across sections */
body.home .destination-strip-head h2,
body.home .destination-mosaic-head h2,
body.home .tours-packages-head h2,
body.home .tours-packages-page .tour-type-heading h2 {
	font-family: "Cinzel", serif !important;
	font-size: clamp(32px, 3.8vw, 56px) !important;
	line-height: 1.08 !important;
	font-weight: 500 !important;
	text-transform: uppercase;
	letter-spacing: 0.01em;
}

@media (max-width: 767px) {
	body.home .destination-strip-head h2,
	body.home .destination-mosaic-head h2,
	body.home .tours-packages-head h2,
	body.home .tours-packages-page .tour-type-heading h2 {
		font-size: 28px !important;
		line-height: 1.12 !important;
	}
}

/* Remove persistent top gap — all screens */
html, body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
body.home #header,
#header {
   
    margin-top: 0 !important;
}
@media (max-width: 1025px) {
    body.home #header,
    #header {
        top: 0 !important;
        margin-top: 0 !important;
    }
}

body.home #header .header-container,
body.home #header .wrapper--90,
body.home #header .header_top,
body.home #header .header_top.padding-top--50 {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* ===== Featured Packages Section ===== */
.fp-section {
    background: #fff;
    padding: 90px 5%;
}
.fp-section__head {
    text-align: center;
    margin-bottom: 56px;
}
.fp-section__eyebrow {
    display: block;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}
.fp-section__title {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(28px, 3vw, 50px) !important;
    font-weight: 400;
    color: #111;
    margin-bottom: 14px;
    line-height: 1.2;
}
.fp-section__sub {
    font-size: 15px;
    color: #777;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}
.fp-block {
    margin-bottom: 60px;
}
.fp-block__label {
    margin-bottom: 20px;
    border-left: 3px solid var(--primary-color);
    padding-left: 12px;
}
.fp-block__label span {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555;
    font-weight: 600;
}
.fp-slider .slide-item {
    padding: 0 10px;
}
.fp-card {
    background: #fff;
    position: relative;
    transition: transform 0.3s ease;
}
.fp-card:hover {
    transform: translateY(-4px);
}
.fp-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.fp-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.fp-card:hover .fp-card__image-wrap img {
    transform: scale(1.05);
}
.fp-card__badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #1a5c5c;
    color: #fff;
    padding: 14px 18px;
    text-align: center;
    min-width: 86px;
    line-height: 1.3;
    z-index: 1;
}
.fp-card__badge strong {
    display: block;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}
.fp-card__badge strong sup {
    font-size: 13px;
    font-weight: 600;
    vertical-align: super;
    line-height: 0;
}
.fp-card__badge span {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    margin-top: 3px;
}
.fp-card__badge small {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.78);
    margin-top: 2px;
}
.fp-card__body {
    padding: 22px 6px 18px;
    border-bottom: 1px solid #e8e8e8;
}
.fp-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.fp-card__location svg { flex-shrink: 0; width: 15px; height: 15px; }
.fp-card__title {
    font-family: var(--secondary-font);
    font-size: clamp(20px, 1.9vw, 30px) !important;
    font-weight: 400;
    color: #111;
    line-height: 1.35;
    margin-bottom: 20px;
}
.fp-card__link {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    border-bottom: 2px solid #111;
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
}
.fp-card__link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-decoration: none;
}
.fp-section__footer {
    text-align: center;
    margin-top: 20px;
}
.fp-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    padding: 15px 38px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s;
}
.fp-view-all:hover {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
@media (max-width: 600px) {
    .fp-section { padding: 60px 20px; }
    .fp-slider .slide-item { padding: 0 5px; }
}

/* ===== Destination Hero Section ===== */
.dest-hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.dest-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.dest-hero-bg__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 0;
}
.dest-hero-bg__slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}
.dest-hero-bg__slide.is-leaving {
    opacity: 0;
    transform: scale(0.97);
    z-index: 2;
}
.dest-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0,0,0,0.25) 50%, rgb(0, 0, 0) 100%);
}
.dest-hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    padding: 60px 5%;
    color: #fff;
}
/* Heading */
.dest-hero-heading {
    text-align: center;
    margin-bottom: 40px;
}
.dest-hero-heading1 {
    
    margin-bottom: 40px;
}
.dest-hero-heading span {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    display: block;
    margin-bottom: 10px;
}
.dest-hero-heading1 span {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.75);
    display: block;
    margin-bottom: 10px;
}
.dest-hero-heading h2 {
    font-size: clamp(24px, 3vw, 52px) !important;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}
.dest-hero-heading1 h2 {
    font-size: clamp(24px, 3vw, 52px) !important;
    font-weight: 400;
    color: #000000;
    line-height: 1.2;
    margin: 0;
}
/* Content row */
.dest-hero-content-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex: 1;
    gap: 40px;
    padding-bottom: 30px;
}
/* Left info */
.dest-hero-info {
    max-width: 380px;
    flex-shrink: 0;
}
.dest-hero-info__name {
    font-size: clamp(28px, 3.2vw, 54px) !important;
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.dest-hero-info__desc {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.dest-fade-out {
    opacity: 0 !important;
    transform: translateY(8px) !important;
}
.dest-hero-info__btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #111;
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
}
.dest-hero-info__btn:hover {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}
/* Thumbnail strip — 3 cards */
.dest-hero-thumbs-wrap {
    flex: 1;
    overflow: hidden;
    max-width: 58%;
    align-self: flex-end;
}
.dest-hero-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    overflow: visible;
}
.dest-hero-thumb {
    height: 460px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.dest-hero-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.dest-hero-thumb.is-active {
    box-shadow: 0 0 0 3px #fff, 0 12px 32px rgba(0,0,0,0.45);
}
.dest-hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.dest-hero-thumb:hover img,
.dest-hero-thumb.is-active img {
    transform: scale(1.06);
}
.dest-hero-thumb__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.08) 55%);
    transition: background 0.3s;
}
.dest-hero-thumb.is-active .dest-hero-thumb__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 55%);
}
.dest-hero-thumb__name {
    position: absolute;
    bottom: 22px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    line-height: 1.3;
    z-index: 1;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
/* Navigation */
.dest-hero-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
}
.dest-hero-nav__btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.dest-hero-nav__btn:hover {
    background: rgba(255,255,255,0.25);
}
.dest-hero-progress-track {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.2);
    position: relative;
    max-width: 320px;
}
.dest-hero-progress-bar {
    height: 100%;
    background: #fff;
    transition: width 0.4s ease;
    width: 0%;
}
@media (max-width: 768px) {
    .dest-hero-section { min-height: auto; }
    .dest-hero-inner { padding: 40px 20px; min-height: auto; }
    .dest-hero-content-row { flex-direction: column; align-items: flex-start; gap: 24px; }
    .dest-hero-info { max-width: 100%; }
    .dest-hero-thumbs-wrap { max-width: 100%; width: 100%; }
    .dest-hero-thumbs { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .dest-hero-thumb { height: 200px; }
    .dest-hero-thumb__name { font-size: 14px; bottom: 14px; left: 12px; }
}

/* Activity Showcase Section */
.activity-showcase-head {
    margin-bottom: 50px;
}
.activity-showcase-slider .slide-item {
    padding: 0 8px;
}
.activity-showcase-card {
    position: relative;
    overflow: hidden;
    height: 580px;
    display: block;
    cursor: pointer;
}
.activity-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.activity-showcase-card:hover img {
    transform: scale(1.05);
}
.activity-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.15) 100%);
    z-index: 1;
}
.activity-showcase-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}
.activity-showcase-title span {
    font-family: 'Cinzel', serif;
    font-size: clamp(20px, 1.8vw, 34px);
    font-weight: 300;
    display: block;
    line-height: 1.25;
    letter-spacing: 0.01em;
}
.activity-showcase-title strong {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 2.8vw, 52px);
    font-weight: 700;
    display: block;
    line-height: 1.1;
    margin-top: 4px;
}
.activity-showcase-desc {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    max-width: 360px;
}
.activity-showcase-bottom {
    display: flex;
    justify-content: flex-end;
}
.activity-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.45);
    padding: 14px 28px;
    text-decoration: none;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s, border-color 0.3s;
    backdrop-filter: blur(4px);
}
.activity-showcase-btn:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.8);
    color: #fff;
    text-decoration: none;
}
.activity-showcase-slider .slick-prev,
.activity-showcase-slider .slick-next {
    display: none !important;
}
@media (max-width: 768px) {
    .activity-showcase-card { height: 420px; }
    .activity-showcase-content { padding: 28px 24px; }
    .activity-showcase-slider .slide-item { padding: 0 4px; }
}

/* Mobile video/banner height reduction */
@media (max-width: 600px) {
    body.home .banner-section,
    body.home .video-container,
    body.home .video-container picture,
    body.home .video-container img,
    body.home .video-container video {
        height: 75vh !important;
        min-height: 75vh !important;
        max-height: 75vh !important;
    }
}

/* Hero cloud wave divider */
.hero-cloud-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    line-height: 0;
    pointer-events: none;
}
.hero-cloud-divider img {
    width: 100%;
    display: block;
    object-fit: fill;
}

/* ===== Mobile Menu Override ===== */
.main-menu .mobile-menu-shell {
    flex-direction: column !important;
    position: relative !important;
    background: #fff !important;
}
/* Logo bar */
.main-menu .mobile-menu-visual {
    width: 100% !important;
    min-width: 100% !important;
    height: 86px !important;
    min-height: 72px !important;
    border-right: none !important;
    border-bottom: 1px solid #e8e8e8 !important;
    background-image: none !important;
    background-color: #fff !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 20px !important;
    flex-shrink: 0 !important;
}
.main-menu .mobile-menu-visual::after {
    display: none !important;
}
.main-menu .mobile-menu-logo {
    position: static !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    z-index: 1 !important;
}
.main-menu .mobile-menu-logo img {
    width: 140px !important;
    height: auto !important;
}
/* Close button top-right of logo bar */
.main-menu .menu-top {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    height: 72px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 18px !important;
}
/* Main area — full width, scroll */
.main-menu .mobile-menu-main {
    width: 100% !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}
.main-menu .menu-bottom {
    height: calc(100vh - 72px) !important;
    overflow-y: auto !important;
    background: #f8f8f8 !important;
    padding: 0 0 30px !important;
}
/* Menu list items */
.main-menu .mobile-menu-list {
    background: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
}
.main-menu .mobile-menu-list li {
    border-bottom: 1px solid #ececec !important;
}
.main-menu .mobile-menu-list li a {
    font-family: 'Cinzel', serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #111 !important;
    padding: 18px 24px !important;
    display: block !important;
}
.main-menu .mobile-menu-list li a:hover {
    color: var(--primary-color) !important;
    background: #fafafa !important;
}
/* CTA section */
.main-menu .mobile-menu-cta {
    padding: 20px 24px !important;
    background: #fff !important;
    margin-top: 12px !important;
}
.main-menu .mobile-menu-plan-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-family: 'Cinzel', serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    padding: 14px 20px !important;
    margin-bottom: 16px !important;
}
.main-menu .mobile-menu-cta p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    color: #666 !important;
}
.main-menu .mobile-menu-phone {
    font-family: 'Cinzel', serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #111 !important;
    display: block !important;
    margin-bottom: 6px !important;
}
.main-menu .mobile-menu-email {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    color: var(--primary-color) !important;
}

/* Header top bar */
.header-topbar {
    background-color: rgba(0, 0, 0, 0.55);
    padding: 7px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-topbar__inner {
    gap: 12px;
}
.header-topbar__item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.header-topbar__item:hover {
    color: var(--primary-color);
    text-decoration: none;
}
.header-topbar__item i {
    font-size: 12px;
    color: var(--primary-color);
}
/* Push main header below top bar */
#header {
    top: 0 !important;
}



/* ===== Package Showcase Section ===== */
.pkg-showcase-section {
    background: #fff;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}
.pkg-showcase-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 80px 0 50px;
    gap: 40px;
    text-align: left;
}
.pkg-showcase-header__text {
    text-align: left;
}
.pkg-showcase-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-align: left;
}
.pkg-showcase-heading {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(32px, 4vw, 64px) !important;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111 !important;
    background: none !important;
    line-height: 1.1;
    margin-bottom: 14px;
    text-align: left;
}
.pkg-showcase-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #777;
    max-width: 520px;
    line-height: 1.75;
    margin: 0;
}
.pkg-showcase-viewall {
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    border-bottom: 1.5px solid #111;
    padding-bottom: 4px;
    margin-bottom: 10px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.pkg-showcase-viewall:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-decoration: none;
}
.pkg-showcase-block { margin-bottom: 6px; }
.pkg-block-label {
    padding: 36px 0 18px;
    margin-bottom: 0;
}
.pkg-block-label span {
    font-family: 'Cinzel', serif;
    font-size: clamp(18px, 1.8vw, 28px);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 6px;
}
.pkg-showcase-wrap { position: relative; }
.pkg-showcase-slider .slide-item { padding: 0; }
.pkg-show-card {
    position: relative;
    height: 520px;
    overflow: hidden;
}
.pkg-show-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.pkg-show-card:hover img { transform: scale(1.04); }
.pkg-show-overlay {
    position: absolute;
    inset: 0;
background: #6B1423;
background: linear-gradient(180deg, rgba(26, 5, 9, 0.815) 0%, rgba(44, 181, 173, 0) 100%);
    padding: clamp(30px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pkg-show-pretitle {
    font-family: var(--font-secondary, );
    font-size: clamp(12px, 1.1vw, 15px);
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.pkg-show-title {
    font-family: var(--font-primary);
    font-size: clamp(18px, 2vw, 36px) !important;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.pkg-show-tags {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
    text-underline-offset: 4px;
    letter-spacing: 0.08em;
    margin: 0;
}
.pkg-show-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}
.pkg-show-duration {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: clamp(14px, 1.3vw, 18px);
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    padding: 7px 18px;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.pkg-show-activities {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.05em;
    margin: 0;
}
.pkg-show-btn {
    display: inline-block;
    flex-shrink: 0;
    padding: 14px 26px;
    border: 1.5px solid white;
    background: rgba(255, 255, 255, 0);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
    white-space: nowrap;
}
.pkg-show-btn:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

/* ===== Packages Page Section ===== */
.pkgpage-section {
    background: #fff;
    padding: 80px 0 100px;
    font-family: 'Montserrat', sans-serif;
}
.pkgpage-block {
    margin-bottom: 70px;
}
.pkgpage-block-head {
    padding-bottom: 28px;
    margin-bottom: 0;
}
.pkgpage-block-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(22px, 2.2vw, 36px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}
.pkgpage-grid .pkg-show-card {
    height: 460px;
}

.pkg-mobile-nav {
    display: none;
}
@media (max-width: 767px) {
    .pkg-mobile-nav {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 14px 0;
        background: #fff;
    }
    .pkg-mobile-arrow {
        width: 44px;
        height: 44px;
        background: transparent;
        border: 1.5px solid #111;
        color: #111;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
    }
    .pkg-mobile-arrow:hover { background: #111; color: #fff; }
    .pkg-show-card,
    .pkgpage-grid .pkg-show-card {
        height: 420px;
    }
    .pkg-show-overlay {
        padding: 22px 18px;
    }
    .pkg-show-pretitle {
        font-size: 11px;
        margin-bottom: 6px;
    }
    .pkg-show-title {
        font-size: clamp(16px, 5vw, 22px) !important;
        margin-bottom: 10px;
        letter-spacing: 0.03em;
    }
    .pkg-show-tags {
        font-size: 11px;
    }
    .pkg-show-bottom {
        flex-direction: row;
        align-items: flex-end;
        gap: 8px;
    }
    .pkg-show-duration {
        font-size: 10px;
        padding: 5px 10px;
        white-space: nowrap;
        line-height: 1.3;
        flex-shrink: 0;
        margin-bottom: 0;
    }
    .pkg-show-btn {
        font-size: 8px;
        padding: 10px 10px;
        letter-spacing: 0.1em;
        flex: 1;
        text-align: center;
        white-space: nowrap;
    }
}

/* ===== News Diary Section ===== */
.news-diary-section {
    padding: 80px 0 100px;
    background: #fff;
}
.news-diary-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}
.news-diary-title {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(38px, 5.5vw, 80px) !important;
    font-weight: 400;
    color: #111;
    line-height: 1.1;
    margin: 0;
}
.news-diary-all {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    border-bottom: 1.5px solid #111;
    padding-bottom: 4px;
    margin-bottom: 12px;
    transition: color 0.2s, border-color 0.2s;
}
.news-diary-all:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    text-decoration: none;
}
.news-fp-slider .slide-item { padding: 0 10px; }
.news-fp-badge { background: #6b1423 !important; }

/* ========================================================
   HOME PAGE VISUAL ENHANCEMENTS
   ======================================================== */

/* Scroll-reveal fade-in — replayable every time the element crosses the
   viewport threshold (see script.js), so a slight scale is added on top of
   the fade/slide to make the replay read as a deliberate reveal rather than
   a flicker. */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px) scale(.97);
    transition: opacity 0.85s cubic-bezier(.16,.84,.44,1), transform 0.85s cubic-bezier(.16,.84,.44,1);
    will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* ── Scroll reveal variants ── */
.sr-up {
    opacity: 0;
    transform: translateY(48px) scale(.97);
    transition: opacity 0.85s cubic-bezier(.16,.84,.44,1), transform 0.85s cubic-bezier(.16,.84,.44,1);
    will-change: opacity, transform;
}
.sr-right {
    opacity: 0;
    transform: translateX(-48px) scale(.97);
    transition: opacity 0.85s cubic-bezier(.16,.84,.44,1), transform 0.85s cubic-bezier(.16,.84,.44,1);
    will-change: opacity, transform;
}
.sr-left {
    opacity: 0;
    transform: translateX(48px) scale(.97);
    transition: opacity 0.85s cubic-bezier(.16,.84,.44,1), transform 0.85s cubic-bezier(.16,.84,.44,1);
    will-change: opacity, transform;
}
.sr-fade {
    opacity: 0;
    transition: opacity 0.9s ease;
}
/* Triggered state — all variants */
.sr-visible {
    opacity: 1 !important;
    transform: translate(0,0) scale(1) !important;
}
/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .sr-up, .sr-right, .sr-left, .sr-fade, .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
}

/* Scroll indicator on hero */
.hero-scroll-indicator {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.hero-scroll-indicator__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}
.hero-scroll-indicator__line {
    width: 1px;
    height: 0;
    background: rgba(255,255,255,0.55);
    animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
    0%   { height: 0;    opacity: 0; }
    40%  { height: 44px; opacity: 1; }
    100% { height: 44px; opacity: 0; }
}
@media (max-width: 768px) { .hero-scroll-indicator { display: none; } }

/* Stats band */
.stats-band {
    background: var(--primary-color);
    position: relative;
    z-index: 4;
}
.stats-band__inner {
    display: flex;
    align-items: stretch;
    max-width: 100%;
}
.stats-band__item {
    flex: 1;
    padding: 30px 16px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.18);
}
.stats-band__item:last-child { border-right: none; }
.stats-band__num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}
.stats-band__label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
}
@media (max-width: 768px) {
    .stats-band__inner { flex-wrap: wrap; }
    .stats-band__item {
        flex: 0 0 50%;
        border-bottom: 1px solid rgba(255,255,255,0.18);
    }
    .stats-band__item:nth-child(even) { border-right: none; }
}
@media (max-width: 480px) {
    .stats-band__item { flex: 0 0 100%; border-right: none; }
}

/* Accent line below section headings */
.dest-hero-heading1 {
    position: relative;
}
.dest-hero-heading1.with-accent::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 18px;
}
.dest-hero-heading1.with-accent-center::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary-color);
    margin: 18px auto 0;
}

/* Intro section "Why Choose Us" micro-features */
.intro-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 0 0 calc(50% - 14px);
    min-width: 160px;
}
.intro-feature__icon {
    width: 38px;
    height: 38px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.intro-feature__icon svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; }
.intro-feature__text strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.intro-feature__text span { font-size: 12px; color: #888; line-height: 1.5; }
@media (max-width: 600px) {
    .intro-features { gap: 14px; }
    .intro-feature { flex: 0 0 100%; }
}

/* Improved testimonial section */
.testimonials-enhanced {
    position: relative;
    overflow: hidden;
    padding: 500px 0 90px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #f0f4f8;
}
/* Very light overlay — just enough to soften edges */
.testimonials-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.479) 100%);
    z-index: 0;
    pointer-events: none;
}
/* "real stories" watermark */
.testimonials-enhanced::after {
    content: 'real stories';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: clamp(60px, 10vw, 150px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.493);
    white-space: nowrap;
    line-height: 1.1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: 0.04em;
}
/* Lift all inner content above overlays */
.testimonials-enhanced > * { position: relative; z-index: 1; }
.testi-heading {
    text-align: center;
    margin-bottom: 52px;
}
.testi-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    margin-bottom: 12px;
}
.testi-title {
    font-family: 'Cinzel', 'Rudge', serif;
    font-size: clamp(32px, 4vw, 56px) !important;
    font-weight: 700 !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
    letter-spacing: 0.04em;
    margin: 0 !important;
}
.testi-badge {
    text-align: center;
    margin-top: 48px;
}
.testi-badge img {
    max-height: 80px;
    width: auto;
    opacity: 0.85;
}
.testimonial-card-enhanced {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
}
.testimonial-card-enhanced .stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}
.testimonial-card-enhanced .stars svg {
    width: 18px; height: 18px;
    fill: var(--primary-color);
}
.testimonial-card-enhanced .quote-text {
    font-family: 'Cinzel', serif;
    font-size: clamp(18px, 2.2vw, 26px) !important;
    font-weight: 600;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    line-height: 1.45;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-card-enhanced .quote-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.92) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.92) !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.35);
    line-height: 1.8;
    margin-bottom: 28px;
}
.testimonial-card-enhanced .testimonial-author-name {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.testimonial-card-enhanced .testimonial-author-loc {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.75) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.75) !important;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Better fp-card hover effect */
.fp-card {
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.fp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(107,20,35,0.16) !important;
}
.fp-card__link {
    position: relative;
    overflow: hidden;
}
.fp-card__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}
.fp-card:hover .fp-card__link::after { width: 100%; }

/* Better pkg-show card */
.pkg-show-card {
    overflow: hidden;
}
.pkg-show-btn {
    position: relative;
    overflow: hidden;
}
.pkg-show-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 0;
}
.pkg-show-btn:hover::before { transform: scaleX(1); }
.pkg-show-btn span, .pkg-show-btn { position: relative; z-index: 1; }

/* News section improved */
.news-diary-section {
    background: #faf7f2;
}

/* ============================================================
   CDC-INSPIRED FULL REDESIGN
   ============================================================ */

/* ── Header: Clean Single-Row Overlay Style ── */
/* ================================================================
   TRIPLEOSIX-STYLE HEADER
   ================================================================ */
#header {
    /* A flat transparent background only works because the homepage hero and
       every .section-banner already paint their own dark gradient overlay
       directly beneath the header. Pages without one there (e.g. the package
       detail page's cream breadcrumb bar sitting right under the header)
       leave the header's white/light nav text with almost no contrast. A
       permanent, subtle dark scrim fixes that everywhere at once — it's
       already redundant (and harmless) on pages that have their own overlay,
       since it just deepens an already-dark area slightly. */
    background: linear-gradient(180deg, rgba(6,16,28,.45) 0%, rgba(6,16,28,0) 100%);
   top: 50px;
}
#header.header-scrolled {
    background: #ffffff !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10) !important;
}
/* Scrolled: compact height (bumped from 64px to fit the larger scrolled logo below) */
#header.header-scrolled .hdr-triple {
    height: 74px !important;
}
/* Scrolled: logo original color + a bit bigger (was 44px — too small once the
   header is permanently visible as a sticky bar) */
#header.header-scrolled .hdr-logo-center img {

    height: 56px !important;
}
#header.header-scrolled .hdr-logo-center {
    border-right-color: rgba(0,0,0,0.08) !important;
    
}
/* Scrolled: nav links dark (was rgba(255,255,255,.65) — white text on the
   white scrolled background, invisible; fixed to match the navy scrolled-icon
   tone used elsewhere in cgr-design.css) */
#header.header-scrolled .hdr-nav li a {
    color: rgba(14, 42, 71, 0.75) !important;
}
#header.header-scrolled .hdr-nav li a::after {
    background: var(--primary-color) !important;
}
#header.header-scrolled .hdr-nav li a:hover {
    color: var(--primary-color) !important;
}
#header.header-scrolled .hdr-nav li.current-menu-item > a {
    color: var(--primary-color) !important;
}
/* Scrolled: CTA button */
#header.header-scrolled .hdr-booknow {
    border-left-color: rgba(0,0,0,0.08) !important;
}
#header.header-scrolled .hdr-booknow__text {
    color: var(--primary-color) !important;
}
#header.header-scrolled .hdr-booknow__line {
    background: rgba(0,0,0,0.15) !important;
}
#header.header-scrolled .hdr-booknow:hover .hdr-booknow__text {
    color: #fff !important;
}
.header-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 !important;
}
/* Hide scroll-menu by default — show only when scrolled */
#header .scroll-menu {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}
#header.header-scrolled .scroll-menu {
    display: flex !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    pointer-events: auto !important;
}
body.home #header .header-container,
body.home #header .header-container.padding-top--50 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ── Main triple row ── */
.hdr-triple {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 90px;
}

/* ── Left logo ── */
.hdr-logo-center {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Fluid right-hand gap: linearly interpolates 16px (at a ~1025px viewport)
       up to 36px (at ~1920px), so it scales across the whole range instead of
       maxing out by ~1400px the way a plain vw value would. */
    padding: 0 clamp(16px, calc(2.235vw - 6.9px), 36px) 0 28px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.hdr-logo-center img {
    height: clamp(48px, calc(2.458vw + 22.8px), 70px) !important;
    width: auto !important;
    max-width: none !important;

    transition: opacity 0.3s ease;
    display: block;
}
.hdr-logo-center:hover img { opacity: 0.85; }

/* ── Nav ── */
.hdr-nav {
    flex: 1;
    /* Flex items default to min-width:auto, which stops a flex:1 child from
       ever shrinking narrower than its content's natural (nowrap) width —
       that invisible floor was what forced the row to overflow and push the
       CTA button/hamburger off the right edge, no matter how much the fluid
       font-size/padding above shrank the links themselves. */
    min-width: 0;
    /* No overflow:hidden here (removed) — the About Us dropdown panel is an
       absolutely-positioned descendant of this element, and overflow:hidden
       would clip it out of view along with any horizontal nav overflow. */
    display: flex !important;
    list-style: none;
    margin: 0;
    padding: 0 20px;
    align-items: center;
    gap: 0;
}
.hdr-nav--right { justify-content: flex-end; }
.hdr-nav li {
    /* Fluid gap: linearly interpolates 6px (~1025px viewport) up to 16px
       (~1920px) instead of a plain vw value, which would max out by ~1450px
       and leave no shrink margin across the common 1450-1800px laptop range. */
    padding: 0 clamp(6px, calc(1.117vw - 5.45px), 16px);
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.hdr-nav li a {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, calc(0.447vw + 9.42px), 18px) !important;
    font-weight: 500 !important;
    letter-spacing: 0em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none !important;
    white-space: nowrap;
    padding-bottom: 3px;
    position: relative;
    transition: color 0.25s ease;
}
/* Hover underline slide-in */
.hdr-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: rgba(255,255,255,0.6);
    transition: width 0.3s ease;
}
.hdr-nav li a:hover { color: #fff !important; }
.hdr-nav li a:hover::after { width: 100%; }
/* Active page */
.hdr-nav li.current-menu-item > a {
    color: #ffffff !important;
    font-weight: 600 !important;
}
.hdr-nav li.current-menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px; right: 16px;
    height: 2px;
    background: var(--primary-color);
}

/* ── Far right actions group ── */
.hdr-actions {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
    height: 100%;
}
/* ── CONTACT US ── */
.hdr-booknow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Fluid padding: linearly interpolates 18px (~1025px) up to 44px (~1920px)
       across the whole range (see .hdr-nav li above for why plain vw isn't enough). */
    padding: 0 clamp(18px, calc(2.905vw - 11.78px), 44px);
    border-left: 1px solid rgba(255,255,255,0.1);
    text-decoration: none !important;
    flex-shrink: 0;
    transition: background 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.hdr-booknow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(.22,1,.36,1);
    z-index: 0;
}
.hdr-booknow:hover::before { transform: scaleX(1); transform-origin: left; }
.hdr-booknow__text {
    font-family: 'Cinzel', serif;
    font-size: clamp(14px, calc(0.894vw + 4.84px), 22px);
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #000000 !important;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
    position: relative;
    z-index: 1;
}
.hdr-booknow__line {
    display: block;
    width: 80%;
    height: 1.5px;
    background: rgba(255,255,255,0.35);
    transition: background 0.3s ease, width 0.3s ease;
    position: relative;
    z-index: 1;
}
.hdr-booknow:hover .hdr-booknow__line {
    background: rgba(255,255,255,0.7);
    width: 100%;
}

/* ── MENU label ── */
.hdr-menu-label {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    border-left: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease;
}
.hdr-menu-label:hover { background: rgba(255,255,255,0.05); }
.hdr-menu-label .hamburger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hdr-menu-label .hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}
.hdr-menu-label:hover .hamburger span { background: #fff; }
.hdr-menu-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.hdr-menu-colon {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    line-height: 1;
}
.hdr-menu-label:hover .hdr-menu-text { color: #fff; }

/* ── Responsive ──
   The old single 1280px breakpoint below jumped straight from full-size to a
   fixed smaller size, leaving a wide "dead zone" (~1281px–1750px) where the
   full-size logo/nav/CTA row was wider than the viewport and got cropped off
   the right edge. That's now handled by clamp()-based fluid sizing on
   .hdr-logo-center/.hdr-logo-center img/.hdr-nav li/.hdr-nav li a/.hdr-booknow/
   .hdr-booknow__text above, which shrinks continuously with viewport width
   instead, so nothing needs a fixed-size override here anymore. */
@media (max-width: 1024px) {
    .hdr-triple {  justify-content: space-between; }
    .hdr-nav { display: none !important; }
    .hdr-booknow { display: none !important; }
    .hdr-logo-center { padding: 0 20px; border-right: none; }
    .hdr-logo-center img { height: 50px !important; }
    .hdr-actions { margin-left: auto; }
    .hdr-menu-label { display: flex; padding: 0 20px; border-left: none; }
    .hdr-menu-label .hamburger { display: flex; }
    .hdr-menu-text { display: block; font-size: 18px; }
}
@media (max-width: 600px) {
    .hdr-triple { height: 58px; 
    }
    .hdr-logo-center img { height: 40px !important; }

}
@media (max-width: 1024px) { .header-container { padding: 0; } }
@media (max-width: 600px)  { .header-container { padding: 0; } }
body.home #header .header-container,
body.home #header .header-container.padding-top--50 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ── Site Top Bar ── */
.site-topbar {
    background: var(--primary-color);
    width: 100%;
    z-index: 1200;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
.site-topbar__inner {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-topbar__left {
    display: flex;
    align-items: center;
    gap: 28px;
}
.site-topbar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    transition: color 0.2s;
}
.site-topbar__item:hover { color: #fff; text-decoration: none; }
.site-topbar__item svg { flex-shrink: 0; opacity: 0.75; }
.site-topbar__right {
    display: flex;
    align-items: center;
    gap: 18px;
}
.site-topbar__social {
    color: rgba(255,255,255,0.72);
    display: flex;
    align-items: center;
    transition: color 0.2s;
    text-decoration: none;
}
.site-topbar__social:hover { color: #fff; }
@media (max-width: 768px) {
    .site-topbar__inner { padding: 0 20px; }
    .site-topbar__left { gap: 14px; }
    .site-topbar__item span { display: none; }
}
@media (max-width: 480px) {
    .site-topbar { display: none; }
    #header { top: 0 !important; }
}

/* ── About Section (Blue Sky exact style) ── */
.about-bss-section {

    padding: 0 !important;
    overflow: visible;
}
/* Top row */
.about-bss-top {
    display: flex;
    align-items: flex-start;
    max-width: 1800px;
    margin: 0 auto;
    padding: 80px 50px 0;
    gap: 80px;
}
/* Left: heading */

/* Heading - Rudge font, two-tone solid colors */
.about-bss-heading {
    font-family: 'Rudge', 'Cinzel', serif !important;
    font-size: clamp(48px, 5vw, 82px) !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 1.18 !important;
    letter-spacing: 0.03em !important;
   
    margin: 0 !important;
    /* solid color — no gradient, no background-clip trick */
    color: var(--primary-color) !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    background: transparent !important;
    background-image: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}
.about-bss-heading em {
    font-style: normal !important;
    color: var(--secondary-color) !important;
    -webkit-text-fill-color: var(--secondary-color) !important;
    display: block;
}
@media (max-width: 768px) {
    .about-bss-heading br { display: none; }
    .about-bss-heading em { display: inline; }
    .about-bss-heading { font-size: clamp(48px, 8vw, 42px) !important; }
}
/* Right: body text */
.about-bss-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 12px;
}
.about-bss-body {
    margin-bottom: 32px;
}
.about-bss-body p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px !important;
    color: #5a5a5a !important;
    line-height: 1.9 !important;
    margin-bottom: 16px !important;
}
/* Pill button exactly like reference */
.about-bss-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none !important;
    padding: 15px 38px;
    border-radius: 50px !important;
    align-self: flex-start;
    border: 2px solid var(--primary-color);
    transition: background 0.3s ease, color 0.3s ease;
}
.about-bss-btn:hover {
    background: transparent;
    color: var(--primary-color) !important;
}
/* Bottom image row - full width, tall, cover fit */
.about-bss-imgrow {
 
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #fff0;
}
.about-bss-imgrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.8s ease;
}
.about-bss-imgrow:hover img {
    transform: scale(1.03);
}
/* Responsive */
@media (max-width: 1200px) {
    .about-bss-top { padding: 60px 48px 0; gap: 48px; }
    .about-bss-imgrow { height: 400px; }
}
@media (max-width: 768px) {
    .about-bss-section { margin-top: -51px !important; padding-top: 0 !important; }
    .about-bss-top { flex-direction: column; padding: 32px 20px 0; gap: 24px; }
    .about-bss-left { flex: none; }
    .about-bss-imgrow { height: 290px; margin-top: -95px; }
    .about-bss-btn { border-radius: 50px !important; }
}
@media (max-width: 600px) {
    .about-bss-section { margin-top: 0 !important; }
    .about-bss-top { padding: 24px 16px 0; }
    .banner-section { margin-bottom: 0 !important; padding-bottom: 0 !important; }
}

/* ── Destinations Slider Section ── */
.dslider-section {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
background: #FFF0;
background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 54, 130, 1) 92%);
    background-size: cover;

}

.dslider-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 60px;
}
/* Left: heading + text */
.dslider-panel {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.dslider-panel__title {
    font-family: 'Rudge','Cinzel',serif !important;
    font-size: clamp(32px, 3.5vw, 54px) !important;
    font-weight: 400 !important;
   
    color: #fff !important;
    -webkit-text-fill-color: #012c5b !important;
    background: none !important;
    line-height: 1.25 !important;
    margin: 0 0 28px !important;
}
.dslider-panel__desc {
    font-size: 14px !important;
    color: rgba(0, 0, 0, 0.82) !important;
    line-height: 1.85 !important;
    margin-bottom: 36px !important;
}
.dslider-panel__link {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #000000 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 5px;
    transition: border-color 0.3s;
    align-self: flex-start;
}
.dslider-panel__link:hover { border-color: #fff; }

/* Right: slider */
.dslider-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}
.dslider-track-wrap {
    overflow: hidden;
    width: 100%;
}
.dslider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
/* Each page = full width, mosaic layout */
.dslider-page {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    gap: 12px;
    height: 460px;
}
/* Large cards — take 40% width each */
.dslider-card--large {
    flex: 1 1 0;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    min-width: 0;
}
/* Stacked column */
.dslider-col {
    flex: 0 0 26%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}
/* Small stacked cards */
.dslider-card--small {
    flex: 1 1 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    min-height: 0;
}
/* Shared card styles */
.dslider-card--large a,
.dslider-card--small a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
}
.dslider-card--large img,
.dslider-card--small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.dslider-card--large:hover img,
.dslider-card--small:hover img { transform: scale(1.06); }

/* Name label — gradient overlay at bottom */
.dslider-card__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 52px 20px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    border-radius: 0 0 14px 14px;
}
.dslider-card--small .dslider-card__label { padding: 32px 16px 14px; border-radius: 0 0 12px 12px; }
.dslider-card__name {
    display: block;
    font-family: 'Rudge','Cinzel',serif;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.dslider-card--small .dslider-card__name { font-size: 30px; }

/* Dot pagination */
.dslider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 16px;
}
.dslider-arrow {
    background: none;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s;
    flex-shrink: 0;
}
.dslider-arrow:hover {
    background: rgba(255,255,255,0.18);
    border-color: #fff;
}
.dslider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.dslider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: none;
    display: inline-block;
}
.dslider-dot.is-active {
    background: #fff;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 1100px) {
    .dslider-wrap { gap: 36px; padding: 0 36px; }
    .dslider-panel { flex: 0 0 280px; }
    .dslider-page { height: 380px; }
}
@media (max-width: 768px) {
    .dslider-wrap { flex-direction: column; padding: 0 20px; gap: 28px; }
    .dslider-panel { flex: none; }
    .dslider-page { height: auto; flex-wrap: wrap; }
    .dslider-card--large { flex: 0 0 100%; height: 220px; }
    .dslider-col { flex: 0 0 100%; flex-direction: row; height: 160px; }
    .dslider-panel__title { font-size: 35px !important; }
}

/* ── Tour Packages Section ── */
.tpkg-section {
    background: #f0f4f8;
   
}
/* Header row */
.tpkg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1800px;
    margin: 0 auto 48px;
    padding: 0 60px;
}

.tpkg-header3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1800px;
    margin: 0 auto 48px;
  
} 
.tpkg-header__left { flex: 1; }
.tpkg-header__eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.tpkg-header__title {
    font-family: 'Rudge','Cinzel', serif !important;
    font-size: clamp(28px, 3.5vw, 48px) !important;
    font-weight: 700 !important;
    color: #111 !important;
    -webkit-text-fill-color: #111 !important;
    background: none !important;
    letter-spacing: 0.04em !important;
    margin: 0 0 12px !important;
    line-height: 1.1 !important;
}
.tpkg-header__line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}
.tpkg-header__right {
    flex: 0 0 340px;
    padding-bottom: 4px;
}
.tpkg-header__right p {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.7 !important;
    margin: 0 0 18px !important;
}
.tpkg-header__more {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1.5px solid var(--primary-color);
    padding-bottom: 2px;
    transition: opacity 0.2s;
}
.tpkg-header__more:hover { opacity: 0.7; }
/* Cards grid — 3 columns */
.tpkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 60px;
}
/* Individual card */
.tpkg-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.tpkg-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.16);
    transform: translateY(-4px);
}
/* Image wrap */
.tpkg-card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 400px;
    flex-shrink: 0;
}
.tpkg-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.tpkg-card:hover .tpkg-card__img-wrap img { transform: scale(1.06); }
/* Duration badge — flush right edge */
.tpkg-card__badge {
    position: absolute;
    top: 20px;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a2a3a 100%);
    color: #fff;
    padding: 8px 18px 8px 16px;
    border-radius: 6px 0 0 6px;
    text-align: left;
    min-width: 140px;
}
.tpkg-card__badge-label {
    display: block;
    font-size: 15px;
    letter-spacing: 0.22em;
    
    opacity: 10;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.tpkg-card__badge-val {
    display: block;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.2;
    white-space: nowrap;
}
/* Card body */
.tpkg-card__body {
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
/* Category pill */
.tpkg-card__cat {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: white;
	background-color: var(--primary-color);
   
    border-radius: 50px;
    padding: 4px 14px;
    margin-bottom: 14px;
    align-self: flex-start;
    text-transform: uppercase;
}
.tpkg-card__title {
    font-family: 'Rudge','Cinzel', serif !important;
    font-size: 30px !important;
    font-weight: 400 !important;
    color: #111 !important;
    -webkit-text-fill-color: #111 !important;
    background: none !important;
    line-height: 1.25 !important;
    margin: 0 0 12px !important;
    letter-spacing: 0.04em !important;
}
.tpkg-card__desc {
    font-size: 14px !important;
    color: #777 !important;
    line-height: 1.75 !important;
    margin: 0 0 20px !important;
    flex: 1;
}
.tpkg-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #111 !important;
    text-decoration: none !important;
    text-transform: uppercase;
    border-bottom: 1.5px solid #111;
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color 0.2s, border-color 0.2s;
}
.tpkg-card__link:hover {
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
}
.tpkg-card__link svg { stroke: currentColor; }
/* Footer */
.tpkg-footer {
    text-align: center;
    margin-top: 44px;
}
.tpkg-all-link {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 3px;
}
/* Responsive */
@media (max-width: 1100px) {
    .tpkg-grid { grid-template-columns: repeat(2, 1fr); padding: 0 40px; }
    .tpkg-header { padding: 0 40px; }
}
@media (max-width: 768px) {
    .tpkg-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .tpkg-header { flex-direction: column; align-items: flex-start; padding: 0 20px; gap: 16px; }
    .tpkg-header__right { flex: none; }
}

/* ── Global: cream background for home page sections ── */
body.home {
    background: #ffffff;
background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 221, 200, 1) 100%);
}


/* Remove dark overlay on banner video */
.video-container::after {
    background: transparent !important;
}

/* ── Hero: bottom-aligned text, cinematic gradient ── */
.banner-hero-overlay {
    align-items: flex-end !important;
    justify-content: flex-start !important;
    padding: 0 6% 120px !important;
   
    text-align: left !important;
background: #FFF0;
background: linear-gradient(360deg, rgba(255, 255, 255, 0) 19%, rgba(0, 19, 46, 1) 100%);
}
.banner-hero-overlay__content {
    max-width: 900px !important;
    text-align: left !important;
}
.banner-hero-overlay__content h1 {
    font-size: clamp(48px, 7.5vw, 108px) !important;
    font-weight: 300 !important;
    letter-spacing: 3px !important;
    line-height: 1.02 !important;
    margin-bottom: 16px !important;
}
.banner-hero-overlay__content p {
    font-size: clamp(14px, 1.5vw, 18px) !important;
    letter-spacing: 0.12em !important;
    opacity: 0.82 !important;
    max-width: 520px !important;
    margin-bottom: 0 !important;
    text-align: left !important;
}
/* Hero eyebrow label */
.hero-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
    padding-left: 32px;
    position: relative;
}
.hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.5);
}
@media (max-width: 768px) {
    .banner-hero-overlay {
        padding: 0 24px 80px !important;
        align-items: flex-end !important;
    }
    .banner-hero-overlay__content p br { display: none; }
}

/* ── 4 Pillars section ── */
.cdc-pillars {
    background: #fff;
    border-top: 1px solid #ece8e2;
    border-bottom: 1px solid #ece8e2;
}
.cdc-pillars__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
}
.cdc-pillar {
    padding: 48px 36px;
    border-right: 1px solid #ece8e2;
    text-align: center;
    transition: background 0.3s ease;
}
.cdc-pillar:last-child { border-right: none; }
.cdc-pillar:hover { background: #faf7f2; }
.cdc-pillar__num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 400;
}
.cdc-pillar h3 {
    font-family: 'Cinzel', serif !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #1c1c1c !important;
    margin-bottom: 14px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}
.cdc-pillar p {
    font-size: 13px !important;
    color: #9a9189 !important;
    line-height: 1.9 !important;
    margin: 0 !important;
}
@media (max-width: 1024px) {
    .cdc-pillars__inner { grid-template-columns: repeat(2, 1fr); }
    .cdc-pillar:nth-child(2) { border-right: none; }
    .cdc-pillar:nth-child(3),
    .cdc-pillar:nth-child(4) { border-top: 1px solid #ece8e2; }
    .cdc-pillar:nth-child(4) { border-right: none; }
}
@media (max-width: 600px) {
    .cdc-pillars__inner { grid-template-columns: 1fr; }
    .cdc-pillar { border-right: none !important; border-top: 1px solid #ece8e2; }
    .cdc-pillar:first-child { border-top: none; }
}

/* ── Intro section CDC style ── */
body.home .home-intro-section .common-heading span {
    font-size: 10px !important;
    letter-spacing: 0.3em !important;
}
body.home .home-intro-section .common-heading h1 {
    font-size: clamp(32px, 4vw, 60px) !important;
    font-weight: 300 !important;
    letter-spacing: 2.5px !important;
    line-height: 1.1 !important;
}
body.home .wysiwyg-container p {
    color: #7a7268 !important;
    font-size: 15px !important;
    line-height: 1.9 !important;
}
.theme-btn-1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    border: 1px solid #1c1c1c;
    color: #1c1c1c;
    background: transparent;
    padding: 14px 36px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, color 0.3s ease;
}
.theme-btn-1:hover {
    background: #1c1c1c;
    color: #fff;
    text-decoration: none;
}

/* ── Destinations section heading CDC style ── */
.dest-hero-heading {
    text-align: center;
}
.dest-hero-heading span {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 10px !important;
    letter-spacing: 0.32em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.6) !important;
    display: block;
    margin-bottom: 16px;
}
.dest-hero-heading h2 {
    font-size: clamp(34px, 5vw, 72px) !important;
    font-weight: 300 !important;
    letter-spacing: 3px !important;
    line-height: 1.1 !important;
}

/* ── Packages section CDC style ── */
.pkg-showcase-section {
    padding: 100px 0;
}
.pkg-showcase-header {
    margin-bottom: 56px;
}
.dest-hero-heading1 span {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 10px !important;
    letter-spacing: 0.32em !important;
}
.dest-hero-heading1 h2 {
    font-size: clamp(30px, 4vw, 56px) !important;
    font-weight: 300 !important;
    letter-spacing: 2px !important;
    line-height: 1.12 !important;
}

/* ── Travel Themes Grid (new) ── */
.cdc-themes {
    background: #1c1c1c;
    padding: 100px 0;
    overflow: hidden;
}
.cdc-themes__header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 24px;
}
.cdc-themes__header .eyebrow-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}
.cdc-themes__header h2 {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(30px, 4.2vw, 60px) !important;
    font-weight: 300 !important;
    color: #fff !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    line-height: 1.1 !important;
}
.cdc-themes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 0 4px;
}
.cdc-theme-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}
.cdc-theme-card--tall { height: 420px; }
.cdc-theme-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(.22,1,.36,1);
    display: block;
}
.cdc-theme-card:hover img { transform: scale(1.07); }
.cdc-theme-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.12) 55%, transparent 100%);
    transition: background 0.4s ease;
}
.cdc-theme-card:hover .cdc-theme-card__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.22) 55%, transparent 100%);
}
.cdc-theme-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 28px 24px;
    z-index: 2;
}
.cdc-theme-card__name {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
    line-height: 1.2;
}
.cdc-theme-card__explore {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}
.cdc-theme-card:hover .cdc-theme-card__explore {
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.7);
}
@media (max-width: 1024px) {
    .cdc-themes__grid { grid-template-columns: repeat(2, 1fr); }
    .cdc-theme-card, .cdc-theme-card--tall { height: 280px; }
}
@media (max-width: 600px) {
    .cdc-themes__grid { grid-template-columns: 1fr; gap: 3px; }
    .cdc-theme-card, .cdc-theme-card--tall { height: 220px; }
    .cdc-themes { padding: 70px 0; }
}

/* ── Travel Purpose / Values section (large) ── */
.cdc-purpose {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1c1c1c;
}
.cdc-purpose__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    transition: transform 0.1s linear;
}
.cdc-purpose__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px;
    max-width: 900px;
}
.cdc-purpose__eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.cdc-purpose__title {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(36px, 5.5vw, 80px) !important;
    font-weight: 300 !important;
    color: #fff !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    line-height: 1.08 !important;
    margin-bottom: 24px !important;
}
.cdc-purpose__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.65) !important;
    line-height: 1.9;
    max-width: 580px;
    margin: 0 auto 36px;
}
.cdc-purpose__link {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 14px 40px;
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.cdc-purpose__link:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: none;
}

/* ── Testimonials enhanced ── */
/* ── News / Blog CDC style ── */
.news-diary-section {
    background: #faf7f2 !important;
    padding: 100px 0;
}
.fp-card__body {
    background: #faf7f2;
    padding: 22px 24px 24px;
}
.fp-card__title {
    font-family: 'Cinzel', serif !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
    font-weight: 400 !important;
    color: #1c1c1c !important;
    line-height: 1.5 !important;
}
.fp-card__link {
    font-size: 9px !important;
    letter-spacing: 0.28em !important;
    color: #9a9189 !important;
}
.fp-card__link:hover { color: #1c1c1c !important; }

/* ── Slick arrow CDC style ── */
body.home .slick-prev,
body.home .slick-next {
    background: transparent !important;
    border: 1px solid rgba(28,28,28,0.25) !important;
    width: 48px !important;
    height: 48px !important;
    transition: border-color 0.3s, background 0.3s;
}
body.home .slick-prev:hover,
body.home .slick-next:hover {
    border-color: #1c1c1c !important;
    background: #1c1c1c !important;
}

/* ── News Image Card ── */
.news-img-card {
    display: block;
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    text-decoration: none !important;
    border-radius: 2px;
}
.news-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.news-img-card:hover img { transform: scale(1.05); }
.news-img-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.20) 50%, transparent 75%);
}
.news-img-card__content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 36px 32px 40px;
    text-align: center;
    z-index: 2;
}
.news-img-card__readtime {
    font-family: 'Rudge', 'Cinzel', serif;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.1em;
    margin: 0 0 14px;
}
.news-img-card__readtime strong {
    font-weight: 700;
    color: #fff;
}
.news-img-card__title {
    font-family: 'Rudge', 'Cinzel', serif !important;
    font-size: clamp(18px, 2vw, 26px) !important;
    font-weight: 400 !important;
    color: #fff !important;
    line-height: 1.35 !important;
    margin: 0 0 22px !important;
    letter-spacing: 0.02em !important;
}
.news-img-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Rudge', 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #fff;
    text-transform: uppercase;
}
.news-img-card__cta-line {
    display: block;
    width: 36px;
    height: 1px;
    background: rgba(255,255,255,0.6);
    flex-shrink: 0;
    transition: width 0.3s ease;
}
.news-img-card:hover .news-img-card__cta-line { width: 52px; }
@media (max-width: 768px) {
    .news-img-card { height: 420px; }
}

/* ═══════════════════════════════════════════
   FOOTER — Travel Design style
═══════════════════════════════════════════ */
.ftdc {
    background: var(--primary-color);
    position: relative;
    color: rgba(255,255,255,0.85);
    padding: 60px 80px 0;
    font-family: 'Montserrat', sans-serif;
}
.ftdc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.52);
    pointer-events: none;
    z-index: 0;
}
.ftdc > * { position: relative; z-index: 1; }
/* Brand */
.ftdc__brand {
    text-align: center;
    padding-bottom: 44px;
}
.ftdc__brand-name {
    font-family: 'Rudge','Cinzel', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.1;
}
.ftdc__brand-sub {
    font-family: 'Cinzel', serif;
    font-style: italic;
    font-size: clamp(13px, 1.4vw, 18px);
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.08em;
    margin-top: 6px;
}
/* Rule */
.ftdc__rule {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.18);
    margin: 0;
}
.ftdc__rule--gap { margin: 28px 0; }
/* Utility row */
.ftdc__util {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    gap: 24px;
}
/* Stats */
.ftdc__stats {
    display: flex;
    align-items: center;
    gap: 0;
}
.ftdc__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
}
.ftdc__stat-num {
    font-family: 'Rudge','Cinzel', serif;
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.04em;
}
.ftdc__stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    margin-top: 6px;
}
.ftdc__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
}
.ftdc__util-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 28px;
}
.ftdc__util-nav a {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none !important;
    transition: color 0.2s;
}
.ftdc__util-nav a:hover { color: #fff !important; }
.ftdc__util-social {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.ftdc__util-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none !important;
    transition: border-color 0.2s, background 0.2s;
}
.ftdc__util-social a:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.12); }
.ftdc__util-social i { font-size: 15px; color: #fff !important; display: block !important; }
.ftdc-social-svg { width: 16px; height: 16px; stroke: #fff; display: block !important; }
/* hide sr-only spans inside footer social */
.ftdc__util-social .sr-only,
.ftdc__util-social .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
/* Main nav */
.ftdc__mainnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0 10px;
}
.ftdc__mainnav-item {
    font-family: 'Rudge','Cinzel', serif;
    font-size: clamp(13px, 1.4vw, 20px);
    font-weight: 400;
    letter-spacing: 0.10em;
    color: rgba(255,255,255,0.55) !important;
    text-decoration: none !important;
    transition: color 0.2s;
    position: relative;
}
.ftdc__mainnav-item:hover { color: #fff !important; }
.ftdc__mainnav-item--active {
    font-weight: 700;
    color: #fff !important;
}
.ftdc__mainnav-item--active::after {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: rgba(255,255,255,0.6);
    margin: 8px auto 0;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(180deg);
    height: 8px;
}
/* Bottom row */
.ftdc__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 0 28px;
}
.ftdc__bottom-left {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.ftdc__cert-box {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    text-align: center;
    text-transform: uppercase;
    min-width: 70px;
}
/* Clock */
.ftdc__clock-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.ftdc__clock {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}
.ftdc__clock-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.ftdc__clock-country {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
}
.ftdc__clock-date {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}
/* Contact */
.ftdc__contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
    flex-shrink: 0;
}
.ftdc__contact span,
.ftdc__contact a {
    font-size: 12px;
    color: rgba(255,255,255,0.65) !important;
    text-decoration: none !important;
    line-height: 1.6;
    transition: color 0.2s;
}
.ftdc__contact a:hover { color: #fff !important; }
/* Copyright */
.ftdc__copyright {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 18px 0 20px;
    text-align: center;
}
.ftdc__copyright p {
    font-size: 15px !important;
    color: rgba(255,255,255,0.45) !important;
    margin: 0 !important;
    letter-spacing: 0.04em;
}
.ftdc__copyright strong { color: rgba(255,255,255,0.7) !important; font-weight: 600; }
/* Responsive */
@media (max-width: 900px) {
    .ftdc { padding: 40px 28px 0; }
    .ftdc__brand-name { font-size: clamp(26px, 6vw, 40px); }
    .ftdc__util { flex-direction: column; align-items: flex-start; gap: 16px; padding: 16px 0; }
    .ftdc__util-nav { gap: 4px 20px; }
    .ftdc__util-nav a { font-size: 11px; }
    .ftdc__util-social { flex-wrap: wrap; gap: 8px; }
    .ftdc__mainnav { flex-wrap: wrap; gap: 12px 24px; justify-content: center; padding: 24px 0 8px; }
    .ftdc__mainnav-item { font-size: clamp(13px, 2.5vw, 18px); }
    .ftdc__bottom { flex-direction: column; align-items: center; text-align: center; gap: 20px; padding: 24px 0 20px; }
    .ftdc__bottom-left { justify-content: center; }
    .ftdc__contact { text-align: center; }
}
@media (max-width: 600px) {
    .ftdc { padding: 28px 18px 0; }
    .ftdc__brand { padding-bottom: 28px; }
    .ftdc__brand-name { font-size: clamp(22px, 7vw, 36px); }
    .ftdc__brand-sub { font-size: 12px; }
    .ftdc__rule--gap { margin: 16px 0; }
    .ftdc__util-nav { gap: 4px 16px; }
    .ftdc__util-social a { width: 30px; height: 30px; }
    .ftdc__util-social i { font-size: 13px; }
    .ftdc__mainnav { gap: 10px 16px; }
    .ftdc__mainnav-item { font-size: 12px; letter-spacing: 0.08em; }
    .ftdc__mainnav-item--active::after { display: none; }
    .ftdc__bottom-left { display: none; }
    .ftdc__clock { font-size: 36px; }
    .ftdc__clock-wrap { gap: 10px; }
    .ftdc__clock-country { font-size: 10px; }
    .ftdc__clock-date { font-size: 10px; }
    .ftdc__contact span,
    .ftdc__contact a { font-size: 11px; }
    .ftdc__copyright p { font-size: 10px !important; }
}

/* ═══════════════════════════════════════════
   ACTIVITIES — Escape / Explore section
═══════════════════════════════════════════ */
.act-escape-section {
    background: #ffffff;
    overflow: hidden;
    padding: 60px 0 80px;
}
.act-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 60px;
}
@media (max-width: 1024px) {
    .act-page-grid { grid-template-columns: repeat(2, 1fr); padding: 0 30px; }
}
@media (max-width: 600px) {
    .act-page-grid { grid-template-columns: 1fr; padding: 0 16px; }
    .act-escape-section .tpkg-header { padding: 0 16px !important; }
}

.tpkg-header1{

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1800px;
    margin: 0 auto 48px;
  

}
/* Shared container — matches packages/other sections */
.act-escape-inner {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 50px;
}
/* Header row */
.act-escape-header {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}
.act-escape-header__title {
    flex: 0 0 340px;
    line-height: 1;
}
.act-escape-header__line1 {
    display: block;
    font-family: 'Rudge','Cinzel', serif;
    font-size: clamp(52px, 5.5vw, 84px);
    font-weight: 700;
    color: var(--secondary-color);
    -webkit-text-fill-color: var(--secondary-color) !important;
    background: none !important;
    letter-spacing: 0.03em;
    line-height: 1;
}
.act-escape-header__line2 {
    display: block;
    font-family: 'Rudge','Cinzel', serif;
    font-size: clamp(16px, 2vw, 26px);
    font-weight: 700;
    color: #111;
    letter-spacing: 0.06em;
    line-height: 1.25;
    margin-top: 6px;
   
}
.act-escape-header__desc {
    flex: 1;
    padding-top: 10px;
}
.act-escape-header__desc p {
    font-size: 15px !important;
    color: #555 !important;
    line-height: 1.8 !important;
    margin: 0 !important;
    max-width: 520px;
}
.act-escape-header__cta {
    flex-shrink: 0;
    padding-top: 8px;
}
.act-escape-header__btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff !important;
    text-decoration: none !important;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.2s;
    white-space: nowrap;
}
.act-escape-header__btn:hover { background: var(--secondary-color); color: #fff !important; }
/* Slider row — arrows left, cards right — all within inner container */
.act-escape-slider-row {
    display: flex;
    align-items: center;
    gap: 0;
}
/* Left arrow column */
.act-escape-arrows {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    flex-shrink: 0;
    padding-right: 28px;
}
.act-escape-prev,
.act-escape-next {
    background: none;
    border: none;
    font-size: 50px;
    color: #444;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
    transition: color 0.2s;
    display: block;
}
.act-escape-prev:hover,
.act-escape-next:hover { color: var(--primary-color); }
/* Viewport */
.act-escape-viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.act-escape-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
/* Cards — 3 per view */
.act-escape-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
    position: relative;
    height: 520px;
    overflow: hidden;
}
.act-escape-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.act-escape-card:hover img { transform: scale(1.05); }
.act-escape-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.28) 45%, transparent 68%);
    z-index: 1;
}
.act-escape-card__content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 28px 32px 34px;
}
.act-escape-card__sub {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.act-escape-card__title {
    font-family: 'Rudge','Cinzel', serif !important;
    font-size: clamp(22px, 2.4vw, 34px) !important;
    font-weight: 700 !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    line-height: 1.15 !important;
    margin: 0 0 12px !important;
    letter-spacing: 0.05em !important;
}
.act-escape-card__desc {
    font-size: 13px !important;
    color: rgba(255,255,255,0.78) !important;
    line-height: 1.65 !important;
    margin: 0 0 18px !important;
}
.act-escape-card__link {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #fff !important;
    text-decoration: none !important;
    text-transform: uppercase;
    border-bottom: 1.5px solid rgba(255,255,255,0.55);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
}
.act-escape-card__link:hover {
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
}
/* Scroll indicator */
.act-escape-scroll-ind {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0,0,0,0.28);
}
/* Responsive */
@media (max-width: 1100px) {
    .act-escape-inner { padding: 0 40px; }
    .act-escape-header__title { flex: 0 0 260px; }
}
@media (max-width: 900px) {
    .act-escape-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 768px) {
    .act-escape-inner { padding: 0 20px; }
    .act-escape-header { flex-direction: column; gap: 20px; }
    .act-escape-header__title { flex: none; }
    .act-escape-card { flex: 0 0 85%; height: 400px; }
}
/* Dragging cursor */
.act-escape-viewport.is-dragging { cursor: grabbing !important; }
.act-escape-viewport { cursor: grab; }

/* ═══════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════ */
.wcu-section {
    background: #ffffff;
    overflow: hidden;
}
.wcu-wrap {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 50px;
}
/* Left text */
.wcu-content {
    flex: 0 0 58%;
    padding: 80px 60px 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wcu-heading {
    font-family: 'Rudge','Cinzel', serif !important;
    font-size: clamp(32px, 4vw, 58px) !important;
    font-weight: 400 !important;
    color: var(--primary-color) !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    background: none !important;
    line-height: 1.15 !important;
    margin: 0 0 36px !important;
    letter-spacing: 0.02em !important;
}
.wcu-body {
    margin-bottom: 28px;
}
.wcu-body p {
    font-size: 15px !important;
    color: #3a3a3a !important;
    line-height: 1.85 !important;
    margin: 0 0 18px !important;
}
.wcu-body p:last-child { margin-bottom: 0 !important; }
.wcu-tagline {
    font-size: 15px !important;
    font-weight: 700 !important;
    font-style: italic !important;
    color: var(--secondary-color) !important;
    -webkit-text-fill-color: var(--secondary-color) !important;
    background: none !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}
/* Right image */
.wcu-image {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 480px;
}
.wcu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: none;
    transition: transform 0.5s ease;
}
.wcu-section:hover .wcu-image img { transform: scale(1.03); }
/* Responsive */
@media (max-width: 1100px) {
    .wcu-wrap { padding: 0 40px; }
    .wcu-content { padding: 60px 40px 60px 0; }
}
@media (max-width: 768px) {
    .wcu-wrap { flex-direction: column; padding: 0 24px; }
    .wcu-content { flex: none; padding: 48px 0 32px; }
    .wcu-image { min-height: 300px; }
}

/* ══════════════════════════════════════════════
   About Section v2 — text left / image mosaic right
   ══════════════════════════════════════════════ */
.ab2-section {
    position: relative;
    background: #f4f0ea;
    overflow: hidden;
    padding: 90px 0 90px;
}

/* Sketch background illustration */
.ab2-sketch {
    position: absolute;
    left: -2%;
    bottom: 0;
    width: 38%;
    height: 90%;
    pointer-events: none;
    opacity: 0.18;
}
.ab2-sketch svg { width: 100%; height: 100%; }

/* Inner flex container */
.ab2-inner {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* ── Left: text ── */
.ab2-content {
    flex: 0 0 42%;
    max-width: 42%;
}

.ab2-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #2a9d8f;
    margin-bottom: 20px;
}

.ab2-heading {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(24px, 3vw, 46px) !important;
    font-weight: 700 !important;
    line-height: 1.18 !important;
    color: #0d2137 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.01em !important;
    margin: 0 0 24px !important;
}

.ab2-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px !important;
    color: #6b6b6b !important;
    line-height: 1.85 !important;
    max-width: 420px;
    margin: 0 0 36px !important;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Outlined "DISCOVER MORE →" button */
.ab2-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #0d2137 !important;
    border: 1.5px solid #0d2137;
    padding: 13px 28px;
    transition: background 0.3s ease, color 0.3s ease;
}
.ab2-btn:hover {
    background: #0d2137;
    color: #fff !important;
}
.ab2-btn svg { flex-shrink: 0; transition: transform 0.3s ease; }
.ab2-btn:hover svg { transform: translateX(4px); fill: #fff; }

/* ── Right: image mosaic ── */
.ab2-mosaic {
    flex: 1;
    position: relative;
}

/* Decorative plane */
.ab2-deco-plane {
    position: absolute;
    top: -20px;
    left: 18%;
    z-index: 3;
    pointer-events: none;
}

/* Decorative leaf */
.ab2-deco-leaf {
    position: absolute;
    top: -16px;
    right: -10px;
    z-index: 3;
    pointer-events: none;
}

/* 2-column image grid */
.ab2-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 230px 190px;
    gap: 14px;
}

.ab2-img {
    overflow: hidden;
    border-radius: 18px !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.ab2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}
.ab2-img:hover img { transform: scale(1.06); }

/* Top-left: tall rock/sigiriya */
.ab2-img--a {
    grid-column: 1;
    grid-row: 1;
}
/* Top-right: smaller (whale/ocean) */
.ab2-img--b {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    height: 165px;
}
/* Bottom-left: beach */
.ab2-img--c {
    grid-column: 1;
    grid-row: 2;
}
/* Bottom-right: waterfall, offset up */
.ab2-img--d {
    grid-column: 2;
    grid-row: 2;
    margin-top: -30px;
    height: 220px;
}

/* Responsive */
@media (max-width: 1100px) {
    .ab2-inner { gap: 48px; padding: 0 40px; }
    .ab2-content { flex: 0 0 44%; max-width: 44%; }
}
@media (max-width: 900px) {
    .ab2-section { padding: 64px 0; }
    .ab2-inner { flex-direction: column; padding: 0 28px; gap: 48px; }
    .ab2-content { flex: none; max-width: 100%; }
    .ab2-desc { -webkit-line-clamp: unset; }
    .ab2-mosaic { width: 100%; }
    .ab2-sketch { width: 60%; opacity: 0.1; }
}
@media (max-width: 600px) {
    .ab2-section { padding: 48px 0; }
    .ab2-inner { padding: 0 18px; gap: 36px; }
    .ab2-heading { font-size: clamp(20px, 6vw, 32px) !important; }
    .ab2-grid { grid-template-rows: 180px 150px; gap: 10px; }
    .ab2-img--b { height: 130px; }
    .ab2-img--d { height: 170px; margin-top: -20px; }
}

/* ── Plan Your Trip button (outlined style matching design) ── */
.hdr-plantrip {
    flex-direction: row !important;
    gap: 10px !important;
    padding: 0 28px !important;
    border: 1.5px solid rgba(255,255,255,0.6) !important;
    border-left: 1.5px solid rgba(255,255,255,0.6) !important;
    margin: auto 20px auto 0;
    height: 42px !important;
    align-self: center;
    overflow: visible !important;
}
.hdr-plantrip::before { display: none !important; }
.hdr-plantrip:hover { background: rgba(255,255,255,0.12) !important; }
.hdr-plantrip .hdr-booknow__text {
    font-size: 13px !important;
    letter-spacing: 0.14em !important;
    font-weight: 600 !important;
}
.hdr-plantrip .hdr-plantrip__arrow {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    color: #fff;
    transition: transform 0.3s ease;
}
.hdr-plantrip:hover .hdr-plantrip__arrow {
    transform: translateX(4px);
}
.hdr-plantrip .hdr-booknow__line { display: none !important; }
#header.header-scrolled .hdr-plantrip {
    border-color: rgba(0,0,0,0.25) !important;
}
#header.header-scrolled .hdr-plantrip .hdr-plantrip__arrow {
    color: var(--primary-color);
}

/* ── Hero: nav font size tighter ── */
.hdr-nav li a {
    font-size: 14px !important;
    letter-spacing: 0.04em !important;
}

/* ── Hero overlay: left-center aligned ── */
.banner-hero-overlay {
    align-items: center !important;
    padding: 0 7% 80px !important;
}
.banner-hero-overlay__content {
    max-width: 660px !important;
}

/* Hero: DISCOVER eyebrow tag */
.hero-discover-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 18px;
    position: relative;
    padding-left: 36px;
}
.hero-discover-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 26px;
    height: 1px;
    background: rgba(255,255,255,0.55);
}

/* Hero h1: bold, large */
.banner-hero-overlay__content h1 {
    font-size: clamp(42px, 6.5vw, 92px) !important;
    font-weight: 700 !important;
    letter-spacing: -1px !important;
    line-height: 1.0 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
}

/* Hero paragraph */
.banner-hero-overlay__content p {
    font-size: clamp(14px, 1.3vw, 16px) !important;
    color: rgba(255,255,255,0.85) !important;
    line-height: 1.75 !important;
    max-width: 440px !important;
    margin-bottom: 36px !important;
    letter-spacing: 0.02em !important;
}

/* Hero CTA buttons row */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

/* Primary filled button */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none !important;
    padding: 15px 32px;
    transition: background 0.3s ease, transform 0.2s ease;
    border: 2px solid var(--primary-color);
}
.hero-btn-primary:hover {
    background: transparent;
    color: #fff !important;
    transform: translateY(-2px);
}
.hero-btn-primary svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.hero-btn-primary:hover svg { transform: translateX(4px); }

/* Watch video button */
.hero-btn-video {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.88) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: color 0.3s ease;
}
.hero-btn-video:hover { color: #fff !important; }
.hero-btn-video__icon {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.hero-btn-video:hover .hero-btn-video__icon {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}

/* ── Pillar icons (replace numbers) ── */
.cdc-pillar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border: 1.5px solid rgba(0,0,0,0.12);
    color: var(--primary-color);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.cdc-pillar:hover .cdc-pillar__icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.cdc-pillar__icon svg {
    display: block;
    transition: stroke 0.3s ease;
}
.cdc-pillar:hover .cdc-pillar__icon svg {
    stroke: #fff;
}
/* Tighten pillar text */
.cdc-pillar h3 {
    font-size: 11px !important;
    letter-spacing: 2.5px !important;
}
.cdc-pillar p {
    font-size: 12px !important;
    line-height: 1.85 !important;
}

@media (max-width: 768px) {
    .hero-cta-row { gap: 20px; }
    .banner-hero-overlay { padding: 0 24px 60px !important; }
    .hdr-plantrip { display: none !important; }
    .hdr-plantrip .hdr-booknow__text { font-size: 11px !important; }
}

/* Final No-Radius Override (Site-wide frontend) */
body *,
body *::before,
body *::after {
	border-radius: 0 !important;
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
	border-start-start-radius: 0 !important;
	border-start-end-radius: 0 !important;
	border-end-end-radius: 0 !important;
	border-end-start-radius: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
 * DESTINATIONS SECTION — dest2-*
 * ═══════════════════════════════════════════════════════════════════════════ */
.dest2-section {
    background: #fff;
    padding: 80px 0;
}
.dest2-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}
.dest2-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}
.dest2-title {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(16px, 2vw, 26px) !important;
    font-weight: 700 !important;
    color: #0d2137 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em;
    margin: 0 !important;
}
.dest2-viewall {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #0d2137;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color 0.2s;
}
.dest2-viewall:hover { color: var(--primary-color); }
.dest2-slider-wrap {
    position: relative;
    overflow: hidden;
    padding-right: 64px;
}
.dest2-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dest2-card {
    flex: 0 0 260px;
    background: #fff;
 
    
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}
.dest2-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.14); }
.dest2-card__img {
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.dest2-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}
.dest2-card:hover .dest2-card__img img { transform: scale(1.06); }
.dest2-card__body {
    padding: 20px 18px 22px;
}
.dest2-card__name {
    font-family: 'Cinzel', serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0d2137 !important;
    margin: 0 0 8px !important;
    letter-spacing: 0.04em;
}
.dest2-card__desc {
    font-size: 13px !important;
    color: #666 !important;
    line-height: 1.6 !important;
    margin: 0 0 12px !important;
}
.dest2-card__province {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.dest2-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    background: #0d2137;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
    transition: background 0.2s;
    flex-shrink: 0;
}
.dest2-arrow:hover { background: var(--primary-color); }

/* ═══════════════════════════════════════════════════════════════════════════
 * TOUR PACKAGES SECTION — pkgnew-*
 * ═══════════════════════════════════════════════════════════════════════════ */
.pkgnew-section {
    background: #f8f7f4;
    padding: 80px 0;
}
.pkgnew-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}
.pkgnew-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}
.pkgnew-title {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(16px, 2vw, 26px) !important;
    font-weight: 700 !important;
    color: #0d2137 !important;
    text-transform: uppercase !important;
    margin: 0 !important;
}
.pkgnew-viewall {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #0d2137;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color 0.2s;
}
.pkgnew-viewall:hover { color: var(--primary-color); }
.pkgnew-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pkgnew-card {
    position: relative;
    height: 480px;
    border-radius: 12px !important;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s;
}
.pkgnew-card:hover { transform: translateY(-4px); }
.pkgnew-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,33,55,0.1) 0%, rgba(13,33,55,0.88) 100%);
    pointer-events: none;
}
.pkgnew-card__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    padding: 6px 14px;
    text-transform: uppercase;
    z-index: 2;
}
.pkgnew-card__body {
    position: relative;
    z-index: 2;
    padding: 28px 24px 24px;
    color: #fff;
}
.pkgnew-card__name {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(15px, 1.5vw, 20px) !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 0 12px !important;
    text-transform: uppercase !important;
    line-height: 1.35;
}
.pkgnew-card__locs {
    font-size: 12px !important;
    color: rgba(255,255,255,0.8) !important;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 8px !important;
}
.pkgnew-card__price {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #f5c842 !important;
    letter-spacing: 0.06em;
    margin: 0 0 18px !important;
}
.pkgnew-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.55);
    padding: 10px 20px;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: background 0.22s, border-color 0.22s;
}
.pkgnew-card__btn:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.pkgnew-empty { text-align: center; padding: 60px; color: #888; }

/* ═══════════════════════════════════════════════════════════════════════════
 * STATS BAR — statsbar-*
 * ═══════════════════════════════════════════════════════════════════════════ */
.statsbar-section {
    background: #0d2137;
    padding: 52px 0;
}
.statsbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.statsbar-item {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    justify-content: center;
    min-width: 180px;
}
.statsbar-icon { color: var(--primary-color); flex-shrink: 0; }
.statsbar-body {
    display: flex;
    flex-direction: column;
}
.statsbar-num {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(24px, 2.4vw, 36px) !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1;
}
.statsbar-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    margin-top: 5px;
}
.statsbar-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
 * TESTIMONIALS QUOTE — tquote-*
 * ═══════════════════════════════════════════════════════════════════════════ */
.tquote-section {
    position: relative;
    background: #f4f0ea;
    padding: 100px 0 90px;
    overflow: hidden;
    text-align: center;
}
.tquote-sketch {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.85;
}
.tquote-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 40px;
}
.tquote-slides { position: relative; min-height: 280px; }
.tquote-slide { display: none; }
.tquote-slide.is-active {
    display: block;
    animation: tqFade 0.5s ease;
}
@keyframes tqFade {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.tquote-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 100px;
    line-height: 0.7;
    color: var(--primary-color);
    opacity: 0.28;
    display: block;
    margin-bottom: 18px;
    pointer-events: none;
    user-select: none;
}
.tquote-heading {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(20px, 2.6vw, 32px) !important;
    font-weight: 700 !important;
    color: #0d2137 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em;
    line-height: 1.35 !important;
    margin: 0 0 22px !important;
    font-style: italic !important;
}
.tquote-body {
    font-size: 15px !important;
    color: #555 !important;
    line-height: 1.85 !important;
    margin: 0 0 22px !important;
}
.tquote-attr {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #0d2137;
    text-transform: uppercase;
    margin: 0;
}
.tquote-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 38px;
}
.tquote-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    border: 1.5px solid #0d2137;
    background: transparent;
    color: #0d2137;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.22s, color 0.22s;
}
.tquote-arrow:hover { background: #0d2137 !important; color: #fff !important; }

/* ═══════════════════════════════════════════════════════════════════════════
 * NEWS & GUIDES SECTION — news2-*
 * ═══════════════════════════════════════════════════════════════════════════ */
.news2-section {
    background: #fff;
    padding: 80px 0;
}
.news2-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}
.news2-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}
.news2-title {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(16px, 2vw, 26px) !important;
    font-weight: 700 !important;
    color: #0d2137 !important;
    text-transform: uppercase !important;
    margin: 0 !important;
}
.news2-viewall {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #0d2137;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color 0.2s;
}
.news2-viewall:hover { color: var(--primary-color); }
.news2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.news2-card {
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    background: #fff;
    transition: box-shadow 0.3s, transform 0.3s;
}
.news2-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); transform: translateY(-4px); }
.news2-card__img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.news2-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.42s ease;
    display: block;
}
.news2-card:hover .news2-card__img-wrap img { transform: scale(1.06); }
.news2-card__date {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    color: #0d2137;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 10px;
    z-index: 2;
    text-transform: uppercase;
}
.news2-card__body { padding: 22px 20px 24px; }
.news2-card__title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0d2137 !important;
    line-height: 1.5 !important;
    margin: 0 0 16px !important;
}
.news2-card__link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.news2-card__link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════════════════════
 * FOOTER — footer2-*
 * ═══════════════════════════════════════════════════════════════════════════ */
.footer2 {
    background: #0d2137;
    color: #fff;
}
.footer2-top {
    padding: 70px 0 55px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer2-cols {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}
.footer2-logo-wrap { display: block; margin-bottom: 18px; }
.footer2-logo-wrap img {
    max-height: 64px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}
.footer2-brand-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
    display: block;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}
.footer2-tagline {
    font-size: 13px !important;
    color: rgba(255,255,255,0.6) !important;
    line-height: 1.75 !important;
    margin: 0 0 24px !important;
}
.footer2-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer2-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    border: 1.5px solid rgba(255,255,255,0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65) !important;
    font-size: 14px;
    text-decoration: none !important;
    transition: border-color 0.2s, color 0.2s;
}
.footer2-social-link:hover {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}
.footer2-col__title {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.22em;
    color: #fff !important;
    text-transform: uppercase !important;
    margin: 0 0 22px !important;
    padding-bottom: 10px;
    border-bottom: 1.5px solid var(--primary-color);
    display: inline-block;
}
.footer2-col__list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.footer2-col__list li {
    margin-bottom: 10px;
}
.footer2-col__list a {
    font-size: 13px !important;
    color: rgba(255,255,255,0.62) !important;
    text-decoration: none !important;
    transition: color 0.2s;
    line-height: 1.6;
}
.footer2-col__list a:hover { color: var(--primary-color) !important; }
.footer2-col__list--contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}
.footer2-col__list--contact svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}
.footer2-col__list--contact span {
    font-size: 13px !important;
    color: rgba(255,255,255,0.62) !important;
    line-height: 1.6;
}
.footer2-bottom {
    text-align: center;
    padding: 22px 20px;
    background: rgba(0,0,0,0.25);
}
.footer2-bottom p {
    font-size: 12px !important;
    color: rgba(255,255,255,0.48) !important;
    margin: 0 !important;
    letter-spacing: 0.06em;
}

/* ── Responsive: tablet ───────────────────────────── */
@media (max-width: 1100px) {
    .dest2-inner, .pkgnew-inner, .news2-inner { padding: 0 36px; }
    .statsbar-inner { padding: 0 36px; }
    .footer2-cols { padding: 0 36px; grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
    .footer2-col--brand { grid-column: 1 / -1; }
    .pkgnew-grid { grid-template-columns: repeat(2, 1fr); }
    .news2-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive: mobile ───────────────────────────── */
@media (max-width: 768px) {
    .dest2-inner, .pkgnew-inner, .news2-inner { padding: 0 20px; }
    .statsbar-inner { padding: 0 20px; flex-direction: column; gap: 28px; }
    .statsbar-divider { width: 80px; height: 1px; }
    .dest2-section, .pkgnew-section, .news2-section { padding: 60px 0; }
    .dest2-card { flex: 0 0 220px; }
    .dest2-card__img { height: 240px; }
    .pkgnew-grid { grid-template-columns: 1fr; }
    .pkgnew-card { height: 420px; }
    .news2-grid { grid-template-columns: 1fr; }
    .tquote-section { padding: 70px 0; }
    .tquote-inner { padding: 0 24px; }
    .tquote-heading { font-size: 20px !important; }
    .footer2-cols { grid-template-columns: 1fr 1fr; padding: 0 24px; gap: 28px; }
    .footer2-col--brand { grid-column: 1 / -1; }
    .footer2-top { padding: 50px 0 40px; }
}

/* ══ CRITICAL: Override conflicting global footer styles ══ */
footer.footer2 {
    padding: 0 !important;
    text-align: left !important;
    background: #0d2137 !important;
}
footer.footer2 img {
    width: auto !important;
    height: auto !important;
    max-height: 70px !important;
    max-width: 200px !important;
    object-fit: contain !important;
}
footer.footer2 p {
    font-size: inherit !important;
    color: inherit !important;
}
/* ══ Section isolation — prevent inherited section resets breaking layout ══ */
.dest2-section,
.pkgnew-section,
.statsbar-section,
.tquote-section,
.news2-section {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}
/* ══ Grid/flex children must NOT have forced full width from img reset ══ */
.dest2-card__img img,
.pkgnew-card,
.news2-card__img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.footer2-logo-wrap img {
    width: auto !important;
    height: auto !important;
    max-height: 70px !important;
    max-width: 180px !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) !important;
}

/* ══ Testimonial: only .is-active slide shown; inline script sets it synchronously ══ */
.tquote-slide              { display: none !important; }
.tquote-slide.is-active    { display: block !important; }

/* ══ Ensure pkgnew image covers full card even if background-image has issues ══ */
.pkgnew-card {
    background-color: #0d2137 !important; /* dark fallback when image hasn't loaded */
}

/* ══ Make dest2-card link cover entire image area ══ */
.dest2-card__img {
    text-decoration: none !important;
    color: inherit !important;
}

/* ══ Prevent global a:hover color from bleeding onto card links ══ */
.dest2-card__img:hover,
.news2-card__link:hover {
    text-decoration: none !important;
}
