/* 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: var(--text-color);
	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 .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: 450px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	overflow: hidden;
}

.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;
}

.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-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: 17px !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';
}

/* ===== Itinerary Accordion — Day Number Timeline ===== */
.itinerary--accordion {
    position: relative;
}
.itinerary--accordion > ul {
    counter-reset: itin-day;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.itinerary--accordion > ul::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(var(--primary-rgb), 0.08));
}
.itinerary--accordion > ul > li {
    counter-increment: itin-day;
    position: relative;
    padding: 0 0 28px 70px;
    margin: 0;
    border-bottom: none !important;
}
.itinerary--accordion > ul > li:last-child {
    padding-bottom: 0;
}
/* Day number circle */
.itinerary--accordion > ul > li::before {
    content: counter(itin-day, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 2px;
    width: 52px;
    height: 52px;
    background: var(--primary-color);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.35);
    letter-spacing: 0;
}
/* Override old icon ::before */
.itinerary--accordion h5::before,
.itinerary--accordion h5.itin-no-icon::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}
.itinerary--accordion h5 {
    cursor: default;
    padding: 6px 0 8px 0 !important;
    display: block !important;
    margin-bottom: 0;
    border-bottom: none;
}
/* "Day 01:" label */
.itinerary--accordion h5 strong {
    display: block;
    font-size: 15px !important;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 3px;
    margin-right: 0;
}
/* Location / title */
.itinerary--accordion h5 {
    font-size: 17px !important;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}
/* Content area */
.itinerary--accordion > ul > li > div {
    background: #f9f7f4;
    border-left: 3px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
    margin-top: 4px;
}
.itinerary--accordion > ul > li > div ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.itinerary--accordion > ul > li > div ul li {
    font-size: 17px;
    color: #555;
    padding-left: 16px;
    margin-bottom: 5px;
    position: relative;
    border: none !important;
}
.itinerary--accordion > ul > li > div ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}
.itinerary--accordion > ul > li > div p {
    font-size: 15px;
    color: #666;
    margin: 6px 0 0;
}

@media (max-width: 767px) {
    .itinerary--accordion > ul::before { left: 20px; }
    .itinerary--accordion > ul > li { padding-left: 56px; padding-bottom: 22px; }
    .itinerary--accordion > ul > li::before { width: 42px; height: 42px; font-size: 14px; }
    .itinerary--accordion > ul > li > div { padding: 10px 12px; }
    .itinerary--accordion > ul > li > div ul li { font-size: 16px; }
}

.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: 100vw;
		height: 100vh;
		position: fixed !important;
		top: 0;
		left: 0;
		background-color: rgba(255, 255, 255, 0.98);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-16px);
		transition: opacity 0.28s ease, transform 0.28s ease;
		z-index: 5;
	}

	.collapse.show .navbar-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(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;
	}
}
	footer {
		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 on homepage header */
body.home #header {
	top: 10px !important;
}

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: 18px;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    margin-top: 3px;
}
.fp-card__badge small {
    display: block;
    font-size: 20px;
    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: 20px 16px 20px; min-height: auto; }

    /* Heading stays full width at top */
    .dest-hero-heading   { padding-bottom: 14px; }

    /* Stack info card + thumbs card vertically */
    .dest-hero-content-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    /* Info card — outlined glass box (shows BELOW thumbs) */
    .dest-hero-info {
        order: 2;
        max-width: 100%;
        border-radius: 14px;
        padding: 20px 18px;
        
    }
    .dest-hero-info__name { font-size: clamp(22px, 6vw, 30px) !important; margin-bottom: 10px; }
    .dest-hero-info__desc { font-size: 13px; margin-bottom: 16px; }
    .dest-hero-info__btn  { padding: 11px 22px; font-size: 11px; }

    /* Thumbs card — outlined box (shows ABOVE info) */
    .dest-hero-thumbs-wrap {
        order: 1;
        max-width: 100%;
        width: 100%;
        border-radius: 14px;
        padding: 10px;
       
        overflow: hidden;
    }
    .dest-hero-thumbs {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .dest-hero-thumb       { height: 160px; border-radius: 8px; }
    .dest-hero-thumb__name { font-size: 15px; bottom: 10px; left: 10px; }
}

/* 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 {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 18px;
    z-index: 10;
    transition: background 0.2s;
}
.activity-showcase-slider .slick-prev:hover,
.activity-showcase-slider .slick-next:hover {
    background: rgba(255,255,255,0.3);
}
.activity-showcase-slider .slick-prev { left: -24px; }
.activity-showcase-slider .slick-next { right: -24px; }
@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: 50vh !important;
        max-height: 69vh !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%;
    height: auto;
    display: block;
}

/* Mobile: scale cloud image naturally, stretch height to fill */
@media (max-width: 767px) {
    .hero-cloud-divider {
        height: 120px;
        overflow: hidden;
    }
    .hero-cloud-divider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
    }
}

/* ===== Mobile Menu Override ===== */
.main-menu { background: #fff !important; }
.main-menu .mobile-menu-shell {
    flex-direction: column !important;
    position: relative !important;
    background: #fff !important;
    width: 100% !important;
}
.main-menu .mobile-menu-visual {
    width: 100% !important;
    min-width: 100% !important;
    height: 84px !important;
    min-height: 84px !important;
    border-right: none !important;
    border-bottom: 1px solid #f0eeeb !important;
    background-image: none !important;
    background-color: #fff !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 24px !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;
}
/* Color logo — no filter */
.main-menu .mobile-menu-logo img {
    height: 48px !important;
    width: auto !important;
    filter: none !important;
}
.main-menu .menu-top {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    height: 84px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 22px !important;
}
/* Dark X button on white bg */
.main-menu .hamclose {
    background: #f5f1ee !important;
    border: 1px solid #e0dbd5 !important;
    color: #333 !important;
    padding: 0 !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
   
}
.main-menu .hamclose svg { stroke: #333 !important; width: 18px !important; height: 18px !important; }
.main-menu .mobile-menu-main {
    width: 100% !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    background: #fff !important;
}
.main-menu .menu-bottom {
    height: calc(100vh - 84px) !important;
    overflow-y: auto !important;
    background: #fff !important;
    padding: 0 0 30px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}
.main-menu .mobile-menu-list {
    background: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
}
.main-menu .mobile-menu-list li {
    border-bottom: 1px solid #f0eeeb !important;
    border-left: 3px solid transparent !important;
    transition: border-color 0.18s, background 0.18s !important;
}
.main-menu .mobile-menu-list li:hover {
    border-left-color: var(--primary-color) !important;
    background: #fdf9f6 !important;
}
.main-menu .mobile-menu-list li a {
    font-family: 'Cinzel', serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
  
    text-transform: uppercase !important;
    color: #1c1c1c !important;
    padding: 19px 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: transparent !important;
    transition: color 0.18s !important;
}
.main-menu .mobile-menu-list li a::after {
    content: '\203A';
    font-size: 24px;
    font-family: serif;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.35;
    transition: opacity 0.18s, transform 0.18s;
}
.main-menu .mobile-menu-list li:hover a { color: var(--primary-color) !important; }
.main-menu .mobile-menu-list li:hover a::after { opacity: 1; transform: translateX(3px); }
.main-menu .mobile-menu-cta {
    padding: 22px 22px !important;
    background: #fdf9f6 !important;
    margin-top: 0 !important;
    border-top: 3px solid var(--primary-color) !important;
}
.main-menu .mobile-menu-cta p { font-family: 'Montserrat', sans-serif !important; font-size: 12px !important; color: #999 !important; margin-bottom: 6px !important; }
.main-menu .mobile-menu-cta hr { border-color: #e8e2da !important; margin: 12px 0 !important; }
.main-menu .mobile-menu-plan-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    background: var(--primary-color) !important;
    color: #fff !important;
    font-family: 'Cinzel', serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    
    padding: 15px 20px !important;
    margin-bottom: 18px !important;
    text-decoration: none !important;
    border: none !important;
}


.main-menu .mobile-menu-phone {
    font-family: 'Cinzel', serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    display: block !important;
    margin-bottom: 6px !important;
    text-decoration: none !important;
}
.main-menu .mobile-menu-email {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    color: #111111 !important;
    text-decoration: none !important;
}

/* ===== Site Footer ===== */
.site-footer { background: #0f1c2e; color: rgba(255,255,255,0.7); }
.site-footer__top { padding: 70px 0 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.site-footer__logo-wrap { display: block; margin-bottom: 20px; }
.site-footer__logo { height: 52px; width: auto; filter: brightness(0) invert(1); }
.site-footer__about {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    line-height: 1.85;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
    max-width: 340px;
}
.site-footer__heading {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__nav { list-style: none; padding: 0; margin: 0; }
.site-footer__nav li { margin-bottom: 11px; }
.site-footer__nav li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
}
.site-footer__nav li a:hover { color: var(--primary-color); padding-left: 6px; }
.site-footer__contact { display: flex; flex-direction: column; gap: 16px; }
.site-footer__contact-row { display: flex; align-items: flex-start; gap: 12px; }
.site-footer__contact-row i { color: var(--primary-color); font-size: 15px; flex-shrink: 0; margin-top: 3px; }
.site-footer__contact-row span,
.site-footer__contact-row a {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    line-height: 1.65;
    transition: color 0.2s;
}
.site-footer__contact-row a:hover { color: var(--primary-color); }
.site-footer__bottom { padding: 18px 0; }
.site-footer__bottom p { font-family: 'Montserrat', sans-serif; font-size: 12px; color: rgba(255,255,255,0.35); margin: 0; }
.site-footer__bottom a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.site-footer__bottom a:hover { color: var(--primary-color); }
@media (max-width: 767px) {
    .site-footer__top { padding: 50px 0 36px; }
    .site-footer__about { max-width: 100%; }
    .site-footer__bottom .d-flex { flex-direction: column; gap: 6px !important; text-align: center; }
}

/* 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: 36px !important;
}
body.home #header {
    top: 46px !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: 60px 0 36px;
    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; }
/* ===== Package Showcase Cards ===== */
.pkg-showcase-slider .slide-item { padding: 0 10px; }

.pkg-show-card {
    position: relative;
    height: 560px;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0,0,0,0.30);
    display: flex;
    flex-direction: column;
}
.pkg-show-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
    z-index: 0;
}
.pkg-show-card:hover img { transform: scale(1.06); }

/* Overlay — image visible in center, dark at top & bottom */
.pkg-show-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0)  0%,
        rgba(0,0,0,0.04)  20%,
        rgba(0, 0, 0, 0)  48%,
        rgba(0,0,0,0.60)  68%,
        rgba(0, 0, 0, 0.658)  84%,
        rgba(0,0,0,0.94)  100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* ---------- Top bar ---------- */
.pkg-show-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 20px 0;
}

/* Category icon — hidden */
.pkg-show-cat-icon { display: none !important; }
.pkg-show-cat-icon-unused {
    width: 46px;
    height: 46px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid #c8a96e;
    background: rgba(0,0,0,0.42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8a96e;
    font-size: 18px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.pkg-show-cat-icon i { line-height: 1; pointer-events: none; }

/* Duration badge */
.pkg-show-dur-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 30px;
    padding: 7px 15px;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.20);
}
.pkg-show-dur-badge i { font-size: 18px; }

/* ---------- Content block — pushed to bottom ---------- */
.pkg-show-content {
    margin-top: auto;
    padding: 0 20px 14px;
}
.pkg-show-title {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(19px, 1.9vw, 28px) !important;
    font-weight: 700;
    color: #fff;
    line-height: 1.22;
    margin: 0 0 9px;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 14px rgba(0,0,0,0.60);
}
.pkg-show-tags {
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    color: #c8a96e;
    letter-spacing: 0.14em;
    margin: 0 0 9px;
    text-transform: uppercase;
}
.pkg-show-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.pkg-show-location i { font-size: 20px; flex-shrink: 0; }

/* ---------- Action buttons — brand color bar ---------- */
.pkg-show-actions {
    display: flex;
    align-items: stretch;
    background: var(--primary-color);
    border-top: 1px solid rgba(255,255,255,0.14);
}
.pkg-show-btn-primary {
    flex: 1;
    display: flex;
    align-items: center;
   
    gap: 9px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.13em;
    color: #fff;
    background: transparent;
    text-decoration: none;
    padding: 15px 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
    transition: color 0.22s, background 0.22s;
    text-transform: uppercase;
    white-space: nowrap;
}
.pkg-show-btn-primary:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    text-decoration: none;
}
.pkg-show-btn-arrow { font-size: 14px; transition: transform 0.22s; }
.pkg-show-btn-primary:hover .pkg-show-btn-arrow { transform: translateX(4px); }

.pkg-show-btn-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.85);
    background: transparent;
    text-decoration: none;
    padding: 15px 14px;
    white-space: nowrap;
    transition: color 0.22s, background 0.22s;
    text-transform: uppercase;
}
.pkg-show-btn-detail:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
    text-decoration: none;
}
.pkg-show-btn-detail i { font-size: 14px; }

/* ===== 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: 1024px) {
    .pkg-show-card { height: 500px; }
    .pkg-show-cat-icon { width: 40px; height: 40px; font-size: 16px; }
}

@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: 440px; border-radius: 12px; }
    .pkg-show-topbar  { padding: 14px 14px 0; }
    .pkg-show-content { padding: 0 14px 12px; }
    .pkg-show-cat-icon { width: 36px; height: 36px; font-size: 14px; }
    .pkg-show-dur-badge { font-size: 15px; padding: 5px 11px; }
    .pkg-show-title { font-size: clamp(14px, 5vw, 18px) !important; margin-bottom: 6px; }
    .pkg-show-tags { font-size: 9px; }
    .pkg-show-location { font-size: 15px; }
    .pkg-show-btn-primary { font-size: 15px; padding: 12px 18px; }
    .pkg-show-btn-detail  { font-size: 12px; padding: 12px 10px; }
    .pkg-show-btn-detail i { font-size: 12px; }
}

/* ===== 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; }

@media (max-width: 767px) {
    .news-diary-section { padding: 20px 0 20px; }
    .news-fp-slider .slick-track { display: flex !important; }
    .news-fp-slider .slick-slide { height: auto !important; }
    .news-fp-slider .slide-item { padding: 0 5px; }
}

/* ===== Package Gallery (custom slider) ===== */
.pkg-gallery-wrap { width: 100%; }

.pkg-gallery-main {
    position: relative;
    width: 100%;
    border-radius: 0 !important;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16 / 9;
}
.pkg-gallery-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}
.pkg-gallery-slide.active {
    display: block;
}
.pkg-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pkg-gal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.88);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #222;
    box-shadow: 0 2px 12px rgba(0,0,0,0.22);
    transition: background 0.2s, color 0.2s;
}
.pkg-gal-arrow:hover { background: var(--primary-color); color: #fff; }
.pkg-gal-prev { left: 14px; }
.pkg-gal-next { right: 14px; }

.pkg-gallery-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.pkg-gal-thumb {
    flex: 0 0 calc(16.666% - 9px);
    border: none;
    padding: 0;
    border-radius: 0 !important;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s, box-shadow 0.2s;
    background: none;
}
.pkg-gal-thumb.active,
.pkg-gal-thumb:hover { opacity: 1; box-shadow: 0 0 0 2px var(--primary-color); }
.pkg-gal-thumb img { width: 100%; height: 70px; object-fit: cover; display: block; }

@media (max-width: 767px) {
    .pkg-gallery-main { aspect-ratio: 4/3; }
    .pkg-gal-thumb { flex: 0 0 calc(33.333% - 7px); }
    .pkg-gal-thumb img { height: 56px; }
    .pkg-gal-arrow { width: 34px; height: 34px; font-size: 15px; }
}

/* ===== Destination Detail – Map ===== */
.dest-map-wrap { width: 100%; overflow: hidden; }
.dest-map-wrap iframe { width: 100% !important; height: 280px; display: block; border: none; }
@media (max-width: 767px) { .dest-map-wrap iframe { height: 220px; } }

/* ===== About Page ===== */
.about-page-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: #111;
    line-height: 1.25;
    margin-bottom: 0;
}
.about-page-img-wrap {
    overflow: hidden;
    border-radius: 12px !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.about-page-img-wrap img {
    width: 100%;
    
    object-fit: cover;
    display: block;
}
.about-stats-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.about-stat-box {
    flex: 1;
    min-width: 130px;
    border: 1px solid #e8e0d8;
    border-left: 4px solid var(--primary-color);
    padding: 16px 18px;
    background: #faf8f5;
}
.about-stat-box strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}
.about-stat-box span {
    display: block;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #111;
    margin-bottom: 4px;
}
.about-stat-box p {
    font-size: 12px;
    color: #777;
    margin: 0;
    line-height: 1.4;
}
.about-why-section { padding-top: 40px; border-top: 1px solid #ece8e0; }
.about-why-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(20px, 2.5vw, 30px);
    color: #111;
    margin-top: 8px;
}
.about-feature-card { padding: 20px 10px; }
.about-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    background: #faf3eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
    color: var(--primary-color);
    border: 2px solid rgba(var(--primary-rgb, 123,28,46), 0.15);
}
.about-feature-title {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}
.about-feature-desc {
    font-size: 11px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 767px) {
    .about-page-section .col-lg-6 { text-align: center; }
    .about-page-section .pkg-section-head { justify-content: center; }
    .about-stats-row { justify-content: center; }
    .about-stat-box { text-align: left; }
    .about-stat-box strong { font-size: 26px; }
    .about-page-img-wrap img { height: 260px; }
    .about-feature-icon { width: 48px; height: 48px; font-size: 18px; }
    .about-feature-title { font-size: 12px; }
}

/* ===== Package List Card (pkg-lc) ===== */
.pkg-lc {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.pkg-lc__img {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.pkg-lc__img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.pkg-lc:hover .pkg-lc__img img { transform: scale(1.04); }
.pkg-lc__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}
.pkg-lc__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.96);
    color: #222;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.pkg-lc__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 22px 20px;
}
.pkg-lc__name {
    font-family: var(--secondary-font, 'Cinzel', serif);
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.25;
    margin-bottom: 8px;
}
.pkg-lc__cat {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #c8a96e;
    margin-bottom: 8px;
}
.pkg-lc__loc {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pkg-lc__footer {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 22px;
    flex-shrink: 0;
}
.pkg-lc__explore {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}
.pkg-lc__explore:hover { opacity: 0.8; color: #fff; }
.pkg-lc__details {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}
.pkg-lc__details:hover { color: #fff; }

@media (max-width: 991px) { .pkg-lc__img img { height: 380px; } }
@media (max-width: 767px) {
    .pkg-lc__img img { height: 300px; }
    .pkg-lc__name { font-size: 17px; }
    .pkg-lc__cat { font-size: 11px; }
    .pkg-lc__loc { font-size: 11px; }
    .pkg-lc__badge { font-size: 15px; padding: 6px 11px; }
    .pkg-lc__footer { padding: 12px 16px; }
    .pkg-lc__explore { font-size: 12px; }
    .pkg-lc__details { font-size: 11px; }
}

/* ===== Contact Page ===== */

.contact-connect-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    color: #1a2a3a;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.contact-connect-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}
.contact-connect-line {
    display: inline-block;
    width: 60px;
    height: 2px;
    background: #c8a040;
}
.contact-connect-sub {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 28px;
}
.contact-review-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.contact-review-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e8e0d0;
    padding: 14px 20px;
    text-decoration: none;
    transition: box-shadow 0.2s;
    min-width: 200px;
}
.contact-review-badge:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.contact-review-badge img { width: 40px; height: 40px; object-fit: contain; }
.contact-review-info { text-align: left; }
.contact-review-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a2a3a;
    line-height: 1.3;
}
.contact-review-stars {
    display: block;
    font-size: 13px;
    color: #e8a020;
    margin-top: 3px;
}
.contact-review-stars strong { color: #1a2a3a; margin-left: 3px; }

/* Contact info cards */
.contact-info-card {
    background: #fff;
    border: 1px solid #e8e0d0;
    padding: 36px 28px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s;
}
.contact-info-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.09); }
.contact-info-card__plane {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 16px;
    color: #c8a040;
    opacity: 0.6;
    transform: rotate(-30deg);
}
.contact-info-card__icon {
    width: 64px;
    height: 64px;
    background: #1a2a3a;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: #c8a040;
}
.contact-info-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #1a2a3a;
    margin-bottom: 10px;
}
.contact-info-card__divider {
    width: 36px;
    height: 2px;
    background: #c8a040;
    margin: 0 auto 14px;
}
.contact-info-card__value {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}
.contact-info-card__value a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-info-card__value a:hover { color: var(--primary-color); }

/* Contact form */
.contact-form-label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #555;
    margin-bottom: 5px;
}
.contact-form-input {
    width: 100%;
    border: 1px solid #ddd;
    background: #fff;
    padding: 11px 14px;
    font-size: 18px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}
.contact-form-input:focus { border-color: var(--primary-color); }
textarea.contact-form-input { resize: vertical; min-height: 120px; }
.dest-map-wrap iframe { height: 340px !important; }

@media (max-width: 767px) {
    .contact-connect-title { font-size: 26px; }
    .contact-connect-line { width: 36px; }
    .contact-review-badge { min-width: 0; flex: 1; padding: 10px 14px; }
    .contact-info-card { padding: 28px 18px 22px; }
    .contact-info-card__icon { width: 52px; height: 52px; font-size: 20px; }
    .dest-map-wrap iframe { height: 240px !important; }
}

/* ===== Package Detail Page – New Design ===== */

/* Hero banner */
.pkg-hero-banner {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	
}
.pkg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.65) 100%);
}
.pkg-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px 80px;
    max-width: 860px;
    margin: 0 auto;
}
.pkg-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 5vw, 58px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 18px rgba(0,0,0,0.45);
	padding-top: 150px;
}
.pkg-hero-subtitle {
    font-size: clamp(13px, 1.8vw, 17px);
    color: rgba(255,255,255,0.88);
    margin-bottom: 22px;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
}
.pkg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 10px 22px;
    border-radius: 50px !important;
}

/* Section heading */
.pkg-section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.pkg-lotus-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}
.pkg-section-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--primary-color);
    flex-shrink: 0;
}
.pkg-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #111;
    margin: 0;
}
.pkg-section-sub {
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
    font-style: italic;
}
.pkg-section-block { margin-bottom: 40px; }
.pkg-description {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
}
.pkg-description p,
.pkg-description li,
.pkg-description span,
.dest-description,
.dest-description p,
.dest-description li,
.dest-description span {
    color: #444 !important;
}

/* Includes / Excludes titles */
.pkg-inc-title { color: var(--primary-color) !important; }
.pkg-exc-title { color: #c0392b !important; }

/* Contact panel */
.pkg-contact-panel {
    background: #1a3328;
   
    padding: 28px 24px 24px;
    color: #fff;
    position: sticky;
    top: 100px;
}
.pkg-contact-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(22px, 10px, 10px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    margin: 0 0 6px;
}
.pkg-contact-divider {
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 12px;
}
.pkg-contact-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 16px;
    line-height: 1.6;
}
.pkg-contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.pkg-contact-link {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,0.9);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.pkg-contact-link i {color: white; font-size: 16px; }
.pkg-contact-link:hover { color: #fff; }

/* Booking form inside contact panel */
.pkg-form-label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 4px;
}
.pkg-form-input {
    width: 100%;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 12px;
    font-size: 18px;
    color: #222;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Montserrat', sans-serif;
}
.pkg-form-input:focus { border-color: var(--primary-color); }
textarea.pkg-form-input { min-height: 100px; resize: vertical; }
select.pkg-form-input { cursor: pointer; }
.pkg-send-btn {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 13px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: 'Montserrat', sans-serif;
    
    margin-top: 4px;
}
.pkg-send-btn:hover { opacity: 0.88; }

/* Category card */
.pkg-cat-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px !important;
    height: 180px;
}
.pkg-cat-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pkg-cat-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 60%, transparent);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.pkg-cat-card__lotus { margin-bottom: 4px; }
.pkg-cat-card__title {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    color: #c8a96e;
    letter-spacing: 0.12em;
    margin: 0 0 4px;
}
.pkg-cat-card__sub {
    font-size: 11px;
    color: rgba(255,255,255,0.82);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .pkg-hero-banner { min-height: 360px; }
    .pkg-contact-panel { position: static; }
}
@media (max-width: 767px) {
    /* Banner */
    .pkg-hero-banner { min-height: 320px; }
    .pkg-hero-content { padding: 80px 20px 40px; }
    .pkg-hero-title { font-size: 30px; letter-spacing: 0.03em; }
    .pkg-hero-subtitle { font-size: 12px; margin-bottom: 14px; }
    .pkg-hero-badge { font-size: 17px; padding: 7px 14px; }

    /* Sections */
    .pkg-section-block { margin-bottom: 28px; }
    .pkg-section-title { font-size: 12px; letter-spacing: 0.12em; }
    .pkg-description { font-size: 13px; line-height: 1.65; }

    /* Includes/Excludes section title size */
    .pkg-section-title.pkg-inc-title,
    .pkg-section-title.pkg-exc-title { font-size: 11px; letter-spacing: 0.1em; }

    /* Itinerary day text */
    .itin-day-bubble { width: 42px !important; height: 42px !important; font-size: 14px !important; }
    .itinerary--accordion > ul > li { padding-left: 60px !important; padding-bottom: 20px !important; }
    .itinerary--accordion h5 { font-size: 16px !important; line-height: 1.5 !important; }
    .itinerary--accordion h5 strong { font-size: 12px !important; letter-spacing: 0.06em; }
    .itin-arrow { font-size: 18px !important; }

    /* Contact panel */
    .pkg-contact-panel { padding: 18px 14px; margin-top: 8px; }
   
    .pkg-contact-sub { font-size: 12px; }
    .pkg-contact-link { font-size: 20px; }
    .pkg-form-input { font-size: 18px; padding: 9px 10px; }
    .pkg-form-label { font-size: 18px; }
    .pkg-send-btn { font-size: 12px; padding: 12px; }
}

/* ===== Plan Your Trip Header Button ===== */
.header-talk-btn span,
a.inquire-btn span {
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
}
.header-talk-btn,
a.header-talk-btn {
    padding: 12px 22px !important;
    gap: 10px !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;
}
