/* 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: #2cb5ad;
	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%, #2cb5ad 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: #2cb5ad;
		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: #2cb5ad;
		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: #2cb5ad;
		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-section {
	padding: 40px 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.itinerary>ul>li:last-child {


	border-bottom: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.Language {

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

}

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

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

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

}

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

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

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

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

	display: none !important;
}

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

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

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

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

}

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

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

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

.additional h5 {

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

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

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

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

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

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

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

}

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

}

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

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

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

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

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

@media (min-width:992px) {






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

		filter: none;
	}

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

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

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

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

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

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

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


@media (max-width:992px) {


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

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

	.packages {
		margin: 20px 0;
	}

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

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

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

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

	.contact-item i {

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

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

	}

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

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

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

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

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

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

	.banner-text {
		width: 95%;
	}

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

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

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

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

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

	.destination {
		text-align: center;
	}

	#itemSplide .splide__slide h5 {

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

	}

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

		position: relative;
	}

	.order-1 {
		order: 1;
	}

	.order-2 {
		order: 2;
	}

	.order-3 {
		order: 3;
	}






	.destination-map img {

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

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

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

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

	}

	.hero-content {
		width: 95%;
	}

	.hero-date {
		display: flex;
	}

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

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

	.destination-item {
		margin: 10px;
	}

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

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

	}

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



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

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

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

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

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

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


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

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

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

	.navbar-toggler-icon {

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



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

	}

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

		border-bottom: none
	}

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	body.home .tours-packages-head p {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}
	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;
}

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