@charset "UTF-8";
*, *::before, *::after {
	box-sizing: border-box;
}
/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
html {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}
/* Smooth scroll */
html {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	margin: 0;
	color: #2f2a25;
	background-color: #e9d1af;
	font-family: var(--default-font);
}
main {
	max-width: 1500px;
	margin: 0 auto;
}
a {
	color: #5b4632;
	text-decoration: none;
	transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
a:hover {
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
}
a:active {
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:visited {
	color: #f0dfc7;
}
h1, h2, h3, h4 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
	color: #28441e;
	font-family: var(--heading-font);
}
h1 {
	font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
h1 {
	font-size: 2.5rem;
}
}
h2 {
	font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
h2 {
	font-size: 2rem;
}
}
h3 {
	font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
h3 {
	font-size: 1.75rem;
}
}
h4 {
	font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
h4 {
	font-size: 1.5rem;
}
}
p {
	margin-top: 0;
	margin-bottom: 1rem;
}
::selection {
	background-color: #28441e;
	color: #ffffff;
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section {
	padding: 30px 30px;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	scroll-margin-top: 90px;
	overflow: clip;
}
@media (max-width: 1199px) {
section {
	scroll-margin-top: 66px;
}
}
@media (max-width: 700px) {
section {padding: 30px 20px;}
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	display: flex;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0);
	color: #ffffff;
	transition: all 0.5s;
	z-index: 997;
}
.header-container {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: fit-content;
	background: #28441e;
	border-radius: 40px;
	padding: 5px 20px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.header .logo {
	display: flex;
	align-items: center;
	margin-right: auto;
	line-height: 1;
}
.header .logo img {
  max-height: 60px;
  border-radius: 10px;
  background-color: rgba(247, 247, 247, 0);
	z-index: 9995;
	margin-right: 10px;
}
.header .logo:hover,
.header .logo:focus:hover {
	transform: scale(1.02);
	transition: transform 0.2s;
	border-radius: 10px;
	z-index: 9999;
}
.header .logo h1 {
	margin: 0;
	font-weight: 600;
	text-transform: uppercase;
	color: #ffffff;
}
.sitename {
	margin: 0;
	font-weight: 600;
	text-transform: uppercase;
	color: #ffffff;
	font-family: var(--heading-font);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 2px;
}
.btn-getstarted {
	color: #ffffff;
	background: #916529;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 4px 15px;
	margin-left: 20px;
	border-radius: 20px;
	transition: 0.3s;
	text-align: center
}
.btn-getstarted.active,
.btn-getstarted:hover,
.btn-getstarted:focus:hover {
	color: #5b4632;
	background: #ffffff;
}
@media (min-width: 700px) {
.header {padding: 10px 0;}
}
@media (max-width: 1199px) {
.header-container {
	max-width: 90%;
	border-radius: 10px;
	padding: 3px 0 3px 5px;
}
.btn-getstarted {
	padding: 4px 10px;
	border-radius: 10px;
	margin-left: 10px;
}
.btn-getstarted {
	order: 1;
}
.navmenu {
	order: 2;
}
}
@media (max-width:701px) {
.header-container {
	max-width: 100%;
	border-radius: 0;
}
.header {padding-bottom: 10px;}
.sitename {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 1px;
}
}
@media (max-width:481px) {
.sitename {
	font-size: 19px;
	font-weight: 600;
	letter-spacing: 1px;
}
.header .logo img {
	max-height: 50px;
}
.btn-getstarted {
	line-height: 1.3;
	padding: 3px 0;
}
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
.navmenu {
	padding: 0 0 0 20px;
}
.navmenu ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}
.navmenu li {
	position: relative;
}
.navmenu a,
.navmenu a:focus {
	color: #ffffff;
	padding: 0 7px;
	font-size: 18px;
	font-family: var(--nav-font);
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
	white-space: nowrap;
	transition: 0.3s;
}
.navmenu a i,
.navmenu a:focus i {
	font-size: 14px;
	line-height: 0;
	margin-left: 5px;
	transition: 0.3s;
}
.navmenu li:hover>a,
.navmenu .active-menu,
.navmenu .active-menu:focus {
	color: #916529;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.2), 1px 0 1px #36220B, 0 0 8px white, 0 0 8px white, 0 0 8px white;
}
.navmenu .active-menu {
	color: #302112;
}
.navmenu .dropdown:hover>a {
	color: #ffffff;
}
.navmenu .dropdown ul {
	margin-top: 20px;
	padding: 5px;
	background: #ffffff;
	display: block;
	position: absolute;
	visibility: hidden;
	left: 0;
	top: 20px;
	opacity: 0;
	transition: 0.3s;
	border-radius: 4px;
	z-index: 99;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.navmenu .dropdown ul li {
	padding-top: 5px;
	min-width: 200px;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4);
 }
.navmenu .dropdown ul a {
	padding: 5px 15px 5px 7px;
	font-size: 17px;
	text-transform: none;
	color: #28441e;
}
.dropdown .active-tour,
.navmenu .dropdown ul a:hover {
	color: #916529;
	background-color: rgba(251, 239, 119, 0.2);
}
.navmenu .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.mobile-nav-toggle {
	display: none;
}
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
.mobile-nav-toggle {
	color: #ffffff;
	font-size: 50px;
	line-height: 0;
	margin: 0 5px;
	cursor: pointer;
	transition: color 0.3s;
}
.navmenu {
	padding: 0;
	z-index: 9997;
}
.navmenu ul {
	display: none;
	list-style: none;
	position: absolute;
	right: 20px;
	top:60px;
	width:300px;
	max-width:90%;
	padding: 10px 0;
	margin: 0;
	border-radius: 6px;
	background-color: #ffffff;
	overflow-y: auto;
	transition: 0.3s;
	z-index: 9998;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.toggle-dropdown {
	width:300px;
	color: #28441e;
}
.navmenu .bi-chevron-down {
	font-size: 12px;
	line-height: 0;
	float: right;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: 0.3s;
	background-color: #5b4632;
	color: #ffffff;
}
.navmenu ul li {
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4);
}
.navmenu a, .navmenu a:focus {
	color: #28441e;
	padding: 10px 20px;
	font-family: var(--nav-font);
	font-size: 17px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
	white-space: nowrap;
	transition: 0.3s;
}
.navmenu a:hover .bi-chevron-down,
.navmenu a:focus .bi-chevron-down,
.navmenu .active-drop .bi-chevron-down {
	color: #5b4632;
	background-color: #ffffff;
 }
.navmenu .active-drop .bi-chevron-down {
	transform: scale(1, -1);
	transition: transform .5s;
}
.navmenu a:hover,
.navmenu .active-menu,
.navmenu .active-menu:focus {
	color: #916529;
}
.navmenu .active-menu,
.navmenu ul a:hover {
	color: #916529;
	background-color: rgba(251, 239, 119, 0.2);
}
.navmenu .dropdown ul {
	position: static;
	display: none;
	z-index: 99;
	padding: 3px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	max-width: 90%;
	background-color: #ffffff;
	border: 1px solid rgba(40, 68, 30, 0.2);
	box-shadow: none;
	transition: all 0.5s ease-in-out;
}
.navmenu .dropdown ul a {
	padding: 5px 20px;
	font-size: 18px;
}
.dropdown .active-tour,
.navmenu .dropdown ul a:hover {
	color: #916529;
	background-color: rgba(251, 239, 119, 0.2);
}
.navmenu .dropdown>.dropdown-active {
	display: block;
	background-color: rgba(33, 37, 41, 0.03);
}
.mobile-nav-active {
	overflow: hidden;
}
.mobile-nav-active .mobile-nav-toggle {
	color: #fff;
	position: absolute;
	font-size: 32px;
	top: 15px;
	right: 15px;
	margin-right: 0;
	z-index: 9999;
}
.mobile-nav-active .navmenu {
	position: fixed;
	overflow: hidden;
	inset: 0;
	background: rgba(33, 37, 41, 0.8);
	transition: 0.3s;
}
.mobile-nav-active .navmenu>ul {
	display: block;
}
}
@media (max-width: 701px) {
.navmenu ul {
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	width:100%;
}
.toggle-dropdown {
	width:100%;
}
}
/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}
.php-email-form .sent-message {
	display: none;
	color: #ffffff;
	background: #28441e;
	text-align: center;
	padding: 15px;
	border-bottom: 3px solid #916529;
	margin-bottom: 24px;
	font-weight: 600;
}
.php-email-form .loading {
	display: none;
	background: #ffffff;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}
.php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #5b4632;
	border-top-color: #ffffff;
	animation: php-email-form-loading 1s linear infinite;
}
@keyframes php-email-form-loading {
0% {
	transform: rotate(0deg);
}
100% {
	transform: rotate(360deg);
}
}
/* Show the messages when JS adds the d-block class */
.php-email-form .d-block {
	display: block;
}
/*--------------------------------------------------------------
# Booking Section form
--------------------------------------------------------------*/
#travel-booking {margin-top: 50px;}
.travel-booking {
	display: flex;
	width: 100%;
	justify-content: center;
}
.booking-form {
	width: 550px;
	max-width: 100%;
	background-color: #ffffff;
	border-radius: 15px;
	padding: 1.5rem;
	border: 2px solid #e0e0e0;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.booking-form .form-title {
	color: #28441e;
	font-size: 1.6rem;
	font-weight: 700;
	text-align:center;
}
.booking-box {
	display: flex;
	gap: 20px;
}
.form-group .form-control, .form-select {
	display: block;
	border-radius: 8px;
	width: 100%;
	border: 2px solid rgba(40, 68, 30, 0.2);
}
.booking-box .form-group {
	width: calc((100% - 20px) / 2);
}
.booking-form label {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.8rem;
	font-weight: 700;
	color: #28441e;
	margin: 14px 0 6px;
	display: block;
}
textarea.form-control {
	height: 180px;
	min-height: 80px;
	resize: vertical;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
	color: #28441e;
	background-color: rgba(91, 65, 29, 0.05);
	padding: 12px 15px;
	font-size: 14px;
	transition: 0.3s;
	min-width: 100%;
	max-width: 100%;
}
input[type=text]:focus,
.booking-form input[type=email]:focus,
input[type=tel]:focus,
input[type=date]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
	box-shadow: 0 0 0 0.2rem color-mix(in srgb, #916529, transparent 50%);
	outline: none;
}
input[type=text]::placeholder,
.booking-form input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
select::placeholder,
textarea::placeholder {
	color: rgba(40, 68, 30, 0.7);
}
.booking-form .btn-prim {
	display: flex;
	width: 100%;
	justify-content: center;
	margin-top: 1.5rem;
}
/*--------------------------------------------------------------
# Tripadvisor
--------------------------------------------------------------*/
.tripadvisor {
	display: flex;
	justify-content: center;
}
.TA_selfserveprop {
	display: flex;
	width: 468px;
	max-width: 100%;
	box-shadow: 0 0 5px 5px rgba(34, 60, 80, 0.2);
	overflow: hidden;
	border-radius: 15px;
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
footer {
	color: #ffffff;
	background-color: #031013;
	font-size: 14px;
	margin-top: 50px;
}
.footer-newsletter {
	background-color: rgba(91, 65, 29, 0.1);
	padding: 50px 0;
	display: flex;
	justify-content: center;
}
.newsletter-flex {
	width: 600px;
	max-width: 90%;
}
.newsletter-flex p {
	text-align: center;
}
.n-letter {
	font-size: 24px;
}
.footer-newsletter .newsletter-form {
	margin-top: 30px;
	margin-bottom: 15px;
	padding: 6px 8px;
	position: relative;
	background-color: #252525;
	border: 1px solid rgba(91, 65, 29, 0.7);
	box-shadow: 0px 2px 25px rgba(91, 65, 29, 0.7);
	display: flex;
	transition: 0.3s;
	border-radius: 50px;
}
.newsletter-form:focus-within {
	border-color: #916529;
}
.newsletter-form input[type=email] {
	border: 0;
	padding: 4px;
	width: 100%;
	background-color: #252525;
	color: #ffffff;
}
.newsletter-form input[type=email]:focus-visible {
	outline: none;
}
.newsletter-form input[type=submit] {
	border: 0;
	font-size: 16px;
	padding: 0 20px;
	margin: -7px -8px -7px 0;
	background: #916529;
	color: #ffffff;
	transition: 0.3s;
	border-radius: 50px;
}
.newsletter-form input[type=submit]:hover {
	color: #28441e;
	background: #ffffff;
}
.footer-top-flex {
	display: flex;
	justify-content: center;
}
footer .footer-top {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	padding: 40px;
	width: 1100px;
	max-width: 100%;
}
footer .social-links {
	display: flex;
}
footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #ffffff;
	font-size: 16px;
	color: #ffffff;
	margin-right: 10px;
	transition: 0.3s;
}
footer .social-links a:active {
	color: #916529;
	border-color: #916529;
}
@media (hover: hover) and (pointer: fine) {
footer .social-links a:hover {
	color: #916529;
	border-color: #916529;
}
}
footer .footer-links p, .f-us .title {
	font-size: 18px;
	font-weight: bold;
}
.f-us {width: 250px;}
footer .footer-links {
	margin-bottom: 30px;
}
footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
footer .footer-links ul i {
	margin-right: 3px;
	font-size: 12px;
	line-height: 0;
	color: #ffffff;
}
footer .footer-links ul li {
	padding: 5px 0;
	display: flex;
	align-items: center;
}
footer .footer-links ul a {
	display: inline-block;
	color: #ffffff;
	line-height: 1.3;
}
footer .footer-links ul a:active {
	color: #916529;
}
@media (hover: hover) and (pointer: fine) {
footer .footer-links ul a:hover {
	color: #916529;
}
}
.footer-about span {
	font-size: 24px;
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 2px;
	font-family: var(--heading-font);
}
.footer-contact p {
	margin: 10px 0;
}
.copyright {
	display: flex;
	justify-content: center;
	padding: 20px 0;
	border-top: 3px solid rgba(91, 65, 29, 0.5);
}
.copyright p {
	color: #ffffff;
	margin-bottom: 0;
	font-size: 15px;
}
@media (max-width: 600px) {
.copyright p {white-space: pre-line;}
}
/*--------------------------------------------------------------
# Tours
--------------------------------------------------------------*/
.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1300;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}
.modal-dialog {
	position: relative;
	margin: 1rem;
	width: auto;
	pointer-events: none;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 0 5px 5px rgba(34, 60, 80, 0.2);
}
@media (min-width: 1200px) {
.modal-dialog {
	max-width: 1100px;
	margin-right: auto;
	margin-left: auto;
}
}
.modal.fade .modal-dialog {
	transform: translate(0, -50px);
	transition: transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
.modal.fade .modal-dialog {
	transition: none;
}
}
.modal.show .modal-dialog {
	transform: none;
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	outline: 0;
}
.modal-header {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: space-between;
	padding: 15px 20px;
	background-color: #28441e;
	color: #fff;
	border-bottom: 3px solid #916529;
}
.modal-title {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0;
}
.modal-body {
	position: relative;
	flex: 1 1 auto;
	color: #333;
	line-height: 1.8;
	text-align: justify;
	padding: 0 30px 40px;
	background-color: #e9d1af;
}
.modal-body h4 {
	color: #28441e;
	font-weight: 700;
	margin-top: 1.5rem;
	border-left: 4px solid #916529;
	padding-left: 10px;
}
.modal-body .modal-body-title {
	font-size: 20px;
	color: #28441e;
	font-weight: 500;
	margin-top: 1rem;
	margin-bottom: 0.3rem;
}
.btn-center {
	margin-left: 2rem;
	margin-top: 2rem;
}
@media (max-width: 991px) {
	.btn-center {
	text-align: center;
	margin-left: 0;
}
}
.modal-body ul {
	padding-left: 20px;
	margin-bottom: 20px;
}
.modal-body ul li {margin-bottom: 8px;}
.btn-close  {
	color: #ffffff;
	background: #28441e;
	border: 0;
	font-size: 2rem;
}
/*--------------------------------------------------------------
# Destinations - Countries
--------------------------------------------------------------*/
.attractions-card {
	background-color: #e9d1af;
	border-radius: 50px;
	padding: 40px 30px;
	margin: 0 0 50px;
	box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}
.destinations-countries h2, .destinations-countries h3 {
	text-align: center;
}
.attractions-desc p {
	text-align: justify;
	font-size: 18px;
}
@media (max-width: 600px) {
.attractions-card {
	padding: 40px 10px;
}
.attractions-card .attractions-desc p {
	margin-right: 10px;
	margin-left: 10px;
}
}
@media (max-width: 900px) {
.attractions-desc p {
	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
	hyphenate-limit-chars: 6 3 2;
	hyphenate-limit-lines: 2;
	hyphenate-limit-last: always;
	hyphenate-limit-zone: 8%;
}
}
.map-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 60px;
}
.map-google {
	position: relative;
	width: 100%;
	max-width: 1400px;
	height: 50vh;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.map-google iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}
@media (max-width: 900px) {
.map-google {max-width: 100%;}
}
.map-title {
	text-align: center;
	font-size: 22px;
	color: #28441e;
	font-family: var(--heading-font);
	font-weight: 600;
	margin-bottom: 10px;
}
/*--------------------------------------------------------------
# Whatsap and callback
--------------------------------------------------------------*/
.whatsapp-callback {
	position: fixed;
	right: 15px;
	bottom: 25px;
	z-index: 99999;
}
@media (min-width: 1650px) {
.whatsapp-callback {
	right: calc((100% - 1500px) / 2 );
}
}
.callback-tit {
	font-size: 16px;
	color: #ffffff;
	background-color: #28441e;
	padding: 10px 10px;
	width: fit-content;
	border-radius: 20px 20px 0 0px;
	font-weight: 700;
	margin-left: 15px;
	box-shadow: 0 0 5px 5px rgba(91, 65, 29, 0.4);
}
.whatsapp-callback .form-control {
	padding: 10px;
	box-shadow: 0 0 5px 5px rgba(91, 65, 29, 0.4);
}
.form-callback {
	display: flex;
	max-width: 220px;
}
.form-callback-col {
	display: flex;
	flex-direction: column;
}
.callback-btn {
	padding: 5px 7px 5px 2px;
	background: #28441e;
	border: 2px solid #28441e;
	border-radius: 0 40px 40px 0;
	color: #ffffff;
	cursor: pointer;
	box-shadow: 0 0 5px 5px rgba(91, 65, 29, 0.4);
}
.callback-btn:active {
	color: #28441e;
	background-color: #ffffff;
	transform: scale(1.1);
	transition: transform 0.5s;
}
@media (hover: hover) and (pointer: fine) {
.callback-btn:hover {
	color: #28441e;
	background-color: #ffffff;
	transform: scale(1.1);
	transition: transform 0.5s;
}
}
.callback-btn i {
	font-size: 1.5rem;
}
.whatsapp-callback details {
	display: flex;
	flex-direction: column;
	align-items: end;
}
.whatsapp-call-box {
	display: flex;
	flex-direction: column;
	align-items: end;
}
.whatsapp-callback summary {
	order: 1;
}
.whatsapp-callback summary {
	cursor: pointer;
	display: inline-block;
	margin-top: 5px;
}
.whatsapp-callback details summary::before {
	display: inline-block;
	font-family: bootstrap-icons;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: -.125em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f618";
}
.whatsapp-callback details[open] summary:before {
	content: "\F62A";
	font-size: 30px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	color: #ffffff;
	background-color: #28441e;
	}
.whatsapp-callback .bi-whatsapp, .whatsapp-callback details summary:before {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	color: #ffffff;
	background-color: #25d366;
}
.whatsapp-callback .bi-whatsapp {margin-top: 15px;}
.whatsapp-callback details summary:active:before {
	transform: scale(1.1);
	transition: transform 0.5s;
	color: #28441e;
	background-color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
.whatsapp-callback details summary:hover:before {
	transform: scale(1.1);
	transition: transform 0.5s;
	color: #28441e;
	background-color: #ffffff;
}
}
.whatsapp-callback .telephone-b, .whatsapp-callback .whatsapp-b {
	display: flex;
	justify-content: center;
	align-items: center;
}
.whatsapp-callback .telephone-b {
	margin-bottom: -30px;
}
.whatsapp-callback .telephone-b p, .whatsapp-callback .whatsapp-b p {
	background-color: #ffffff;
	padding: 15px 40px 15px 15px;
	border-radius: 10px;
	font-size: 16px;
}
.whatsapp-callback .telephone-b p {
	margin-top: 15px;
	margin-right: -30px;
	color: #28441e;
	box-shadow: 0 0 5px 5px rgba(91, 65, 29, 0.4);
}
.whatsapp-callback .whatsapp-b p {
	margin-top: 30px;
	margin-right: -30px;
	color: #28441e;
	box-shadow: 0 0 5px 5px rgba(91, 65, 29, 0.4);
}
.whatsapp-callback .bi-telephone {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	color: #ffffff;
	background-color: #28441e;
}
.whatsapp-callback a:active {
	transform: scale(1.05);
	transition: transform 0.5s;
}
.whatsapp-callback i:active {
	transform: scale(1.05);
	transition: transform 0.5s;
	color: #28441e;
	background-color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
.whatsapp-callback a:hover {
	transform: scale(1.05);
	transition: transform 0.5s;
}
.whatsapp-callback i:hover {
	transform: scale(1.05);
	transition: transform 0.5s;
	color: #28441e;
	background-color: #ffffff;
}
.whatsapp-callback .whatsapp-b p:hover, .whatsapp-callback .telephone-b p:hover {
	box-shadow: 0 0 5px 5px rgba(91, 65, 29, 1);
}
}
.whatsapp-callback .php-email-form .sent-message {
	border-radius: 10px;
}
.whatsapp-callback input[type=text],
.whatsapp-callback input[type=tel] {
	border: 3px solid rgba(91, 65, 29, 0.5);
	border-radius: 10px 0 0 10px;
	transition: 0.3s;
}
.whatsapp-callback input[type=text] {
	margin-bottom: 3px;
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	visibility: hidden;
	opacity: 0;
	left: 15px;
	bottom: 25px;
	z-index: 99999;
	background-color: #28441e;
	width: 44px;
	height: 44px;
	border-radius: 50px;
	transition: all 0.4s;
}
@media (min-width: 1650px) {
.scroll-top {
	left: calc((100% - 1500px) / 2 );
}
}
.scroll-top i {
	font-size: 24px;
	color: #ffffff;
	line-height: 0;
}
.scroll-top:hover {
	background-color: #916529;
	color: #ffffff;
}
.scroll-top.active {
	visibility: visible;
	opacity: 1;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media (max-width: 768px) {
[data-aos-delay] {
	transition-delay: 0s;
}
}
/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/
.partners {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 40px;
}
.partners img {
	width: 200px;
	margin: 0 10px;
}
.partners p {
	font-size: 2.2rem;
	font-weight: 700;
	color: #28441e;
}
/*--------------------------------------------------------------
# Tour Info Boxes
--------------------------------------------------------------*/
.tour-info {
	display: flex;
	margin: 40px 0;
	justify-content: center;
}
.tour-info-flex {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 10px;
	row-gap: 30px;
}
.tour-info-info-box .info-content {
	display: flex;
	align-items: flex-end;
}
.tour-info-info-box {
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
	padding: 20px 20px 0;
	min-width: 200px;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	gap: 15px;
}
.tour-info-info-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.tour-info-info-box .icon-box {
	background-color: rgba(91, 65, 29, 0.1);
	color: #5b4632;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.tour-info-info-box .icon-box i {
	font-size: 24px;
}
.tour-info-info-box .info-content p {
	margin-left: 10px;
	font-size: 19px;
	line-height: 1.5;
}
.tour-info-info-box .info-bold {
	color: #28441e;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	text-align: center;
}
/*--------------------------------------------------------------
# Tour Container Index-Page
--------------------------------------------------------------*/
.tour-details-info-box {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: stretch;
}
.tour-col {
	width: calc((100% - 20px) / 2);
	display: flex;
	justify-content: center;
}
.tour-col .compact-destination {
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	display: flex;
	box-shadow:4px 4px 8px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}
.tour-col .compact-destination:hover {
	box-shadow: 0 0 5px 5px rgba(34, 60, 80, 0.2);
	transform: scale(1.01);
	transition: transform 0.5s;
}
.tour-img {
	width: 200px;
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1.5;
}
.tour-img img {
	width: 200px;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.tour-col .compact-destination:hover .tour-img img {
	transform: scale(1.1);
}
@media (max-width: 1200px) {
.tour-col {
	width: 100%;
}
.tour-img {aspect-ratio: 1 / 1.3;}
}
.tour-col .destination-details {
	flex: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.tour-col .destination-details p {
	text-align: justify;
	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
	hyphenate-limit-chars: 6 3 2;
	hyphenate-limit-lines: 2;
	hyphenate-limit-last: always;
	hyphenate-limit-zone: 8%;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.tour-col .destination-details h2 {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.3;
}
.stats-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
@media (max-width: 750px) {
.stats-flex {
	flex-direction: column;
}
.stats-flex .btn-prim {
	width: 80%;
}
}
@media (min-width: 1201px) and (max-width: 1400px) {
.stats-flex {
	flex-direction: column;
}
.stats-flex .btn-prim {
	width: 80%;
}
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.travel-about .johnstepssafaris-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}
.travel-about .johnstepssafaris-image img {
	transition: transform 0.5s ease;
}
.johnstepssafaris-image {
	max-width: fit-content;
	}
.travel-about .johnstepssafaris-image img:hover {
	transform: scale(1.05);
}
.travel-about .intro-content {
	margin-top: 3rem;
}
.travel-about .intro-content h2 {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}
@media (max-width: 768px) {
.travel-about .intro-content h2 {
	font-size: 2.2rem;
}
}
.travel-about .intro-content p {
	font-size: 1.3rem;
	line-height: 1.6;
	font-weight: 400;
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	color: #ffffff;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 100px 0 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}
@media (min-width: 1500px) {
.page-title {
	max-width: 1400px;
	border-radius: 20px;
}
}
.container-title {
	padding: 0 30px;
	margin: 0 auto;
	position: relative;
}
.page-title:before {
	content: "";
	background-color: rgba(0, 0, 0, 0.4);
	position: absolute;
	inset: 0;
}
.page-title h1 {
	color: #ffffff;
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 10px;
}
.page-title p {font-size: 20px;}
.page-title .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	justify-content: center;
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
}
.page-title .breadcrumbs ol li+li {
	padding-left: 10px;
}
.page-title .breadcrumbs ol li+li::before {
	content: "/";
	display: inline-block;
	padding-right: 10px;
	color: #ffffff;
}
.breadcrumbs a {
	color: #ffffff;
	font-weight: 600;
}
.breadcrumbs a:hover {
	color: #e9d1af;
}
/*--------------------------------------------------------------
# Global Section Titles Page HOME
--------------------------------------------------------------*/
.section-title {
	text-align: center;
	padding-bottom: 10px;
	position: relative;
}
.section-title h2 {
	font-size: 13px;
	letter-spacing: 1px;
	font-weight: 700;
	padding: 8px 20px;
	margin: 0;
	background: rgba(91, 65, 29, 0.1);
	color: #5b4632;
	display: inline-block;
	text-transform: uppercase;
	border-radius: 50px;
	font-family: var(--default-font);
}
.section-title div {
	color: #28441e;
	margin: 10px 0 0 0;
	font-size: 32px;
	font-weight: 700;
	font-family: var(--heading-font);
}
.section-title div .description-title {
	color: #5b4632;
}
/*--------------------------------------------------------------
# Why Us Section Page HOME
--------------------------------------------------------------*/
.why-us .content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.why-us .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #2f2a25
}
.why-us .stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 576px) {
  .why-us .stats-row {
    flex-direction: column;
    gap: 1rem;
  }
}
.why-us .why-choose-section {
  margin-top: 5rem;
}
.why-us .why-choose-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.why-us .why-choose-section>.row>.col-lg-8>p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2f2a25
}
@media (max-width: 768px) {
  .why-us .why-choose-section {
    margin-top: 3rem;
  }
  .why-us .why-choose-section h2 {
    font-size: 1.8rem;
  }
}
.why-us .feature-card {
  background: #ffffff;
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(91, 65, 29, 0.5);
}
.why-us .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.why-us .feature-card:hover .feature-icon {
  background: #5b4632;
  color: #ffffff;
}
.why-us .feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(91, 65, 29, 0.1);
  color: #5b4632;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: all 0.3s ease;
}
.why-us .feature-card h4, .why-us .feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.why-us .feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #2f2a25;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .why-us .feature-card {
    padding: 2rem 1rem;
  }
  .why-us .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .why-us .feature-card h4 {
    font-size: 1.2rem;
  }
}
/*--------------------------------------------------------------
# Featured Destinations Section
--------------------------------------------------------------*/
.featured-destinations .featured-destination {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}
.featured-destinations .featured-destination:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.featured-destinations .featured-destination .destination-overlay {
  position: relative;
  height: 100%;
  width: 100%;
}
.featured-destinations .featured-destination .destination-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.featured-destinations .featured-destination .destination-overlay:hover img {
  transform: scale(1.08);
}
.featured-destinations .featured-destination .destination-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
.featured-destinations .featured-destination .destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
  color: white;
}
.featured-destinations .featured-destination .destination-info .destination-tag {
  display: inline-block;
  background: #5b4632;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.featured-destinations .featured-destination .destination-info h2 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}
.featured-destinations .featured-destination .destination-info .location {
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}
.featured-destinations .featured-destination .destination-info .location i {
  color: #5b4632;
  font-size: 18px;
}
.featured-destinations .featured-destination .destination-info .description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
}
.featured-destinations .featured-destination .destination-info .destination-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  font-size: 14px;
}
.featured-destinations .featured-destination .destination-info .destination-meta .tours-count,
.featured-destinations .featured-destination .destination-info .destination-meta .rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.featured-destinations .featured-destination .destination-info .destination-meta .tours-count i,
.featured-destinations .featured-destination .destination-info .destination-meta .rating i {
  color: #5b4632;
}
.featured-destinations .featured-destination .destination-info .price-info {
  margin-bottom: 25px;
}
.featured-destinations .featured-destination .destination-info .price-info .starting-from {
  display: block;
  font-size: 13px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.featured-destinations .featured-destination .destination-info .price-info .amount {
  font-size: 28px;
  font-weight: 800;
  color: #5b4632;
}
.featured-destinations .featured-destination .destination-info .explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}
.featured-destinations .featured-destination .destination-info .explore-btn:hover {
  background: #5b4632;
  border-color: #5b4632;
  color: #ffffff;
  transform: translateX(5px);
}
.featured-destinations .featured-destination .destination-info .explore-btn:hover i {
  transform: translateX(3px);
}
.featured-destinations .featured-destination .destination-info .explore-btn i {
  transition: transform 0.3s ease;
}
.featured-destinations .compact-destination {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 180px;
}
.featured-destinations .compact-destination:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  transform: translateX(8px);
}
.featured-destinations .compact-destination .destination-image {
  flex-shrink: 0;
  width: 140px;
  position: relative;
  overflow: hidden;
}
.featured-destinations .compact-destination .destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.featured-destinations .compact-destination .destination-image .badge-offer {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.featured-destinations .compact-destination .destination-image .badge-offer.limited {
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #333;
}
.featured-destinations .compact-destination .destination-details {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.featured-destinations .compact-destination .destination-details h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.featured-destinations .compact-destination .destination-details .location {
  font-size: 13px;
  color: #2f2a25;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.featured-destinations .compact-destination .destination-details .location i {
  color: #5b4632;
  font-size: 12px;
}
.featured-destinations .compact-destination .destination-details .brief {
	font-size: 13px;
	line-height: 1.4;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.featured-destinations .compact-destination .destination-details .stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
}
.featured-destinations .compact-destination .destination-details .stats-row .tour-count,
.featured-destinations .compact-destination .destination-details .stats-row .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #2f2a25;
}
.featured-destinations .compact-destination .destination-details .stats-row .tour-count i,
.featured-destinations .compact-destination .destination-details .stats-row .rating i {
  color: #5b4632;
}
.featured-destinations .compact-destination .destination-details .stats-row .rating i {
  color: #ffc107;
}
.featured-destinations .compact-destination .destination-details .stats-row .price {
  font-weight: 700;
  color: #5b4632;
  font-size: 14px;
}
.featured-destinations .compact-destination:hover .destination-image img {
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .featured-destinations .featured-destination {
    height: 500px;
  }
  .featured-destinations .featured-destination .destination-info {
    padding: 30px;
  }
  .featured-destinations .featured-destination .destination-info h2 {
    font-size: 28px;
  }
  .featured-destinations .featured-destination .destination-info .price-info .amount {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .featured-destinations .featured-destination {
    height: 450px;
    margin-bottom: 30px;
  }
  .featured-destinations .featured-destination .destination-info {
    padding: 25px;
  }
  .featured-destinations .featured-destination .destination-info h2 {
    font-size: 24px;
  }
  .featured-destinations .featured-destination .destination-info .destination-meta {
    flex-direction: column;
    gap: 10px;
  }
  .featured-destinations .compact-destination {
    flex-direction: column;
    height: auto;
  }
  .featured-destinations .compact-destination .destination-image {
    width: 100%;
    height: 160px;
  }
  .featured-destinations .compact-destination .destination-details {
    padding: 20px;
  }
  .featured-destinations .compact-destination .destination-details .stats-row {
    flex-wrap: wrap;
    gap: 10px;
  }
}
/*--------------------------------------------------------------
# Featured Tours Section
--------------------------------------------------------------*/
.featured-tours .tour-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(91, 65, 29, 0.5);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.featured-tours .tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(91, 65, 29, 0.5);
}
.featured-tours .tour-card .tour-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.featured-tours .tour-card .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.featured-tours .tour-card .tour-image .tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #5b4632;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.featured-tours .tour-card .tour-image .tour-badge.limited {
  background-color: #ff6b6b;
}
.featured-tours .tour-card .tour-image .tour-badge.new {
  background-color: #4ecdc4;
}
.featured-tours .tour-card .tour-image .tour-badge.cultural {
  background-color: #9b59b6;
}
.featured-tours .tour-card .tour-image .tour-badge.adventure {
  background-color: #e67e22;
}
.featured-tours .tour-card .tour-image .tour-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(91, 65, 29, 0.5);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.featured-tours .tour-card:hover .tour-image img {
  transform: scale(1.05);
}
.featured-tours .tour-card .tour-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.featured-tours .tour-card .tour-content h4, .featured-tours .tour-card .tour-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}
.featured-tours .tour-card .tour-content .tour-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
.featured-tours .tour-card .tour-content .tour-meta span {
  color: #2f2a25;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.featured-tours .tour-card .tour-content .tour-meta span i {
  color: #5b4632;
}
.featured-tours .tour-card .tour-content p {
  color: #2f2a25;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.featured-tours .tour-card .tour-content .tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}
.featured-tours .tour-card .tour-content .tour-highlights span {
  background-color: rgba(91, 65, 29, 0.1);
  color: #5b4632;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}
.featured-tours .tour-card .tour-content .tour-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.featured-tours .tour-card .tour-content .tour-action .btn-book {
  background-color: #28441e;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}
.featured-tours .tour-card .tour-content .tour-action .btn-book:hover {
  background-color: #916529;
  transform: translateY(-2px);
  color: #ffffff;
}
.featured-tours .tour-card .tour-content .tour-action .tour-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
}
.featured-tours .tour-card .tour-content .tour-action .tour-rating i {
  color: #ffc107;
  font-size: 12px;
}
.featured-tours .tour-card .tour-content .tour-action .tour-rating span {
  color: #2f2a25;
  margin-left: 5px;
  font-size: 13px;
}
@media (max-width: 768px) {
  .featured-tours .tour-card .tour-content {
    padding: 20px;
  }
  .featured-tours .tour-card .tour-content h4, .featured-tours .tour-card .tour-content h3 {
    font-size: 20px;
  }
  .featured-tours .tour-card .tour-content .tour-action {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .featured-tours .tour-card .tour-content .tour-action .btn-book {
    text-align: center;
  }
  .featured-tours .tour-card .tour-content .tour-action .tour-rating {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .featured-tours .tour-card .tour-image {
    height: 200px;
  }
  .featured-tours .tour-card .tour-content {
    padding: 15px;
  }
  .featured-tours .tour-card .tour-content .tour-meta {
    flex-direction: column;
    gap: 8px;
  }
  .featured-tours .tour-card .tour-content .tour-highlights {
    justify-content: center;
  }
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  margin-top: 5rem;
}
@media (max-width: 992px) {
  .call-to-action .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
.call-to-action .content-wrapper .badge-wrapper {
  margin-bottom: 1.5rem;
}
.call-to-action .content-wrapper .badge-wrapper .promo-badge {
  display: inline-block;
  background: #916529;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.call-to-action .content-wrapper .badge-wrapper .promo-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}
.call-to-action .content-wrapper h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .call-to-action .content-wrapper h2 {
    font-size: 2.2rem;
  }
}
.call-to-action .content-wrapper p {
  font-size: 1.2rem;
  color: #2f2a25;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.call-to-action .action-section .main-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .call-to-action .action-section .main-actions {
    flex-direction: column;
  }
}
.call-to-action .action-section .main-actions .btn {
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 60px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}
.call-to-action .action-section .main-actions .btn i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}
.call-to-action .action-section .main-actions .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.call-to-action .action-section .main-actions .btn:hover::before {
  left: 100%;
}
.call-to-action .action-section .main-actions .btn.btn-explore {
  background: #28441e;
  border: none;
  color: #ffffff;
}
.call-to-action .action-section .main-actions .btn.btn-explore:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 20px rgba(91, 65, 29, 0.5);
}
.call-to-action .action-section .main-actions .btn.btn-deals {
  background: transparent;
  border: 3px solid #5b4632;
  color: #5b4632;
}
.call-to-action .action-section .main-actions .btn.btn-deals:hover {
  background: #5b4632;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
}
.call-to-action .action-section .quick-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  border-left: 4px solid #5b4632;
}
@media (max-width: 576px) {
  .call-to-action .action-section .quick-contact {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
.call-to-action .action-section .quick-contact .contact-label {
  font-size: 0.95rem;
  color: #2f2a25;
  font-weight: 500;
}
.call-to-action .action-section .quick-contact .contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #5b4632;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.call-to-action .action-section .quick-contact .contact-link:hover {
  color: #28441e;
  transform: translateX(3px);
}
.call-to-action .action-section .quick-contact .contact-link i {
  font-size: 1.1rem;
}
.call-to-action .visual-element {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}
.call-to-action .visual-element .hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
@media (max-width: 768px) {
  .call-to-action .visual-element .hero-image {
    height: 350px;
  }
}
.call-to-action .visual-element:hover .hero-image {
  transform: scale(1.05);
}
.call-to-action .newsletter-section {
  margin-bottom: 5rem;
}
.call-to-action .newsletter-section .newsletter-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.call-to-action .newsletter-section .newsletter-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .call-to-action .newsletter-section .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.call-to-action .newsletter-section .newsletter-content .newsletter-icon {
  width: 80px;
  height: 80px;
  background: #28441e;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.call-to-action .newsletter-section .newsletter-content .newsletter-icon i {
  font-size: 2rem;
  color: #ffffff;
}
.call-to-action .newsletter-section .newsletter-content .newsletter-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.call-to-action .newsletter-section .newsletter-content .newsletter-text p {
  color: #2f2a25;
  margin: 0;
  font-size: 1.1rem;
}
.call-to-action .newsletter-section .newsletter-form .form-wrapper {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 576px) {
  .call-to-action .newsletter-section .newsletter-form .form-wrapper {
    flex-direction: column;
  }
}
.call-to-action .newsletter-section .newsletter-form .form-wrapper .email-input {
  flex: 1;
  padding: 18px 25px;
  border: 2px solid rgba(91, 65, 29, 0.5);
  border-radius: 60px 0 0 60px;
  font-size: 1rem;
  background: #ffffff;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .call-to-action .newsletter-section .newsletter-form .form-wrapper .email-input {
    border-radius: 60px;
    margin-bottom: 1rem;
  }
}
.call-to-action .newsletter-section .newsletter-form .form-wrapper .email-input:focus {
  outline: none;
  border-color: #5b4632;
  box-shadow: 0 5px 20px rgba(91, 65, 29, 0.5);
}
.call-to-action .newsletter-section .newsletter-form .form-wrapper .email-input::placeholder {
  color: rgba(91, 65, 29, 0.5);
}
.call-to-action .newsletter-section .newsletter-form .form-wrapper .subscribe-btn {
  padding: 18px 25px;
  background: #28441e;
  border: 2px solid #5b4632;
  border-radius: 0 60px 60px 0;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .call-to-action .newsletter-section .newsletter-form .form-wrapper .subscribe-btn {
    border-radius: 60px;
    width: 100%;
  }
}
.call-to-action .newsletter-section .newsletter-form .form-wrapper .subscribe-btn:hover {
  background: #916529;
  transform: translateX(2px);
}
.call-to-action .newsletter-section .newsletter-form .form-wrapper .subscribe-btn i {
  font-size: 1.2rem;
}
.call-to-action .newsletter-section .newsletter-form .trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #2f2a25;
}
.call-to-action .newsletter-section .newsletter-form .trust-indicators i {
  color: #5b4632;
}
.call-to-action .benefits-showcase .benefits-header {
  text-align: center;
  margin-bottom: 3rem;
}
.call-to-action .benefits-showcase .benefits-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.call-to-action .benefits-showcase .benefits-header p {
  font-size: 1.1rem;
  color: #2f2a25;
}
.call-to-action .benefits-showcase .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.call-to-action .benefits-showcase .benefit-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.call-to-action .benefits-showcase .benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.call-to-action .benefits-showcase .benefit-card .benefit-visual {
  position: relative;
  margin-bottom: 2rem;
}
.call-to-action .benefits-showcase .benefit-card .benefit-visual .benefit-icon-wrap {
  width: 100px;
  height: 100px;
  background: #916529;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.call-to-action .benefits-showcase .benefit-card .benefit-visual .benefit-icon-wrap i {
  font-size: 2.5rem;
  color: #ffffff;
}
.call-to-action .benefits-showcase .benefit-card .benefit-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.call-to-action .benefits-showcase .benefit-card .benefit-content p {
  color: #2f2a25;
  line-height: 1.6;
  margin: 0;
}
.call-to-action input[type=email] {
  color: #2f2a25;
  background-color: #ffffff;
  font-size: 14px;
  border-color: rgba(91, 65, 29, 0.5);
}
.call-to-action input[type=email]:focus {
  border-color: #5b4632;
}
.call-to-action input[type=email]::placeholder {
  color: rgba(91, 65, 29, 0.5);
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/*--------------------------------------------------------------
# Travel About Section
--------------------------------------------------------------*/
.travel-about .hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.travel-about .hero-image img {
  transition: transform 0.5s ease;
}
.destination-hero {
	display: flex;
	justify-content: center;
}
.travel-about .hero-image {
	max-width: fit-content;
	}
.travel-about .hero-image img:hover {
  transform: scale(1.05);
}
.travel-about .story-content .story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0);
  color: #5b4632;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.travel-about .story-content .story-badge i {
  font-size: 1.1rem;
}
.travel-about .story-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .travel-about .story-content h3 {
    font-size: 2rem;
  }
}
.travel-about .story-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.travel-about .story-content .mission-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  border-left: 5px solid #5b4632;
  box-shadow: 0 10px 30px rgba(91, 65, 29, 0.5);
}
.travel-about .story-content .mission-box .mission-icon {
  width: 60px;
  height: 60px;
  background: #5b4632;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.travel-about .story-content .mission-box .mission-text h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.travel-about .story-content .mission-box .mission-text p {
  margin: 0;
  font-style: italic;
  font-size: 1rem;
  color: #2f2a25;
}
.travel-about .features-grid .section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .travel-about .features-grid .section-header h3 {
    font-size: 2rem;
  }
}
.travel-about .features-grid .section-header p {
  font-size: 1.2rem;
  color: #2f2a25;
  margin: 0;
}
.travel-about .features-grid .feature-card {
  height: 280px;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
}
.travel-about .features-grid .feature-card .feature-front,
.travel-about .features-grid .feature-card .feature-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.travel-about .features-grid .feature-card .feature-front {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(91, 65, 29, 0.5);
}
.travel-about .features-grid .feature-card .feature-front .feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0);
  color: #5b4632;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}
.travel-about .features-grid .feature-card .feature-front h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.travel-about .features-grid .feature-card .feature-front p {
  color: #2f2a25;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}
.travel-about .features-grid .feature-card .feature-back {
  background: #5b4632;
  transform: rotateY(180deg);
}
.travel-about .features-grid .feature-card .feature-back p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}
.travel-about .features-grid .feature-card:hover .feature-front {
  transform: rotateY(180deg);
}
.travel-about .features-grid .feature-card:hover .feature-back {
  transform: rotateY(0deg);
}
.travel-about .journey-timeline .timeline-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .travel-about .journey-timeline .timeline-header h3 {
    font-size: 2rem;
  }
}
.travel-about .journey-timeline .timeline-header p {
  font-size: 1.2rem;
  color: #2f2a25;
  margin: 0;
}
.travel-about .journey-timeline .timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}
.travel-about .journey-timeline .timeline-container .timeline-milestone {
  position: relative;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .travel-about .journey-timeline .timeline-container .timeline-milestone {
    margin-bottom: 3rem;
  }
}
.travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #5b4632;
  color: #ffffff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 20px rgba(91, 65, 29, 0.5);
  z-index: 2;
}
@media (max-width: 768px) {
  .travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-marker {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 1rem;
    width: 80px;
    height: 80px;
  }
}
.travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(91, 65, 29, 0.5);
}
@media (min-width: 769px) {
  .travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-content {
    width: 40%;
    margin-top: -50px;
  }
}
.travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-content h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.travel-about .journey-timeline .timeline-container .timeline-milestone .milestone-content p {
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 769px) {
  .travel-about .journey-timeline .timeline-container .timeline-milestone:nth-child(odd) .milestone-content {
    margin-left: 0;
  }
}
@media (min-width: 769px) {
  .travel-about .journey-timeline .timeline-container .timeline-milestone:nth-child(even) .milestone-content {
    margin-left: 60%;
  }
}
/*--------------------------------------------------------------
# Travel Tours Section
--------------------------------------------------------------*/
.destination-card-tag {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background-color: #28441e;
	color: white;
}
.travel-tours {
	padding-top: 40px;
	padding-bottom: 40px;
}
.travel-tours .section-subtitle {
	color: #28441e;
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}
.tour-card-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.tour-card-dectinations {
	background-color: #e9d1af;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	width: calc((100% - 30px) / 3);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
@media (max-width: 1150px) {
.tour-card-dectinations {
	width: calc((100% - 15px) / 2);
}
}
@media (max-width: 800px) {
.tour-card-dectinations {
	width: 100%;
}
}
.tour-card-dectinations:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.tour-card-dectinations .tour-img-des {
	position: relative;
}
.tour-card-dectinations .tour-img-des img {
	border-radius: 15px 15px 0 0;
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1.5 / 1;
	transition: transform 0.3s ease;
}
.tour-card-dectinations .tour-img-des h3, .tour-card-dectinations .tour-img-des h4 {
	margin-bottom: 0.75rem;
	color: #28441e;
	padding: 1rem 1rem 0;
}
.tour-card-dectinations .tour-img-des p {
	padding: 0 1rem;
	line-height: 1.6;
}
.buttons-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.tour-card-dectinations .tour-details span {
	color: rgba(40, 68, 30, 0.9);
	font-size: 1.02rem;
}
.tour-card-dectinations .tour-btn .tour-details .btn-prim {
	color: #ffffff;
}
.tour-card-dectinations .tour-btn .tour-details span i {
	margin-right: 0.5rem;
}
.tour-card-dectinations .tour-btn .tour-details {
	padding: 0 1rem;
}
.buttons-flex {
	padding: 1rem 1rem  1.5rem;
}
.btn-prim {
	flex: 0 0 auto;
	max-width: 100%;
	background-color: #28441e;
	border: 3px solid #28441e;
	color: #ffffff;
	padding: 0.7rem 1rem;
	border-radius: 15px;
	font-weight: 600;
	transition: all 0.3s ease;
	font-weight: 600;
	font-size: 20px;
	text-align: center;
	line-height: 2;
}
@media (max-width: 450px) {
.btn-prim {
	font-size: 17px;
}
}
.btn-prim:active {
	color: #28441e;
	border-color: #28441e;
	background-color: #ffffff;
	transform: translateY(-2px);
}
@media (hover: hover) and (pointer: fine) {
.btn-prim:hover {
	color: #28441e;
	border-color: #28441e;
	background-color: #ffffff;
	transform: translateY(-2px);
}
}
.book-cta {
	background: #916529;
	border-radius: 20px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	padding: 30px;
	margin: 30px 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.attractions-card .book-cta {
	padding: 20px 0;
}
.book-cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.book-cta-content {
	max-width: 100%;
}
.book-cta-title {
	color: #28441e;
	font-size: 32px;
	text-align: center;
	font-weight: 700;
	margin-bottom: 16px;
	font-family: var(--heading-font);
}
@media (max-width: 768px) {
.book-cta-title {
	font-size: 26px;
}
}
.book-cta-desc {
	color: #2f2a25;
	font-size: 22px;
	line-height: 1.6;
	margin-bottom: 32px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
/* drop-down block */
.book-cta details {
	margin: 0 10px 7px;
}
.book-cta details[open] {
	padding: 0;
	border-radius: 10px;
}
.book-cta details summary {
	cursor: pointer;
	display: inline-block;
	width: fit-content;
}
.book-cta details[open] summary {
	background-color: #ffffff;
	color: #28441e;
	width: 100%;
}
.book-cta details summary:before, .book-cta details summary:after {
	font-family: bootstrap-icons;
	content: "\F229";
	transform: scale(1.4, 1.4);
	display: inline-block;
	transition: transform .5s;
}
.book-cta details[open] > summary:before, .book-cta details[open] > summary:after {
	transform: scale(1.4, -1.4);
}
.book-cta details[open] summary ~ *{ 
	animation: sweep .5s ease-in-out;
}
@keyframes sweep {
	0%	{opacity: 0;}
	100%	{opacity: 1;}
}
.book-cta details summary:before, .book-cta details[open] summary:before {
	margin-right: 20px;
}
.book-cta details summary:after, .book-cta details[open] summary:after {
	margin-left: 20px;
}
/*--------------------------------------------------------------
# Travel Tour Details Section
--------------------------------------------------------------*/
.tour-filters {
	list-style: none;
	padding: 0;
	margin: 0 0 40px 0;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}
.tour-filters li {
	background: transparent;
	border: 2px solid #28441e;
	color: #2f2a25;
	padding: 10px 18px;
	border-radius: 20px;
	min-width: 200px;
	font-size: 20px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}
@media (max-width: 768px) {
.tour-filters li {
	padding: 6px 12px;
	font-size: 16px;
	margin: -2px;
	min-width: 140px;
}
}
.tour-filters li:hover,
.tour-filters li.filter-active {
	background-color: #28441e;
	border-color: #28441e;
	color: #ffffff;
}
.tour-overview-flex {
	margin-bottom: 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.overview-block {
	width: calc(65% - 10px);
	height: 100%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
	padding: 20px;
	text-align: justify;
	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
	hyphenate-limit-chars: 6 3 2;
	hyphenate-limit-lines: 2;
	hyphenate-limit-last: always;
	hyphenate-limit-zone: 8%;
}
.highlights-block {
	width: calc(35% - 10px);
	height: 100%;
	background: #ffffff;
	border-radius: 15px;
	padding: 20px;
}
@media (max-width: 1000px) {
.overview-block {
	width: 100%;
}
.highlights-block {
	width: 100%;
}
}
.overview-block h2 {
	font-size: 2.2rem;
	margin-bottom: 20px;
}
.overview-block p {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 20px;
	color: #2f2a25;
	text-align: justify;
	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
	hyphenate-limit-chars: 6 3 2;
	hyphenate-limit-lines: 2;
	hyphenate-limit-last: always;
	hyphenate-limit-zone: 8%;
}
.highlights-block h3 {
	font-size: 1.3rem;
	margin-bottom: 20px;
}
.highlights-block ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.highlights-block ul li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 4px 0;
	color: #2f2a25;
}
.highlights-block ul li i {
	color: #5b4632;
	font-size: 1.1rem;
}
.tour-itinerary {
	margin-bottom: 60px;
}
.tour-itinerary h3 {
	font-size: 2.2rem;
	margin-bottom: 30px;
	text-align: center;
}
.itinerary-timeline {
	position: relative;
}
.itinerary-timeline::before {
	content: "";
	position: absolute;
	left: 40px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #28441e;
}
@media (max-width: 768px) {
.itinerary-timeline::before {
	left: 25px;
}
}
.itinerary-item {
	position: relative;
	padding-left: 120px;
	margin-bottom: 40px;
}
@media (max-width: 768px) {
.itinerary-item {
	padding-left: 80px;
}
}
.day-number {
	position: absolute;
	left: 0;
	top: 0;
	width: 80px;
	height: 80px;
	background: #28441e;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
}
@media (max-width: 768px) {
.day-number {
	width: 60px;
	height: 60px;
	font-size: 0.9rem;
}
}
.day-content {
	background: #ffffff;
	padding: 25px;
	border-radius: 15px;
	border: 2px solid rgba(40, 68, 30, 0.2);
}
.day-content h4 {
	font-size: 1.3rem;
	margin-bottom: 15px;
}
.day-content p {
	color: #2f2a25;
	line-height: 1.6;
	margin-bottom: 15px;
}
.day-details {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
}
.day-details span {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1rem;
	font-weight: 500;
}
.day-details span i {
  color: #5b4632;
}
.tour-inclusions {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-bottom: 60px;
}
.included-section, .excluded-section, .important-section {
	
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
	padding: 20px;
}
.tour-inclusions h3 {
	font-size: 1.4rem;
	margin-bottom: 25px;
}
.tour-inclusions h3 i {
	font-size: 1.6rem;
}
.included-section h3, .included-section h3 i {
	color: #28a745;
}
.excluded-section h3, .excluded-section h3 i {
	color: #dc3545;
}
.inclusion-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.inclusion-list li {
	display: flex;
	align-items: center;
	padding: 10px 0;
	color: #2f2a25;
	border-bottom: 2px solid rgba(40, 68, 30, 0.2);
}
.inclusion-list li:last-child {
	border-bottom: none;
}
.inclusion-list li i {
	margin-right: 10px;
}
.inclusion-list.included i, .inclusion-list.excluded i {
	font-size: 1.6rem;
}
.inclusion-list.included i {
	color: #28a745;
}
.inclusion-list.excluded i {
	color: #dc3545;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .tour-info-info-box p {
	font-size: 20px;
	white-space: pre-line;
	line-height: 2;
	margin-bottom: 0;
}
.contact .map-box {
	margin-top: 100px;
}
.contact .form-container-overlap {
	position: relative;
	margin-top: -100px;
	margin-bottom: 0;
	z-index: 10;
}
.input-with-icon {
	position: relative;
}
.input-with-icon i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(40, 68, 30, 0.6);
	font-size: 18px;
	z-index: 10;
}
.input-with-icon i.message-icon {
	top: 20px;
}
.input-with-icon .form-control {
	padding-left: 2.5rem
}
.contact .loading,
.contact .error-message,
.contact .sent-message {
	margin-top: 10px;
	margin-bottom: 20px;
}
@media (max-width: 1000px) {
.contact .form-container-overlap {
	margin-top: -50px;
}
}
@media (max-width: 800px) {
.contact .form-container-overlap {
	margin-top: 40px;
}
}
/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
}
.error-wrapper {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 20px;
	row-gap: 60px;
}
.error-col {
	width: calc((100% - 20px) / 2);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.error-content {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}
.error-illustration {
	position: relative;
	max-width: 600px;
	max-height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.error-illustration i {
	font-size: 9rem;
	color: rgba(40, 68, 30, 0.8);
	position: relative;
	z-index: 2;
	animation: pulse 2s infinite;
}
.error-illustration .circle {
	position: absolute;
	border-radius: 50%;
	opacity: 0.6;
}
.error-illustration .circle.circle-1 {
	width: 200px;
	height: 200px;
	background: rgba(91, 65, 29, 0.4);
	animation: float 6s ease-in-out infinite;
}
.error-illustration .circle.circle-2 {
	width: 120px;
	height: 120px;
	background: rgba(40, 68, 30, 0.5);
	top: 30%;
	left: 25%;
	animation: float 8s ease-in-out infinite;
}
.error-illustration .circle.circle-3 {
	width: 80px;
	height: 80px;
	background: rgba(91, 65, 29, 0.5);
	bottom: 20%;
	right: 30%;
	animation: float 7s ease-in-out infinite reverse;
}
@keyframes float {
	0%,
	100% {
	transform: translateY(0);
}
	50% {
	transform: translateY(-20px);
}
}
@keyframes pulse {
	0%,
	100% {
	transform: scale(1);
}
	50% {
		transform: scale(1.05);
}
}
.error-404 .error-badge {
	display: inline-block;
	background-color: rgba(91, 65, 29, 0.2);
	color: #28441e;
	font-size: 1rem;
	font-weight: 600;
	padding: 0.5rem 1.5rem;
	border-radius: 30px;
	margin-bottom: 1rem;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.error-404 .error-code {
	font-size: clamp(5rem, 10vw, 8rem);
	font-weight: 900;
	color: red;
	margin: 0;
	background: linear-gradient(135deg, rgba(40, 68, 30, 1), rgba(91, 65, 29, 1));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	letter-spacing: -2px;
}
.error-404 .error-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #28441e;
	margin-bottom: 1.5rem;
}
.error-404 .error-description {
	font-size: 1.1rem;
	color: #28441e;
	margin-bottom: 2rem;
	line-height: 1.6;
	text-align: justify;
}
.error-404 .error-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}
@media (max-width: 1000px) {
.error-col {
	width: 100%;
}
}
@media (max-width: 992px) {
.error-404 .error-illustration {
	max-height: 300px;
	margin-bottom: 2rem;
}
}
@media (max-width: 768px) {
.error-404 .error-code {
	font-size: clamp(4rem, 12vw, 6rem);
}
.error-404 .error-title {
	font-size: 1.8rem;
}
.error-404 .error-actions {
	flex-direction: column;
}
}
/* Custom Flag Styling */
.fi {
	border-radius: 2px; /* Gives flags slightly rounded corners */
	line-height: 1;
	display: inline-block;
	vertical-align: middle;
}
/* Optional: if you want the flags to be slightly bigger */
.navmenu .dropdown ul li a .fi {
	font-size: 2.5rem;
}