/*
Main Style
*/


/*** Global CSS ***/

:root {
  --dmsans:"DM Sans", serif;
  --white: #fff;
  --title: #222;
  --body: #444;
  --rating: #ffc107;
  --mat: #212529;
  --yellow: #ec6810;
  --violet: #667eea;
  --2c2b: #2c2b49;
  --gray: #F3FAF2;
  --dd: #ddd;
  --dc: #dcdcdc;
  --777: #777;
  --f7: #f7f7f7;
  --f9: #f9f9f9;
  --e5: #e5e5e5;
  --26: #262626;
  --rating: #FF8A00;
  --red: #E84946;
  --orange: #FF5A24;
  --red2: #ff3333;
  --blue: #2E80EC;
  --footer: #001728;
  --box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  --shadow-2: 0 6px 35px rgba(215,216,222,0.3);
  --shadow-3: 0 10px 50px 0 rgba(26,46,85,.07);
  --Y5: translateY(-5px);
}

body{
	color: var(--body);
	overflow-x: hidden;
	font-size: 18px;
	font-family: var(--dmsans);
	font-weight: 400;
	line-height: 1.8;
	position: relative;
}

h1,
h2, 
h3, 
h4, 
h5, 
h6{
	color: var(--title);
    font-family: var(--dmsans);
	font-weight: 700;
	line-height: auto;
}

html,
body {
	position: relative;
}
img{
    max-width: 100%;
}
a{
	text-decoration: none;
	color: var(--body);
	transition: .5s;
	font-size: 18px;
}
a:hover,
a:focus{
	color: var(--mat);
}

.section-padding{
	padding: 50px 0;
}
.mt100{
	margin-top: 100px;
}

.pt100{
	padding-top: 100px;
}
.pb100{
	padding-bottom: 100px;
}
.green_btn,
.yellow_btn{
	padding: 10px 30px;
	border-radius: 30px;
	transition: .5s;
	font-weight: 500;
	display: inline-block;
}

.green_btn{
	background: var(--mat);
	color: var(--white);
}
.yellow_btn{
	background: var(--yellow);
	color: var(--white);
}
.green_btn i,
.yellow_btn i{
	width: 35px;
	height: 35px;
	line-height: 35px;
	background: var(--white);
	color: var(--mat);
	border-radius: 50%;	
	display: inline-block;
	text-align: center;
	margin-left: 10px;
	margin-right: -20px;
}
.yellow_btn i{
	color: var(--yellow);
}
.green_btn:hover,
.green_btn:focus{
	background: var(--yellow);
	color: var(--white);
}
.green_btn:hover i{
	color: var(--yellow);
}
.yellow_btn:hover,
.yellow_btn:focus{
	color: var(--white);
}
.yellow_btn:hover i{
	color: var(--mat);
}

.section-heading{
	margin-bottom: 50px;
}
.section-heading span,
.cta_content span {
	color: var(--yellow);
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 5px;
	margin-top: 15px;
	display: block;
}
.section-heading h2 {
	color: var(--title);
	font-size: 28px;
	font-weight: 600;
	line-height: 38px;
}

/** Preloader **/
.preloader_wrap{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: var(--white);
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	overflow-x: hidden;
	overflow-y: hidden;
}
.preloader_wrap h2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 22px;
	/* -webkit-text-stroke-width: 1px; */
	/* -webkit-text-stroke-color: var(--title); */
	color: var(--title);
	letter-spacing: 0px;
}
.preloader_wrap .preloader {
  position: relative;
  width: 110px;
  height: 110px;
}

.preloader_wrap .preloader span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: rotate(calc(18deg * var(--i)));
}

.preloader_wrap .preloader span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--mat);
  border-radius: 50%;
  transform: scale(0);
  animation: animate 1s linear infinite;
  animation-delay: calc(0.1s * var(--i));
}

@keyframes animate {
  0% {
    transform: scale(0);
  }
  
  10% {
    transform: scale(1.2);
  }
  
  80%, 100% {
    transform: scale(0);
  }
}

.preloader_wrap .preloader_icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	animation: rotating 2s linear infinite;
	animation-delay: -1s;
	border: 2px solid rgba(0,0,0,0.03);
	border-radius: 50%;
}

@keyframes rotating {
  0% {
    transform: rotate(10deg);
  }
  
  100% {
    transform: rotate(370deg);
  }
}

.preloader_icon::before {
	position: absolute;
	top: 80px;
	left: 90px;
	color: var(--yellow);
	font-size: 35px;
	transform: rotate(110deg);
}

/* Header */

#tr_header{
	padding:20px 0;
}
.site_logo{
	width: 150px;
}
.site_logo a{
	display: block;
}
.header_right{
	gap: 39px;
}
.main-menu ul{
	padding-left: 0;
	margin-bottom: 0;
}
.main-menu li{
	display: inline-block;
	margin-left: 20px;
	position: relative;
	line-height: 35px;
}
.main-menu li a {
	text-transform: capitalize;
	font-weight: 500;
	transition: .5s;
	font-size: 18px;
	color: var(--title);
	transition: .5s;
	position: relative;
}
.main-menu li a i{
	font-size: 13px;
}
.main-menu li a:hover,
.main-menu li a:focus{
	color: var(--mat);
}
.main-menu li ul.sub-menu {
	position: absolute;
	min-width: 220px;
	padding: 0 20px;
	background: #fff;
	box-shadow: 0 3px 11px #0000001a;
	max-height: 0;
	-webkit-transform-origin: 0 0 0;
	transform-origin: 0 0 0;
	left: 0;
	right: auto;
	visibility: hidden;
	overflow: hidden;
	-webkit-transition: .5s;
	transition: .5s;
	z-index: 99;
	top: 101%;
	text-align: left;
	display: block;
	border-radius: 4px;
}
.main-menu ul > li ul.sub_menu li a {
	font-size: 15px;
	display: block;
	line-height: 32px;
	text-transform: capitalize;
}
.main-menu ul ul.sub-menu li{
	display: block;
	margin-left: 0;
}
.main-menu ul ul.sub-menu li a {
	font-size: 14px;
	display: block;
	line-height: 32px;
	text-transform: capitalize;
}

.main-menu ul > li:hover ul.sub-menu {
	visibility: visible;
	max-height: 360px;
	padding: 15px 20px;
}

.header_right .call_us{
	position: relative;
	gap: 16px;
	padding-left: 20px;
	padding-right: 20px;
}
.header_right .call_us:before,
.header_right .call_us:after{
	content: '';
	width: 1px;
	height: 30px;
	background: var(--dc);
	position: absolute;
	display: inline-block;

}
.header_right .call_us:before{
	left: 0px;
	top: 9px;	
}
.header_right .call_us:after{
	right: 1px;
	top: 9px;	
}

.header_right .call_us span {
	display: block;
	line-height: 20px;
}
.header_right .call_us a{
	font-weight: 500;
	color: var(--title);
	transition: .5s;
}
.header_right .call_us a:hover{
	color: var(--mat);
}
.header_right .call_us i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: var(--yellow);
	text-align: center;
	border-radius: 50%;
	color: var(--white);
	font-size: 20px;
}

.header_right .call_us p{
	margin-bottom: 0;
}

.header_right .chat_us{
	position: relative;
	gap: 16px;
	padding-left: 20px;
	padding-right: 20px;
}
.header_right .chat_us:before,
.header_right .chat_us:after{
	content: '';
	width: 1px;
	height: 30px;
	background: var(--dc);
	position: absolute;
	display: inline-block;

}
.header_right .chat_us:before{
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
}
.header_right .chat_us:after{
	right: 1px;
	top: 50%;
	transform: translateY(-50%);
}

.header_right .chat_us span {
	display: block;
	line-height: 20px;
}
.header_right .chat_us a{
	font-weight: 500;
	color: var(--title);
	transition: .5s;
}
.header_right .chat_us a:hover{
	color: var(--mat);
}
.header_right .chat_us i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: var(--mat);
	text-align: center;
	border-radius: 50%;
	color: var(--white);
	font-size: 20px;
}

.header_right .chat_us p{
	margin-bottom: 0;
}

.sidebar__toggle{
	font-size: 35px;
	color: var(--title);
	cursor: pointer;
}

/* Old Mobile Menu CSS Removed - Using Modern Offcanvas Implementation */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}


.mean-container a.meanmenu-reveal {
  display: none;
}


.mean-container .mean-nav {
	background: none;
	list-style: none;
	margin: 0;
}
.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items {
    flex-wrap: wrap;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
	background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	content: "";
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
	visibility: visible;
	opacity: 1;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
	opacity: 1;
	visibility: visible;
	bottom: 50%;
	transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
	width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
	text-align: center;
	margin: 15px auto;
	display: inline-block;
	font-size: 16px;
}

.mean-container a.meanmenu-reveal {
	display: none !important;
}

.mean-container .mean-nav ul li a {
	width: 100%;
	padding: 10px 0;
	color: var(--header);
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
	text-transform: capitalize;
	border-bottom: 1px solid var(--dc) !important;
	border: none;
}
.mean-container .mean-nav ul li a:hover {
	color: var(--p2-clr);
}

.mean-container .mean-nav ul li a:last-child {
	border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
	color: var(--theme2);
}

.mean-container .mean-nav ul li a.mean-expand {
	margin-top: 5px;
	padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
	display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
	display: inline-block;
	font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
	border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
	height: 200px;
	width: 100%;
	padding: 0;
	border-top: 0;
	margin-bottom: 20px;
}

/** Slider **/
.tr_slider_wrap {
	padding: 0px 20px 0;
}
.tr_slider{
	overflow: hidden;	
	border-radius: 30px;
	position: relative;
}
.tr_slider .swiper-wrapper{
	
}
.slider_item{
	border-radius: 30px;
	padding: 120px 0 180px;
	position: relative;
	background-size: cover;
	z-index: 1;
	color: var(--white);
	border-radius: 30px;	
}
.slider_item .subheading {
	color: var(--yellow);
	font-weight: 500;
	margin-bottom: 25px;
	display: inline-block;
	background: rgba(225,225,225,.08);
	padding: 1px 18px;
	border-radius: 4px;
	font-size: 18px;
}
.slider_item h1.heading{
	color: var(--white);
	font-size: 65px;
	margin-bottom: 25px;
}
.slider_item p{
	margin-bottom: 50px;
	font-size: 18px;
}
.slider_item:after{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	left: 0;
	top: 0;
	border-radius: 30px;
	z-index: -1;
}
.harrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 29px;
	color: var(--white);
	z-index: 11;
	width: 65px;
	height: 65px;
	line-height: 75px;
	background: rgba(0,0,0,0.2);
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	transition: .5s;
}
.harrow:hover{
	background: var(--mat);
	color: var(--white);
}
.hs_prev_arrow{left: 40px;}
.hs_next_arrow{right: 40px;}

/* Active Animation  */

.active_animation{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both; 	
}	
.tr_slider .swiper-slide-active .subheading{
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
  -webkit-animation-name: fadeInDown ;
  animation-name: fadeInDown ;
  
}
.tr_slider .swiper-slide-active .heading {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-animation-name: fadeInDown ;
  animation-name: fadeInDown ;
}

.tr_slider .swiper-slide-active p {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
  -webkit-animation-name: fadeInDown ;
  animation-name: fadeInDown ;
}

.tr_slider .swiper-slide-active .yellow_btn {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.tr_slider .swiper-slide.swiper-slide-active .slider_item{

}

/* Search Filter */

.tr_search_filter {

}
.tr_search_filter .adut_box .nice-select,
.tr_search_location .nice-select,
.tr_search_filter input{
	width: 185px;
}
.tr_search_filter form{
	gap: 30px;
	border-radius: 10px;
	box-shadow: 0 0 30px rgba(0,0,0,0.05);
	padding: 30px 30px 35px;
	transform: translateY(-53px);
	position: relative;
	z-index: 11;
	background: var(--white);	
}
.tr_search_filter label{
	display: block;
	font-size: 15px;
	font-weight: 500;
	color: var(--title);
	margin-bottom: 10px;
	text-align: left;
	cursor: pointer;
}
.booking_form .input-group-append i,
.tr_search_filter .input-group-append i {
	position: absolute;
	top: 15px;
	left: 11px;
	font-size: 16px;
	color: #9D9C9D;
}


.tr_search_filter .adut_box select,
.tr_search_filter .form-control,
.booking_form .form-control,
.booking_form select,
#trs_location {
	height: 45px;
	line-height: 45px;
	background: var(--white);
	border: 1px solid var(--dc);
	border-radius: 4px;
	padding: 6px 19px;
	color: var(--body);
}

.tr_search_filter .form-control,
.booking_form .form-control  {
	padding: 6px 19px 6px 40px;
}
.tr_search_filter .form-control:hover,
.tr_search_filter .form-control:focus{
	box-shadow: inherit;
	outline: inherit;
	border-color: var(--mat);
}
.tr_search_filter button {
	height: 45px;
	line-height: 45px;
	padding: 0 35px;
	border: 1px solid var(--mat);
	background: var(--mat);
	color: var(--white);
	border-radius: 30px;
	font-weight: 400;
	margin-top: 38px;
	transition: .5s;
}

.tr_search_filter button i{
	display: inline-block;
}
.tr_search_filter button:hover,
.tr_search_filter button:focus{
	background: var(--yellow);
	border: 1px solid var(--yellow);
	color: var(--white);
}
.trdate_picker{
	position: relative;
}
.datepicker {
	padding: 8px;
}
.datepicker table tr td.active.active{
	background-color: var(--mat);
	background-image: linear-gradient(to bottom,var(--yellow),var(--yellow));
}

/** Travel Category **/

.tcat_image_wrap{

}
.tcat_img{
	width: 160px;
	height: 160px;
	border: 2px solid var(--dc);
	border-radius: 50%;
	position: relative;
	display: inline-block;
	transition: .5s;
	background-size: cover;
}
.category_item:hover .tcat_img{
	border-color: var(--mat);
}
.category_item span{
	color: var(--body);
	transition: .5s;
}
.category_item:hover span{
	color: var(--mat);
}
.tcat_image_wrap i {
	position: absolute;
	bottom: -2px;
	right: 25px;
	background: var(--white);
	box-shadow: 0 0 15px rgba(0,0,0,.2);
	padding: 8px;
	transition: .5s;
	border-radius: 4px;
	font-size: 17px;
	color: var(--title);
}
.category_item:hover i{
	background: var(--yellow);
	color: var(--white);
	border-radius: 4px;
}
.category_item h4 {
	font-size: 20px;
	margin-top: 12px;
	margin-bottom: 2px;
}
.trcategory_slider{
	position: relative;
}
.trcategory_slider .owl-nav,
.trcategory_slider .owl-nav.disabled {
	gap: 10px;
	display: flex !important;
	position: absolute;
	top: -95px;
	right: 0;
}
.travel_category .trcategory_slider .owl-nav button,
.trcategory_slider .owl-nav.disabled button{
	width: 40px;
	height: 40px;
	line-height: 45px;
	background: var(--mat);
	color: var(--white);
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	transition: .5s;
	
}
.trcategory_slider .owl-nav button:hover,
.trcategory_slider .owl-nav button:focus,
.trcategory_slider .owl-nav.disabled button:hover,
.trcategory_slider .owl-nav.disabled button:focus{
	background: var(--yellow);
	color: var(--white);
}

/** About **/

.tr_about{
	background-size: cover;
	padding: 100px 0;
}
.ab_img_2 {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.about_badge {
	position: absolute;
	bottom: 88px;
	left: -50px;
	background: var(--white);
	padding: 11px 35px 15px;
	border-radius: 10px;
	z-index: 11;
	text-align: center;
	box-shadow: var(--box-shadow);
}
.about_badge h3{
	color: var(--mat);
	font-size: 22px;
	margin-bottom: 0;
}
.about_shape {
	position: absolute;
	left: -93px;
	bottom: 115px;
	width: 145px;
}
.about_content {
	padding-left: 35px;
}
.about_content .section-heading{
	margin-bottom: 25px;
	margin-top: 25px;
}
.phone_number {
	margin-left: 20px;
	display: flex;
	align-items: center;
	padding: 8px 15px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 25px;
	transition: all 0.3s ease;
}
.phone_number:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}
.phone_number i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: var(--white);
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	font-size: 18px;
	color: #28a745;
	margin-right: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.phone_number a{
	font-weight: 600;
	color: var(--title);
	text-decoration: none;
	font-size: 16px;
}
.about_content p{
	margin-bottom: 30px;
}

/** Counter Up **/

.counter_up.section-padding{
	padding-top: 100px;
}
.counter_item {
	text-align: center;
	color: var(--white);
	position: relative;
	padding: 0 10px 15px;
	background-size: cover;
	border-radius: 15px;
	z-index: 1;
	margin-bottom: 55px;
}
.counter_item:before{
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	left: 0;
	top: 0;
	position: absolute;
	z-index: -1;
	border-radius: 15px;
}
.counter_item i {
	width: 55px;
	height: 55px;
	line-height: 55px;
	background: var(--mat);
	color: var(--white);
	transform: translateY(-33px);
	display: inline-block;
	font-size: 28px;
	border-radius: 50%;
	outline: 2px solid var(--white);
	box-shadow: var(--box-shadow);
}
.counter_item h4{
	color: var(--white);
	margin-bottom: 5px;
}
.counter_item h4 span{
	font-size: 28px;
	margin-right: 5px;
}

/** Tour Package**/

.package_nav {
	text-align: center;
	margin-bottom: 5px;
}

.package_nav li {
	display: inline-block;
	padding: 3px 20px;
	background: #ECF4E9;
	font-weight: 500;
	border-radius: 5px;
	margin: 0 11px 30px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: .5s;
}
.package_nav li.mixitup-control-active{
	color: var(--mat);
	border-color: var(--mat);
}
.package_item{
	border: 1px solid var(--dd);
	border-radius: 15px;
	margin-bottom: 30px;
}
.package_item,
.pack_image{
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.pack_image img{
	border-radius: 15px;	
}
.pack_image:after{
	content: '';
	width: 100%;
	height: 0;
	background: rgba(0,0,0,0.5);
	position: absolute;
	transition: .5s;
	top: 0;
	left: 0;
	border-radius: 15px;
}
.package_item:hover .pack_image:after{
	height: 100%;
}
.pac_badge {
	position: absolute;
	top: 25px;
	left: 25px;
	z-index: 1;
	transition: .5s;
}
.pac_badge span{
	padding: 10px 25px;
	color: var(--white);
	background: var(--mat);
	border-radius: 30px;
	margin-right: 15px;
}
.pac_badge span.day{
	background: var(--yellow);
}
.tour_btn {
	display: inline-block;
	width: 0px;
	height:45px;
	line-height: 45px;
	background-color: var(--mat);
	border-radius: 50%;
	color: var(--white);
	font-size: 0;
	text-align: center;
	transition: .5s;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
	z-index: 1;
}
.tour_btn:hover,
.tour_btn:focus{
	background: var(--yellow);
	color: var(--white);
}
.package_item:hover .tour_btn{
	width: 45px;
	font-size: 16px;
}
.package_item:hover .pac_badge{
	opacity: 0;
	top: -100%;
}

.package_item h3{
	font-size: 22px;
	line-height: 32px;
}
.package_item h3 a{
	color: var(--title);
	transition: .5s;
}
.package_item h3 a:hover,
.package_item h3 a:focus{
	color: var(--mat);
}
.pack_content {
	padding: 25px 30px;
}
.pac_location {
	width: 100%;
}

/* Enhanced Package Styles */
.enhanced-package {
	transition: all 0.3s ease;
}

.enhanced-package:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.enhanced-package .package-title {
	font-size: 18px;
	line-height: 1.4;
}

.enhanced-package .package-title a {
	color: var(--title);
	font-size: 23px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.enhanced-package .package-title a:hover {
	color: var(--mat);
}

.enhanced-package .package-description {
	font-size: 18px;
	line-height: 1.5;
}

.enhanced-package .destinations-covered h6,
.enhanced-package .services-included h6 {
	font-size: 14px;
	font-weight: 600;
	color: var(--title);
}

.enhanced-package .destinations-covered .badge,
.enhanced-package .services-included .badge {
	font-size: 11px;
	font-weight: 500;
}

.enhanced-package .services-included small {
	font-size: 12px;
}

.enhanced-package .pricing .pack_price {
	font-weight: 700;
	color: var(--mat);
}

.enhanced-package .btn-success {
	background-color: var(--mat);
	border-color: var(--mat);
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.enhanced-package .btn-success:hover {
	background-color: var(--yellow);
	border-color: var(--yellow);
	transform: translateY(-1px);
}

.enhanced-package .pack_rating {
	font-size: 12px;
	font-weight: 600;
}

/* Responsive adjustments for enhanced packages */
@media (max-width: 768px) {
	.enhanced-package .package-title {
		font-size: 16px;
	}

	.enhanced-package .package-description {
		font-size: 13px;
	}

	.enhanced-package .destinations-covered .badge,
	.enhanced-package .services-included .badge {
		font-size: 10px;
	}

	.enhanced-package .pack_content {
		padding: 20px 25px;
	}
}
.pac_location i{
	color: var(--yellow);
	font-size: 22px;

}
.pac_location span{

}
.pack_btm {
	border-top: 1px solid var(--dd);
	padding-top: 15px;
	margin-top: 15px;
}
.pack_price{
	font-weight: 600;
	color: var(--mat);
	font-size: 18px;
}
.pack_price small{
	color: var(--body);
	font-size: 16px;
	font-weight: 400;
}
.pack_rating{
	font-weight: 600;
}
.pack_rating i{
	color: var(--yellow);
}

/* Clients */

.tr_clients{
	padding: 80px 0;
}
.clients_slider {
	padding: 0 30px;
}

/* Review */

.testimonials {
	background-size: cover;
	padding: 50px 0;
}
.test_quote {
	width: 55px;
	position: absolute;
	right: -6px;
	bottom: -28px;
}
.testimonials hr {
	margin-right: 40px;
}
.mb-40{
	margin-bottom: 40px;
}
.testimonials_image img{
	padding: 0 10px;
	margin-bottom: 20px;
}
.test_arrow {
	display: flex;
	gap: 22px;
	margin-left: 20%;
	margin-top: 10px;
}
.test_arrow span{
	width: 45px;
	height: 45px;
	line-height: 50px;
	background: var(--white);
	display: inline-block;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	box-shadow: var(--box-shadow);
	transition: .5s;
	color: var(--mat);
}
.test_arrow span:hover{
	background: var(--mat);
	color: var(--white);
}
.test_rating{
	margin-bottom: 15px;
}
.test_rating i{
	color: var(--orange);
}
.testimonials_item{
	overflow: hidden;
}
.testimonials_item p{
	font-size: 22px;
	font-weight: 600;
	font-style: italic;
}
.testimonials_item h4{
	color: var(--mat);
	font-size: 22px;
	margin-bottom: 5px;
}
.overflow{
	overflow: hidden;
}
/** Features **/
.feature_item{
	border: 1px solid var(--dc);
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 25px;
	transition: .5s;
}
.feature_item:hover{
	border-color: var(--mat);
	box-shadow: var(--box-shadow);
	transform: translate(-5px, 5px);
}
.feature_item i{
	font-size: 45px;
	color: var(--mat);
	margin-bottom: 15px;
	display: block;
}

.feature_item h3{
	font-size: 20px;
}

/** Our Services Section **/
.our_services {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* New Service Card Design */
.service-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--mat) 0%, var(--yellow) 100%);
	z-index: 1;
}

.service-badge {
	z-index: 10;
}

.service-badge .badge {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-image {
	position: relative;
	overflow: hidden;
	height: 280px;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-image img {
	transform: scale(1.08);
}

.service-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(99, 171, 69, 0.85) 0%, rgba(19, 191, 230, 0.85) 100%);
	opacity: 0;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-card:hover .service-overlay {
	opacity: 1;
}

.service-icon {
	width: 70px;
	height: 70px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
	transform: scale(1);
}

.service-content {
	padding: 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.service-content h3 {
	font-size: 22px;
	line-height: 1.3;
	margin-bottom: 0;
	font-weight: 700;
}

.service-content h3 a {
	color: var(--title);
	text-decoration: none;
	transition: color 0.3s ease;
}

.service-content h3 a:hover {
	color: var(--mat);
}

.service-rating {
	margin-bottom: 15px;
}

.service-rating i {
	font-size: 14px;
	margin-right: 2px;
}

.service-content p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--body);
	margin-bottom: 20px;
	flex-grow: 1;
}

.service-features {
	margin-bottom: 20px;
}

.service-features small {
	font-size: 13px;
	font-weight: 500;
}

.service-features i {
	font-size: 14px;
	width: 16px;
}

.service-action {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.price-info {
	text-align: left;
}

.price-info .h5 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}

.price-info small {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.service-action .btn {
	font-size: 14px;
	font-weight: 600;
	padding: 12px 24px;
	border: none;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.service-action .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.services-cta {
	background: var(--white);
	padding: 50px;
	border-radius: 20px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.services-cta h3 {
	color: var(--title);
	font-size: 32px;
	font-weight: 700;
}

.services-cta .btn {
	font-weight: 600;
	padding: 15px 30px;
	border-radius: 50px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.services-cta .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* New Safari Package Card Styles */
.safari-package-card {
	margin-bottom: 40px;
}

.safari-package-card .package-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
}

.safari-package-card .package-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.safari-package-card .package-card:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--mat) 0%, var(--yellow) 100%);
	z-index: 1;
}

.safari-package-card .package-badge {
	z-index: 10;
}

.safari-package-card .package-badge .badge {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.safari-package-card .package-image {
	position: relative;
	overflow: hidden;
	height: 320px;
}

.safari-package-card .package-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.safari-package-card .package-card:hover .package-image img {
	transform: scale(1.08);
}

.safari-package-card .package-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(99, 171, 69, 0.85) 0%, rgba(19, 191, 230, 0.85) 100%);
	opacity: 0;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.safari-package-card .package-card:hover .package-overlay {
	opacity: 1;
}

.safari-package-card .package-icon {
	width: 80px;
	height: 80px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.safari-package-card .package-card:hover .package-icon {
	transform: scale(1);
}

/* Safari package places covered section - now handled by global responsive styles */

.safari-package-card .package-content {
	padding: 30px;
}

.safari-package-card .package-rating i {
	font-size: 14px;
	margin-right: 2px;
}

.safari-package-card .feature-item {
	background: rgba(248, 249, 250, 0.5);
	padding: 12px;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.safari-package-card .feature-item:hover {
	background: rgba(99, 171, 69, 0.1);
}

.safari-package-card .feature-item i {
	font-size: 18px;
	width: 20px;
}

.safari-package-card .pricing-section {
	background: rgba(40, 167, 69, 0.05);
	border: 1px solid rgba(40, 167, 69, 0.1);
}

.safari-package-card .action-buttons .btn {
	font-weight: 600;
	padding: 12px 24px;
	border: none;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.safari-package-card .action-buttons .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Budget Package Card Styles */
.budget-package-card {
	margin-bottom: 40px;
}

.budget-package-card .package-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
}

.budget-package-card .package-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.budget-package-card .package-card:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ffc107 0%, var(--mat) 100%);
	z-index: 1;
}

.budget-package-card .package-badge {
	z-index: 10;
}

.budget-package-card .package-badge .badge {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.budget-package-card .package-image {
	position: relative;
	overflow: hidden;
	height: 320px;
}

.budget-package-card .package-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.budget-package-card .package-card:hover .package-image img {
	transform: scale(1.08);
}

.budget-package-card .package-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(255, 193, 7, 0.85) 0%, rgba(99, 171, 69, 0.85) 100%);
	opacity: 0;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.budget-package-card .package-card:hover .package-overlay {
	opacity: 1;
}

.budget-package-card .package-icon {
	width: 80px;
	height: 80px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.budget-package-card .package-card:hover .package-icon {
	transform: scale(1);
}

/* Budget package places covered section - now handled by global responsive styles */

.budget-package-card .package-content {
	padding: 30px;
}

.budget-package-card .package-rating i {
	font-size: 14px;
	margin-right: 2px;
}

.budget-package-card .feature-item {
	background: rgba(248, 249, 250, 0.5);
	padding: 12px;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.budget-package-card .feature-item:hover {
	background: rgba(255, 193, 7, 0.1);
}

.budget-package-card .feature-item i {
	font-size: 18px;
	width: 20px;
}

.budget-package-card .pricing-section {
	background: rgba(40, 167, 69, 0.05);
	border: 1px solid rgba(40, 167, 69, 0.1);
}

.budget-package-card .action-buttons .btn {
	font-weight: 600;
	padding: 12px 24px;
	border: none;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.budget-package-card .action-buttons .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive styles for new service cards */
@media (max-width: 992px) {
	.service-card .row {
		flex-direction: column;
	}

	.service-image {
		height: 250px;
	}

	.service-content {
		padding: 25px;
	}
}

@media (max-width: 768px) {
	.service-card {
		margin-bottom: 30px;
	}

	.service-image {
		height: 220px;
	}

	.service-content {
		padding: 20px;
	}

	.service-content h3 {
		font-size: 20px;
	}

	.service-content p {
		font-size: 15px;
	}

	.service-features small {
		font-size: 12px;
	}

	.service-action {
		flex-direction: column;
		gap: 15px;
		align-items: stretch;
		text-align: center;
	}

	.price-info {
		text-align: center;
	}

	.service-action .btn {
		width: 100%;
		justify-content: center;
	}

	.services-cta {
		padding: 40px 25px;
	}

	.services-cta h3 {
		font-size: 28px;
	}

	.services-cta .btn {
		width: 100%;
		margin-bottom: 15px;
	}
}

@media (max-width: 576px) {
	.service-card:before {
		height: 3px;
	}

	.service-badge .badge {
		font-size: 11px;
		padding: 6px 12px;
	}

	.service-image {
		height: 200px;
	}

	.service-content {
		padding: 20px 15px;
	}

	.service-content h3 {
		font-size: 18px;
	}

	.service-content p {
		font-size: 14px;
		line-height: 1.5;
	}

	.service-rating {
		margin-bottom: 12px;
	}

	.service-rating i {
		font-size: 12px;
	}

	.service-features {
		margin-bottom: 15px;
	}

	.service-features small {
		font-size: 11px;
	}

	.price-info .h5 {
		font-size: 20px;
	}

	.service-action .btn {
		font-size: 13px;
		padding: 10px 20px;
	}

	.services-cta {
		padding: 30px 20px;
	}

	.services-cta h3 {
		font-size: 24px;
	}

	.services-cta .lead {
		font-size: 16px;
	}

	.services-cta .btn {
		font-size: 14px;
		padding: 12px 25px;
	}
}

/* Responsive styles for safari and budget package cards */
@media (max-width: 992px) {
	.safari-package-card .package-card .row,
	.budget-package-card .package-card .row {
		flex-direction: column;
	}

	.safari-package-card .package-image,
	.budget-package-card .package-image {
		height: 280px;
	}

	.safari-package-card .package-content,
	.budget-package-card .package-content {
		padding: 25px;
	}
}

@media (max-width: 768px) {
	.safari-package-card,
	.budget-package-card {
		margin-bottom: 30px;
	}

	.safari-package-card .package-image,
	.budget-package-card .package-image {
		height: 250px;
	}

	.safari-package-card .package-content,
	.budget-package-card .package-content {
		padding: 20px;
	}

	.safari-package-card .package-content h3,
	.budget-package-card .package-content h3 {
		font-size: 22px;
	}

	.safari-package-card .package-content p,
	.budget-package-card .package-content p {
		font-size: 15px;
	}

	.safari-package-card .feature-item,
	.budget-package-card .feature-item {
		padding: 10px;
	}

	.safari-package-card .action-buttons,
	.budget-package-card .action-buttons {
		flex-direction: column;
		gap: 12px;
	}

	.safari-package-card .action-buttons .btn,
	.budget-package-card .action-buttons .btn {
		width: 100%;
		justify-content: center;
	}

	.safari-package-card .pricing-section,
	.budget-package-card .pricing-section {
		padding: 20px 15px;
	}

	.safari-package-card .places-covered-section,
	.budget-package-card .places-covered-section {
		padding: 15px;
	}
}

@media (max-width: 576px) {
	.safari-package-card .package-card:before,
	.budget-package-card .package-card:before {
		height: 3px;
	}

	.safari-package-card .package-badge .badge,
	.budget-package-card .package-badge .badge {
		font-size: 11px;
		padding: 6px 12px;
		margin-bottom: 5px;
		display: block;
		width: fit-content;
	}

	.safari-package-card .package-image,
	.budget-package-card .package-image {
		height: 220px;
	}

	.safari-package-card .package-content,
	.budget-package-card .package-content {
		padding: 18px 15px;
	}

	.safari-package-card .package-content h3,
	.budget-package-card .package-content h3 {
		font-size: 20px;
	}

	.safari-package-card .package-content p,
	.budget-package-card .package-content p {
		font-size: 14px;
		line-height: 1.5;
	}

	.safari-package-card .package-rating,
	.budget-package-card .package-rating {
		margin-bottom: 12px;
	}

	.safari-package-card .package-rating i,
	.budget-package-card .package-rating i {
		font-size: 12px;
	}

	.safari-package-card .package-features,
	.budget-package-card .package-features {
		margin-bottom: 15px;
	}

	.safari-package-card .feature-item,
	.budget-package-card .feature-item {
		padding: 8px;
	}

	.safari-package-card .feature-item i,
	.budget-package-card .feature-item i {
		font-size: 16px;
	}

	.safari-package-card .pricing-section .h4,
	.budget-package-card .pricing-section .h4 {
		font-size: 20px;
	}

	.safari-package-card .action-buttons .btn,
	.budget-package-card .action-buttons .btn {
		font-size: 13px;
		padding: 10px 20px;
	}

	.safari-package-card .places-covered-section,
	.budget-package-card .places-covered-section {
		padding: 12px;
	}

	.safari-package-card .place-tag,
	.budget-package-card .place-tag {
		font-size: 14px;
		padding: 3px 8px;
	}
}

/* Places Covered Section - Responsive Layout */
.places-covered-section {
	background: rgba(248, 249, 250, 0.8);
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	min-height: 120px;
	display: flex;
	flex-direction: column;
}

.places-covered-section h6 {
	margin-bottom: 12px !important;
	font-size: 14px;
	font-weight: 600;
	color: var(--mat);
}

.places-covered-section .ph {
	font-size: 16px;
}

.places-slider-container {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
}

/* Desktop Layout - Grid with vertical expansion */
@media (min-width: 992px) {
	.places-covered-section {
		min-height: 160px;
		padding: 20px !important;
	}

	.places-slider-container {
		height: 100%;
		align-items: stretch;
	}

	.places-slider {
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
		align-content: flex-start;
		height: 100%;
		overflow: visible;
		padding: 0;
		justify-content: flex-start;
	}

	.place-tag {
		background: var(--white);
		color: var(--body);
		padding: 10px 18px;
		border-radius: 18px;
		font-size: 14px;
		font-weight: 500;
		border: 1px solid rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease;
		white-space: nowrap;
		flex-shrink: 0;
		display: inline-flex;
		align-items: center;
		min-height: 36px;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	}

	.safari-package-card .place-tag:hover {
		background: var(--mat);
		color: var(--white);
		border-color: var(--mat);
		transform: translateY(-2px);
		box-shadow: 0 6px 16px rgba(99, 171, 69, 0.3);
	}

	.budget-package-card .place-tag:hover {
		background: #ffc107;
		color: var(--white);
		border-color: #ffc107;
		transform: translateY(-2px);
		box-shadow: 0 6px 16px rgba(255, 193, 7, 0.3);
	}
}

/* Tablet Layout - Transition to mobile */
@media (min-width: 769px) and (max-width: 991px) {
	.places-covered-section {
		min-height: 120px;
		padding: 15px !important;
	}

	.places-slider {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		overflow: visible;
		padding: 0;
	}

	.place-tag {
		background: var(--white);
		color: var(--body);
		padding: 6px 12px;
		border-radius: 14px;
		font-size: 12px;
		font-weight: 500;
		border: 1px solid rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease;
		white-space: nowrap;
		flex-shrink: 0;
	}
}

/* Mobile Layout - Horizontal Slider */
@media (max-width: 768px) {
	.places-covered-section {
		min-height: 85px;
		padding: 12px !important;
	}

	.places-slider-container {
		position: relative;
		overflow: hidden;
		border-radius: 8px;
	}

	.places-slider-container::before,
	.places-slider-container::after {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		width: 20px;
		z-index: 2;
		pointer-events: none;
	}

	.places-slider-container::before {
		left: 0;
		background: linear-gradient(to right, rgba(248, 249, 250, 0.95), transparent);
	}

	.places-slider-container::after {
		right: 0;
		background: linear-gradient(to left, rgba(248, 249, 250, 0.95), transparent);
	}

	.places-slider {
		display: flex;
		gap: 10px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-behavior: smooth;
		scrollbar-width: none; /* Firefox */
		-ms-overflow-style: none; /* IE and Edge */
		padding: 5px 25px 5px 25px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x;
	}

	.places-slider::-webkit-scrollbar {
		display: none; /* Chrome, Safari, Opera */
	}

	.place-tag {
		background: var(--white);
		color: var(--body);
		padding: 8px 14px;
		border-radius: 14px;
		font-size: 12px;
		font-weight: 500;
		border: 1px solid rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease;
		white-space: nowrap;
		flex-shrink: 0;
		scroll-snap-align: start;
		min-width: fit-content;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
		cursor: pointer;
		user-select: none;
	}

	.place-tag:active {
		transform: scale(0.95);
		background: rgba(0, 0, 0, 0.05);
	}
}

/* Small Mobile Layout */
@media (max-width: 576px) {
	.places-covered-section {
		min-height: 70px;
		padding: 10px !important;
	}

	.places-slider {
		padding: 0 15px;
		gap: 6px;
	}

	.place-tag {
		font-size: 11px;
		padding: 5px 10px;
		border-radius: 10px;
		min-height: 26px;
		display: flex;
		align-items: center;
	}
}

/* Enhanced place tags with special styling */
.place-tag.special {
	background: linear-gradient(135deg, #343a40 0%, #495057 100%);
	color: var(--white);
	border-color: #343a40;
}

.place-tag.special:hover {
	background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
	border-color: #495057;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(52, 58, 64, 0.3);
}

/* Mobile Layout - Hide Right Side Content */
@media (max-width: 768px) {
	/* Hide right side content completely on mobile */
	.package-card .row .col-lg-6:last-child {
		display: none !important;
	}

	/* Ensure left side content takes full width */
	.package-card .row .col-lg-6:first-child {
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}

	/* Ensure proper mobile styling for package content */
	.package-content {
		padding: 20px !important;
	}
}

/* Modern Offcanvas Menu Styling */
.fix-area {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fix-area.info-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.offcanvas__info {
	position: relative;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
}

.offcanvas__wrapper {
	position: absolute;
	top: 0;
	right: 0;
	width: 420px;
	height: 100%;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	overflow-y: auto;
}

.fix-area.info-open .offcanvas__wrapper {
	transform: translateX(0);
}



.offcanvas__content {
	padding: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.offcanvas__top {
	padding: 25px 30px;
	background: var(--mat);
	color: white;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas__logo img {
	max-height: 45px;
	filter: brightness(0) invert(1);
}

.offcanvas__close button {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.offcanvas__close button:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

.offcanvas__menu {
	flex: 1;
	padding: 20px 0;
}

.offcanvas__menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.offcanvas__menu ul li {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	margin-bottom: 2px;
}

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

.offcanvas__menu ul li a {
	display: flex;
	align-items: center;
	padding: 20px 30px;
	color: var(--heading);
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	transition: all 0.3s ease;
	position: relative;
	border-radius: 0;
}

.offcanvas__menu ul li a:hover {
	background: linear-gradient(135deg, var(--mat) 0%, #4a7c59 100%);
	color: white;
	padding-left: 45px;
	transform: translateX(5px);
}

.offcanvas__menu ul li a i {
	margin-right: 18px;
	font-size: 20px;
	width: 24px;
	text-align: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.offcanvas__menu ul li a:hover i {
	transform: scale(1.1);
}

.offcanvas__contact {
	padding: 25px 30px 30px;
	background: #f8f9fa;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.offcanvas__contact h4 {
	color: var(--mat);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--mat);
}

.offcanvas__contact h4 i {
	margin-right: 12px;
	font-size: 20px;
}

.contact-info {
	margin-bottom: 30px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 18px;
	padding: 16px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border-left: 4px solid var(--mat);
}

.contact-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-item:last-child {
	margin-bottom: 0;
}

.contact-item i {
	color: var(--mat);
	font-size: 18px;
	margin-right: 15px;
	margin-top: 3px;
	width: 24px;
	text-align: center;
	flex-shrink: 0;
}

.contact-item div {
	flex: 1;
	min-width: 0;
}

.contact-item strong {
	display: block;
	color: var(--heading);
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 5px;
}

.contact-item span {
	color: var(--body);
	font-size: 14px;
	line-height: 1.5;
	display: block;
}

.contact-item a {
	color: var(--mat);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.contact-item a:hover {
	color: #4a7c59;
	text-decoration: underline;
}

.social-links {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--mat);
	color: white;
	border-radius: 50%;
	text-decoration: none;
	font-size: 16px;
	transition: all 0.3s ease;
}

.social-links a:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(99, 171, 69, 0.4);
}

.offcanvas__overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.offcanvas__overlay.overlay-open {
	opacity: 1;
	visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.offcanvas__wrapper {
		width: 100%;
		box-shadow: none;
	}

	.offcanvas__top {
		padding: 25px;
	}

	.offcanvas__menu {
		padding: 15px 0;
	}

	.offcanvas__menu ul li a {
		padding: 18px 25px;
		font-size: 16px;
	}

	.offcanvas__menu ul li a:hover {
		padding-left: 35px;
	}

	.offcanvas__contact {
		padding: 20px 25px 25px;
	}

	.contact-item {
		padding: 14px;
		margin-bottom: 15px;
	}

	.contact-item i {
		font-size: 16px;
		width: 20px;
		margin-right: 12px;
	}

	.contact-item strong {
		font-size: 14px;
	}

	.contact-item span {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.offcanvas__top {
		padding: 20px;
	}

	.offcanvas__menu ul li a {
		padding: 16px 20px;
		font-size: 15px;
	}

	.offcanvas__menu ul li a:hover {
		padding-left: 30px;
	}

	.offcanvas__contact {
		padding: 15px 20px 20px;
	}

	.offcanvas__contact h4 {
		font-size: 16px;
		margin-bottom: 20px;
	}

	.contact-item {
		padding: 12px;
		margin-bottom: 12px;
	}
}

/* Hero Image Animation Enhancement */
.slider_item {
	position: relative;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	overflow: hidden;
	animation: heroZoom 18s ease-in-out infinite;
	-webkit-animation: heroZoom 18s ease-in-out infinite;
	-moz-animation: heroZoom 18s ease-in-out infinite;
	-o-animation: heroZoom 18s ease-in-out infinite;
}

@keyframes heroZoom {
	0% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
		-moz-transform: scale(1.0);
		-o-transform: scale(1.0);
	}
	50% {
		transform: scale(1.03);
		-webkit-transform: scale(1.03);
		-moz-transform: scale(1.03);
		-o-transform: scale(1.03);
	}
	100% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
		-moz-transform: scale(1.0);
		-o-transform: scale(1.0);
	}
}

@-webkit-keyframes heroZoom {
	0% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
	50% {
		-webkit-transform: scale(1.03);
		transform: scale(1.03);
	}
	100% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}

@-moz-keyframes heroZoom {
	0% {
		-moz-transform: scale(1.0);
		transform: scale(1.0);
	}
	50% {
		-moz-transform: scale(1.03);
		transform: scale(1.03);
	}
	100% {
		-moz-transform: scale(1.0);
		transform: scale(1.0);
	}
}

@-o-keyframes heroZoom {
	0% {
		-o-transform: scale(1.0);
		transform: scale(1.0);
	}
	50% {
		-o-transform: scale(1.03);
		transform: scale(1.03);
	}
	100% {
		-o-transform: scale(1.0);
		transform: scale(1.0);
	}
}

/* Performance optimization for mobile devices */
@media (max-width: 768px) {
	.slider_item {
		animation-duration: 20s;
		-webkit-animation-duration: 20s;
	}
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
	.slider_item {
		animation: none;
		-webkit-animation: none;
		-moz-animation: none;
		-o-animation: none;
	}
}

/* Modern Callback Modal Styling */
.modern-callback-modal {
	border: none;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

.modern-callback-header {
	background: linear-gradient(135deg, var(--mat) 0%, #4a7c59 100%);
	color: white;
	padding: 30px;
	border-bottom: none;
	border-radius: 20px 20px 0 0;
}

.header-content {
	display: flex;
	align-items: center;
	gap: 20px;
}

.icon-wrapper {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.icon-wrapper i {
	font-size: 28px;
	color: white;
}

.title-wrapper h4 {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	color: white;
}

.modal-subtitle {
	margin: 5px 0 0 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 400;
}

.modern-close {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.3s ease;
}

.modern-close:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(90deg);
}

.modern-callback-body {
	padding: 40px;
	background: #fafbfc;
}

.modern-callback-form .form-group {
	margin-bottom: 25px;
}

.modern-callback-form .form-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 10px;
	font-size: 15px;
}

.modern-callback-form .form-label i {
	font-size: 18px;
	color: var(--mat);
}

.required {
	color: #dc3545;
	font-weight: 700;
}

.optional {
	color: #6c757d;
	font-weight: 400;
	font-size: 13px;
}

.modern-input {
	padding: 15px 20px;
	border: 2px solid #e9ecef;
	border-radius: 12px;
	font-size: 15px;
	transition: all 0.3s ease;
	background: white;
}

.modern-input:focus {
	border-color: var(--mat);
	box-shadow: 0 0 0 0.2rem rgba(99, 171, 69, 0.15);
	background: white;
}

.modern-input::placeholder {
	color: #adb5bd;
	font-weight: 400;
}

.form-text {
	color: #6c757d;
	font-size: 13px;
	margin-top: 5px;
	display: block;
}

.form-actions {
	margin: 35px 0 25px 0;
}

.modern-submit-btn {
	width: 100%;
	padding: 18px 30px;
	background: linear-gradient(135deg, var(--mat) 0%, #4a7c59 100%);
	border: none;
	border-radius: 12px;
	color: white;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.modern-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(99, 171, 69, 0.4);
	background: linear-gradient(135deg, #4a7c59 0%, var(--mat) 100%);
}

.btn-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-loader {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-loader i {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.security-notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 15px 20px;
	background: rgba(99, 171, 69, 0.1);
	border-radius: 10px;
	border-left: 4px solid var(--mat);
}

.security-notice i {
	color: var(--mat);
	font-size: 18px;
	margin-top: 2px;
	flex-shrink: 0;
}

.security-notice span {
	color: #495057;
	font-size: 13px;
	line-height: 1.5;
}

.callback-message {
	margin-top: 20px;
}

.callback-message .alert {
	border-radius: 12px;
	border: none;
	padding: 15px 20px;
	font-weight: 500;
}

.callback-message .alert-success {
	background: rgba(40, 167, 69, 0.1);
	color: #155724;
	border-left: 4px solid #28a745;
}

.callback-message .alert-danger {
	background: rgba(220, 53, 69, 0.1);
	color: #721c24;
	border-left: 4px solid #dc3545;
}

/* Mobile Responsive for Callback Modal */
@media (max-width: 768px) {
	.modern-callback-header {
		padding: 25px 20px;
	}

	.header-content {
		gap: 15px;
	}

	.icon-wrapper {
		width: 50px;
		height: 50px;
	}

	.icon-wrapper i {
		font-size: 24px;
	}

	.title-wrapper h4 {
		font-size: 20px;
	}

	.modal-subtitle {
		font-size: 13px;
	}

	.modern-callback-body {
		padding: 25px 20px;
	}

	.modern-callback-form .form-group {
		margin-bottom: 20px;
	}

	.modern-input {
		padding: 12px 16px;
		font-size: 14px;
	}

	.modern-submit-btn {
		padding: 15px 25px;
		font-size: 15px;
	}

	.security-notice {
		padding: 12px 16px;
	}

	.security-notice span {
		font-size: 12px;
	}
}

/* Modern Features Section Styling */
.modern-features {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.modern-features::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--mat) 50%, transparent 100%);
}

.modern-section-header {
	max-width: 600px;
	margin: 0 auto;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(99, 171, 69, 0.1);
	color: var(--mat);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
	border: 1px solid rgba(99, 171, 69, 0.2);
}

.section-badge i {
	font-size: 16px;
}

.section-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--heading);
	margin-bottom: 15px;
	line-height: 1.2;
}

.section-subtitle {
	font-size: 18px;
	color: var(--body);
	line-height: 1.6;
	margin: 0;
}

.modern-feature-card {
	background: white;
	border-radius: 20px;
	padding: 35px 30px;
	height: 100%;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--mat) 0%, #4a7c59 100%);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.modern-feature-card:hover::before {
	transform: scaleX(1);
}

.modern-feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modern-feature-card.featured {
	background: linear-gradient(135deg, var(--mat) 0%, #4a7c59 100%);
	color: white;
	transform: scale(1.05);
}

.modern-feature-card.featured::before {
	background: rgba(255, 255, 255, 0.3);
	transform: scaleX(1);
}

.modern-feature-card.featured:hover {
	transform: scale(1.05) translateY(-5px);
}

.feature-icon {
	width: 70px;
	height: 70px;
	background: rgba(99, 171, 69, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	transition: all 0.3s ease;
}

.modern-feature-card.featured .feature-icon {
	background: rgba(255, 255, 255, 0.2);
}

.feature-icon i {
	font-size: 32px;
	color: var(--mat);
	transition: all 0.3s ease;
}

.modern-feature-card.featured .feature-icon i {
	color: white;
}

.modern-feature-card:hover .feature-icon {
	transform: scale(1.1);
	background: var(--mat);
}

.modern-feature-card:hover .feature-icon i {
	color: white;
}

.modern-feature-card.featured:hover .feature-icon {
	background: rgba(255, 255, 255, 0.3);
}

.modern-feature-card.featured:hover .feature-icon i {
	color: white;
}

.feature-content h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--heading);
	margin-bottom: 15px;
	line-height: 1.3;
}

.modern-feature-card.featured .feature-content h3 {
	color: white;
}

.feature-content p {
	font-size: 16px;
	color: var(--body);
	line-height: 1.6;
	margin: 0;
}

.modern-feature-card.featured .feature-content p {
	color: rgba(255, 255, 255, 0.9);
}

.feature-highlight {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 600;
	backdrop-filter: blur(10px);
}

/* Additional Services Section */
.additional-services {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.services-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--heading);
	text-align: center;
	margin-bottom: 30px;
	position: relative;
}

.services-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--mat) 0%, #4a7c59 100%);
	border-radius: 2px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 25px;
}

.service-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 25px 20px;
	background: rgba(99, 171, 69, 0.05);
	border-radius: 15px;
	transition: all 0.3s ease;
	border: 1px solid rgba(99, 171, 69, 0.1);
}

.service-item:hover {
	background: rgba(99, 171, 69, 0.1);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(99, 171, 69, 0.2);
}

.service-item i {
	font-size: 28px;
	color: var(--mat);
	margin-bottom: 12px;
	transition: all 0.3s ease;
}

.service-item:hover i {
	transform: scale(1.1);
	color: #4a7c59;
}

.service-item span {
	font-size: 16px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 5px;
}

.service-item small {
	font-size: 13px;
	color: var(--body);
	opacity: 0.8;
}

/* Mobile Responsive for Modern Features */
@media (max-width: 768px) {
	.section-title {
		font-size: 32px;
	}

	.section-subtitle {
		font-size: 16px;
	}

	.modern-feature-card {
		padding: 25px 20px;
	}

	.modern-feature-card.featured {
		transform: none;
	}

	.modern-feature-card.featured:hover {
		transform: translateY(-5px);
	}

	.feature-icon {
		width: 60px;
		height: 60px;
	}

	.feature-icon i {
		font-size: 28px;
	}

	.feature-content h3 {
		font-size: 20px;
	}

	.feature-content p {
		font-size: 15px;
	}

	.additional-services {
		padding: 30px 20px;
	}

	.services-title {
		font-size: 22px;
	}

	.services-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 20px;
	}

	.service-item {
		padding: 20px 15px;
	}

	.service-item i {
		font-size: 24px;
	}

	.service-item span {
		font-size: 15px;
	}
}

/* Floating WhatsApp Button */
.floating-whatsapp {
	position: fixed;
	bottom: 25px;
	right: 25px;
	z-index: 1000;
	background: #25D366;
	color: white;
	border-radius: 50px;
	padding: 15px 20px;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 16px;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
	background: #128C7E;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
	text-decoration: none;
}

.floating-whatsapp i {
	font-size: 24px;
	animation: whatsappBounce 1s infinite alternate;
}

.floating-whatsapp .whatsapp-text {
	white-space: nowrap;
}

@keyframes whatsappPulse {
	0% {
		box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	}
	50% {
		box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
	}
	100% {
		box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	}
}

@keyframes whatsappBounce {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
	.floating-whatsapp {
		bottom: 20px;
		right: 20px;
		padding: 12px 16px;
		font-size: 14px;
	}

	.floating-whatsapp i {
		font-size: 30px;
	}

	.floating-whatsapp .whatsapp-text {
		display: none;
	}
}

@media (max-width: 480px) {
	.floating-whatsapp {
		bottom: 15px;
		right: 15px;
		padding: 10px 12px;
		border-radius: 50%;
		width: 50px;
		height: 50px;
		justify-content: center;
	}

	.floating-whatsapp i {
		font-size: 30px;
		margin: 0;
	}
}

/* Modal Form Spacing Improvements */
.modal-content {
	border: none;
	border-radius: 15px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 25px 30px 20px;
	border-radius: 15px 15px 0 0;
}

.modal-title {
	font-weight: 600;
	font-size: 20px;
}

.modal-body {
	padding: 30px;
}

.modal-body .form-group,
.modal-body .mb-3 {
	margin-bottom: 25px;
}

.modal-body .form-label {
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 8px;
	font-size: 14px;
}

.modal-body .form-control {
	padding: 12px 16px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.modal-body .form-control:focus {
	border-color: var(--mat);
	box-shadow: 0 0 0 0.2rem rgba(99, 171, 69, 0.15);
}

.modal-body .alert {
	margin-top: 20px;
	margin-bottom: 0;
	padding: 15px 20px;
	border-radius: 8px;
	border: none;
}

.modal-body .alert-info {
	background: rgba(13, 202, 240, 0.1);
	color: #0c63e4;
}

.modal-footer {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding: 20px 30px 25px;
	border-radius: 0 0 15px 15px;
	gap: 15px;
}

.modal-footer .btn {
	padding: 12px 25px;
	font-weight: 600;
	border-radius: 8px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.modal-footer .btn-secondary {
	background: #6c757d;
	border-color: #6c757d;
}

.modal-footer .btn-secondary:hover {
	background: #5a6268;
	border-color: #545b62;
	transform: translateY(-1px);
}

.modal-footer .btn-success {
	background: var(--mat);
	border-color: var(--mat);
}

.modal-footer .btn-success:hover {
	background: #4a7c59;
	border-color: #4a7c59;
	transform: translateY(-1px);
}

.modal-footer .btn-warning {
	background: #ffc107;
	border-color: #ffc107;
	color: #000;
}

.modal-footer .btn-warning:hover {
	background: #e0a800;
	border-color: #d39e00;
	color: #000;
	transform: translateY(-1px);
}

/* Form Validation Styling */
.was-validated .form-control:invalid {
	border-color: #dc3545;
}

.was-validated .form-control:valid {
	border-color: var(--mat);
}

.invalid-feedback {
	font-size: 13px;
	margin-top: 5px;
}

/* Mobile Modal Adjustments */
@media (max-width: 576px) {
	.modal-header {
		padding: 20px 25px 15px;
	}

	.modal-body {
		padding: 25px;
	}

	.modal-footer {
		padding: 15px 25px 20px;
		flex-direction: column;
	}

	.modal-footer .btn {
		width: 100%;
		margin: 0;
	}

	.modal-title {
		font-size: 18px;
	}
}

/** Jeep Safari Page Styles **/
.jeep_safari_intro {
	background: var(--white);
	padding: 100px 0;
}

.safari_intro_content .intro_text p {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 20px;
}

.safari_intro_content .lead {
	font-size: 18px;
	font-weight: 500;
	color: var(--title);
}

.safari_package_block {
	background: var(--white);
	border-radius: 15px;
	padding: 30px;
	box-shadow: var(--box-shadow);
	margin-bottom: 40px;
	transition: all 0.3s ease;
}

.safari_package_block:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-2);
}

.package_image {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	height: 350px;
}

.package_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.safari_package_block:hover .package_image img {
	transform: scale(1.05);
}

.package_overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(99, 171, 69, 0.9), rgba(19, 191, 230, 0.8));
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.safari_package_block:hover .package_overlay {
	opacity: 1;
}

.package_features ul {
	margin: 0;
	padding: 0;
}

.package_features li {
	font-size: 14px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.package_features i {
	font-size: 16px;
	flex-shrink: 0;
}

.package_content {
	padding: 20px 0;
}

.package_title {
	font-size: 24px;
	color: var(--title);
	margin-bottom: 15px;
	font-weight: 700;
}

.package_description {
	font-size: 15px;
	line-height: 1.6;
	color: var(--body);
	margin-bottom: 20px;
}

.package_highlights p {
	margin-bottom: 8px;
	font-size: 14px;
}

.package_highlights strong {
	color: var(--title);
}

.package_pricing {
	margin: 20px 0;
	padding: 15px 0;
	border-top: 1px solid var(--dd);
	border-bottom: 1px solid var(--dd);
}

.package_pricing .price {
	font-size: 20px;
	font-weight: 700;
	color: var(--mat);
	display: block;
	width: fit-content;
}

.package_actions .btn {
	font-size: 14px;
	padding: 10px 20px;
	font-weight: 500;
}

.summary_feature {
	text-align: center;
	padding: 20px;
}

.summary_feature h4 {
	font-size: 18px;
	margin-bottom: 15px;
	color: var(--title);
}

.summary_feature p {
	font-size: 14px;
	color: var(--body);
	line-height: 1.6;
}

.cta_buttons .btn {
	font-size: 16px;
	padding: 12px 30px;
	font-weight: 600;
}

/* Text Highlighting Styles - Simplified */
.primary-highlight {
	color: var(--mat);
	font-weight: 700;
	background: rgba(99, 171, 69, 0.1);
	padding: 2px 6px;
	border-radius: 4px;
}

/* Location Links */
.location-link {
	color: var(--mat);
	text-decoration: none;
	border-bottom: 1px dotted var(--mat);
	transition: all 0.3s ease;
}

.location-link:hover {
	color: var(--yellow);
	border-bottom-color: var(--yellow);
	text-decoration: none;
}

.external-link {
	color: var(--yellow);
	text-decoration: none;
	border-bottom: 1px dotted var(--yellow);
	transition: all 0.3s ease;
}

.external-link:hover {
	color: var(--mat);
	border-bottom-color: var(--mat);
	text-decoration: none;
}

/* Package Badges */
.package_badges {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.package_badges .badge {
	font-size: 11px;
	padding: 5px 8px;
	font-weight: 600;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Removed excessive badge styling - keeping content as plain text with bold formatting */

/* Price Highlighting */
.price-highlight {
	background: linear-gradient(45deg, rgba(99, 171, 69, 0.1), rgba(19, 191, 230, 0.1));
	padding: 8px 12px;
	border-radius: 8px;
	border: 2px solid var(--mat);
	display: inline-block;
}

.price-highlight.premium {
	border-color: #ff9500;
	background: linear-gradient(45deg, rgba(255, 149, 0, 0.1), rgba(255, 193, 7, 0.1));
}

.pricing-note {
	margin-top: 8px;
}

.pricing-note .badge {
	font-size: 10px;
	margin-right: 5px;
}

/* Mobile Places Covered */
.mobile-places-covered {
	background: rgba(99, 171, 69, 0.05);
	padding: 15px;
	border-radius: 10px;
	border-left: 4px solid var(--mat);
}

.places-tags {
	max-height: 100px;
	overflow-y: auto;
}

.places-tags .badge {
	font-size: 14px;
	padding: 4px 8px;
	transition: all 0.3s ease;
}

.places-tags .badge:hover {
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Package Navigation */
.package-navigation {
	background: rgba(99, 171, 69, 0.05);
	padding: 20px;
	border-radius: 10px;
	border: 1px solid rgba(99, 171, 69, 0.2);
}

.nav-links .btn {
	font-size: 12px;
	padding: 6px 12px;
	transition: all 0.3s ease;
}

.nav-links .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* External Links Section */
.external-links {
	background: rgba(13, 110, 253, 0.05);
	padding: 12px;
	border-radius: 8px;
	border-left: 3px solid #0d6efd;
}

.external-links .btn {
	font-size: 11px;
	padding: 4px 8px;
}

/* Internal Links */
.internal-links {
	border-top: 1px solid var(--dd);
	padding-top: 10px;
}

.internal-links a {
	color: var(--body);
	transition: color 0.3s ease;
}

.internal-links a:hover {
	color: var(--mat);
}

/* Safari Gallery Styles */
.safari_gallery {
	background: var(--white);
}

.gallery-grid {
	margin: 0 -10px;
}

.gallery-item {
	padding: 0 10px;
}

.gallery-image {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	height: 250px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.gallery-image.large {
	height: 350px;
}

.gallery-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(99, 171, 69, 0.8), rgba(19, 191, 230, 0.7));
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

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

.gallery-content h5 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

.gallery-content p {
	font-size: 14px;
	margin-bottom: 15px;
	opacity: 0.9;
}

.gallery-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid white;
	border-radius: 50%;
	color: white;
	text-decoration: none;
	font-size: 20px;
	transition: all 0.3s ease;
}

.gallery-link:hover {
	background: white;
	color: var(--mat);
	transform: scale(1.1);
}

.gallery-cta {
	background: rgba(99, 171, 69, 0.05);
	padding: 40px;
	border-radius: 15px;
	border: 1px solid rgba(99, 171, 69, 0.1);
}

.gallery-cta h3 {
	color: var(--title);
	font-size: 24px;
}

/* Gallery Modal Styles */
.modal-content {
	border: none;
	border-radius: 15px;
	overflow: hidden;
}

.modal-header {
	background: var(--mat);
	color: white;
	border-bottom: none;
}

.modal-header .btn-close {
	filter: invert(1);
}

.modal-body img {
	width: 100%;
	height: auto;
	border-radius: 0;
}

/* Callback Modal Styles */
.callback-modal .modal-content {
	border: none;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.callback-modal .modal-header {
	background: var(--mat);
	color: white;
	border-bottom: none;
	padding: 25px 30px 20px;
	position: relative;
}

.callback-modal .modal-header::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.3) 100%);
}

.callback-modal .modal-title {
	font-size: 24px;
	font-weight: 600;
	margin: 0;
	display: flex;
	align-items: center;
}

.callback-modal .modal-title i {
	background: rgba(255, 255, 255, 0.2);
	padding: 8px;
	border-radius: 50%;
	margin-right: 15px;
	font-size: 20px;
}
.callback-modal .modal-title {
    color: white;
}

.callback-modal .btn-close {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	opacity: 1;
	transition: all 0.3s ease;
}

.callback-modal .btn-close:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(90deg);
}

.callback-modal .modal-body {
	padding: 35px 30px;
	background: white;
}

.callback-modal .modal-body .text-center {
	margin-bottom: 35px;
}

.callback-modal .modal-body .bg-light {
	background: linear-gradient(135deg, var(--mat) 0%, #050505 100%) !important;
	border: 3px solid rgba(102, 126, 234, 0.2);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
	transition: all 0.3s ease;
}

.callback-modal .modal-body .bg-light:hover {
	transform: scale(1.05);
	box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.callback-modal .modal-body .bg-light i {
	color: white !important;
	font-size: 2.5rem !important;
}

.callback-modal .form-label {
	font-weight: 600;
	color: var(--title);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
}

.callback-modal .form-label i {
	color: var(--mat);
	margin-right: 8px;
	font-size: 16px;
}

.callback-modal .form-control {
	border: 2px solid #e9ecef;
	border-radius: 12px;
	padding: 12px 16px;
	font-size: 15px;
	transition: all 0.3s ease;
	background: #fafbfc;
}

.callback-modal .form-control:focus {
	border-color: var(--mat);
	box-shadow: 0 0 0 0.2rem rgba(99, 171, 69, 0.15);
	background: white;
	transform: translateY(-1px);
}

.callback-modal .form-control::placeholder {
	color: #adb5bd;
	font-style: italic;
}

.callback-modal .btn-primary {
	background: linear-gradient(135deg, var(--mat) 0%, #131313 100%);
	border: none;
	border-radius: 12px;
	padding: 15px 25px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(99, 171, 69, 0.3);
}

.callback-modal .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(99, 171, 69, 0.4);
	background: linear-gradient(135deg, #0a0a0a 0%, var(--mat) 100%);
}

.callback-modal .btn-primary:active {
	transform: translateY(0);
}

.callback-modal .text-muted {
	color: #6c757d !important;
}

.callback-modal .invalid-feedback {
	color: var(--red);
	font-size: 14px;
	margin-top: 5px;
}

/* Responsive styles for jeep safari page */
@media (max-width: 768px) {
	.safari_package_block {
		padding: 20px;
	}

	.package_image {
		height: 250px;
		margin-bottom: 20px;
	}

	.package_title {
		font-size: 20px;
	}

	.package_description {
		font-size: 14px;
	}

	.package_actions .btn {
		display: block;
		width: 100%;
		margin-bottom: 10px;
	}

	.package_actions .me-3 {
		margin-right: 0 !important;
	}

	.cta_buttons .btn {
		display: block;
		width: 100%;
		margin-bottom: 15px;
	}

	.cta_buttons .me-3 {
		margin-right: 0 !important;
	}

	.summary_feature {
		padding: 15px;
	}

	.safari_intro_content .intro_text p {
		font-size: 15px;
	}

	.safari_intro_content .lead {
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	.safari_package_block {
		padding: 15px;
	}

	.package_image {
		height: 200px;
	}

	.package_title {
		font-size: 18px;
	}

	.package_description {
		font-size: 13px;
	}

	.package_features li {
		font-size: 12px;
	}

	.summary_feature h4 {
		font-size: 16px;
	}

	.summary_feature p {
		font-size: 13px;
	}

	/* Mobile responsive for new features */
	.package_badges {
		position: static;
		margin-bottom: 15px;
		flex-direction: row;
		justify-content: center;
		flex-wrap: wrap;
	}

	.package_badges .badge {
		margin: 2px;
	}

	.mobile-places-covered {
		padding: 12px;
	}

	.places-tags {
		max-height: 80px;
	}

	.places-tags .badge {
		font-size: 10px;
		padding: 3px 6px;
	}

	.external-links {
		padding: 10px;
	}

	.external-links .btn {
		font-size: 10px;
		padding: 3px 6px;
		margin-bottom: 5px;
	}

	.package-navigation {
		padding: 15px;
	}

	.nav-links .btn {
		font-size: 11px;
		padding: 5px 10px;
		margin-bottom: 5px;
	}

	.pricing-note .badge {
		font-size: 9px;
	}

	.primary-highlight {
		font-size: 14px;
		padding: 1px 3px;
	}

	/* Gallery responsive styles */
	.gallery-image,
	.gallery-image.large {
		height: 200px;
	}

	.gallery-content h5 {
		font-size: 16px;
	}

	.gallery-content p {
		font-size: 12px;
	}

	.gallery-link {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.gallery-cta {
		padding: 30px 20px;
	}

	.gallery-cta h3 {
		font-size: 20px;
	}

	.gallery-cta .btn {
		display: block;
		width: 100%;
		margin-bottom: 15px;
	}

	.gallery-cta .me-3 {
		margin-right: 0 !important;
	}
}

@media (max-width: 576px) {
	.gallery-image,
	.gallery-image.large {
		height: 180px;
	}

	.gallery-content h5 {
		font-size: 14px;
	}

	.gallery-content p {
		font-size: 11px;
	}

	.gallery-cta {
		padding: 25px 15px;
	}

	.gallery-cta h3 {
		font-size: 18px;
	}
}

/** Video **/
.tr_video{
	background-size: cover;
	position: relative;
	padding: 200px 0;
	z-index: 1;
	background-position: center bottom;
	overflow: hidden;
}
.tr_video:after{
	content: '';
	width: 100%;
	height: 100%;
	background:rgba(0,0,0,0.4) ;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.trv_title {
	position: absolute;
	top: 50%;
	left: 55%;
	transform: translate(-50%, -50%);
}
.tr_video h1 {
	font-size: 160px;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(225,225,225,0.1);
	letter-spacing: 180px;
	color: transparent;
}
.video_btn{
	width: 100px;
	height: 100px;
	line-height: 110px;
	font-size: 50px;
	color: var(--white);
	border:1px solid var(--white);
	text-align: center;
	display: inline-block;
	border-radius: 50%;
	position: relative;
	z-index: 11;
	transition: .5s;
}
.video_btn:hover,
.video_btn:focus{
	border-color: var(--mat);
	color: var(--white);
	background: var(--mat);
}

/** Blog **/

.tr_blog .section-heading{
	margin-bottom: 30px;
}
.tr_blog .green_btn{
	margin-bottom: 60px;
}
.tr_blog.section-padding{
	padding-bottom: 75px;
}
.blog_item{
	border: 1px solid var(--dc);
	border-radius: 15px;
	margin-bottom: 25px;
}
.blog_image{
	position: relative;

}
.blog_image img{
	border-radius: 15px;
}
.blog_image:after{
	content: '';
	background: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 15px;
	transition: .5s;
	opacity: 0;
}
.blog_item:hover .blog_image:after{
	opacity: 1;
}
.blog_date {
	padding: 5px 20px;
	border-radius: 30px;
	display: inline-block;
	background: rgba(0,0,0,0.2);
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 1;
	font-weight: 600;
	color: var(--white);
	font-size: 15px;
}
.blog_item h3 {
	font-size: 22px;
	line-height: 30px;
	margin-top: 8px;
}
.blog_item h3 a{
	color: var(--title);
}
.blog_item h3 a:hover{
	color: var(--mat);
}
.blog_meta {

}
.blog_meta a{
	font-weight: 500;
}
.blog_meta span{
	padding-right: 15px;
}
.blog_meta i{
	padding-right: 2px;
	color: var(--yellow);
}
.blog_content {
	padding: 25px 30px;
}
.blog_content p{
	margin-bottom: 0;
}

/** CTA **/
.tr_cta{
	border-radius: 15px;
	background-size: cover;
	position: relative;
	z-index: 1;
}
.tr_cta:after{
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.85);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	border-radius: 15px;
}
.cta_img {
	width: 100%;
	height: 100%;
	background-size: cover;
	border-radius: 15px 0 0 15px;
}

.cta_content{
	padding-left: 40px;
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
}
.cta_content h2 {
	font-size: 40px;
	color: var(--white);
	line-height: 48px;
	margin-bottom: 25px;
}
.cta_shape {
	position: absolute;
	right: 30px;
	bottom: 30px;
	width: 80px;
}

/** Footer **/
.tr_footer{
	background-size: cover;
	padding: 80px 0 25px;
	position: relative;
	z-index: 1;
	color: var(--white);
}
.tr_footer a{
	color: var(--white);
}
.tr_footer a:hover{
	color: var(--mat);
}
.tr_footer:after{
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.96);
	z-index: -1;
}
.footer-title {
	font-size: 18px;
	color: var(--white);
	margin-bottom: 28px;
}
.footer_widget{
	margin-bottom: 25px;
}
.footer_widget ul{
	padding-left: 0;
}
.footer_widget li{
	list-style-type: none;
	line-height: 37px;
}

.footer_about img{
	width: 130px;
	margin-bottom: 20px;
}
.footer_about span {
	font-weight: 500;
	margin-bottom: 5px;
	display: block;
}
.footer_about .social_link{
	padding-left: 0;
	display: flex;
	gap: 12px;
}
.footer_about .social_link li{
	list-style-type: none;
}
.footer_about .social_link li a {
	width: 30px;
	height: 30px;
	line-height: 34px;
	display: inline-block;
	background-color: var(--white);
	text-align: center;
	border-radius: 50%;
	color: var(--title);
	transition: .5s;
	font-size: 17px;
}
.footer_about .social_link li a:hover,
.footer_about .social_link li a:focus{
	background-color: var(--mat);
	color: var(--white);
}
.footer_widget form{
	position: relative;
}
.footer_widget input {
	height: 50px;
	line-height: 50px;
	padding: 15px 15px;
	border: 1px solid var(--white);
	background: var(--white);
	border-radius: 30px;
	transition: .5s;
	outline: none;
	width: 100%;
}

.footer_widget input:focus{
	border-color: var(--mat);
	outline: none;
}
.footer_widget form button {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: var(--yellow);
	color: var(--white);
	border: 1px solid var(--yellow);
	border-radius: 50%;
	position: absolute;
	top: 5px;
	right: 6px;
}
.subscription_form span {
	margin-top: 8px;
	display: block;
	font-size: 15px;
}
.footer_contact p{
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}
.footer_contact p:last-child{
	margin-bottom: 0;
}
.footer_contact i {
	font-size: 26px;
	color: var(--mat);
	padding-top: 4px;
}
.footer_contact span{
	overflow: hidden;
}
.tr_copyright {
	border-top: 1px solid rgba(225,225,225,0.5);
	padding-top: 20px;
	margin-top: 20px;
}
.tr_copyright p{
	margin-bottom: 0;
}

/** Main Banner **/

.main_banner {
	position: relative;
	background-size: cover;
	background-position: center center;
	z-index: 1;
	color: var(--white);
	padding: 80px 0;
	background-size: cover;
}
.tour_banner{
	padding-bottom: 275px;
}
.main_banner:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.3);
	z-index: -1;
	width: 100%;
	height: 100%;
}
.main_banner h1 {
	margin-bottom: 20px;
}
.main_banner h1,
.main_banner a{
	color: var(--white);
}
.main_banner p {
	margin-bottom: 0;
	background: rgba(225,225,225,0.1);
	display: inline-block;
	padding: 4px 18px;
	border-radius: 30px;
	font-size: 14px;
}
.main_banner a{
	display: inline-block;
}
.main_banner p i {
	top: 2px;
	position: relative;
}

/** Tour **/
.tour-packages{
	padding: 30px 0 100px;
}

/** Tour Details **/

.tdetails_meta {
	padding: 8px 0;
	border: 1px solid var(--dc);
	padding: 7px 15px;
	border-radius: 5px;
	margin-bottom: 25px;
}
.tdetails_meta .tmeta:last-child{
	float: right;
}
.tdetails_meta i{
	padding-right: 5px;
	color: var(--yellow);
}
.tour_entry_content{
	margin-bottom: 30px;
}
.tour_entry_content .tdtitle{
	font-size: 24px;
} 
.stour_image{
	margin-bottom: 30px;
}

.tour_slider{
	position: relative;
}

.tour_slider .slick-arrow{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	width: 45px;
	height: 45px;
	line-height: 42px;
	display: inline-block;
	border: 1px solid var(--white);
	color: var(--white);
	text-align: center;
	background: transparent;
	border-radius: 50%;
	transition: .5s;
	font-size: 0;
}

.tour_slider .slick-arrow:hover{
	background: var(--yellow);
	border-color: var(--yellow);
	color: var(--white);
}
.tour_slider .slick-next::before {
	content: "\e06c";
	font-family: "Phosphor" !important;
	font-size: 17px;
}

.tour_slider .slick-prev::before {
	content: "\e058";
	font-family: "Phosphor" !important;
	font-size: 17px;
}
.tour_slider .slick-prev.slick-arrow{
	left: 15px;
}
.tour_slider .slick-next.slick-arrow{
	right: 15px;
}
.tour_slider_nav {
	margin-top: 30px;
}
.tour_slider_nav .slick-slide{
	margin: 0 10px;
	position: relative;
	cursor: pointer;
}
.tour_slider_nav .slick-slide:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	left: 0;
	top: 0;
	border-radius: 8px;
}
.tour_slider_nav .slick-slide.slick-current.slick-active:after{
	background: rgba(0,0,0,0);
}
.tour_slider img,
.tour_slider_nav img{
	border-radius: 8px;
}
.tour-map iframe{
	width: 100%;
	height: 400px;
	margin-bottom: -1px;
}
.tour_widget{
	border: 1px solid var(--dc);
	box-shadow: 0 1px 1px 0 rgba(32,33,36,.08);
	padding: 33px 34px 40px;
	border-radius: 8px;
	margin-left: 30px;
	margin-bottom: 30px;
}
.tw_title {
	font-size: 20px;
	color: var(--title);
	margin-bottom: 25px;
}
.tour_widget ul{
	padding: 0;
	list-style-type: none;
	margin-bottom: 0;
}
.tw_price {
	border-top: 1px solid var(--dc);
	border-bottom: 1px solid var(--dc);
	padding: 8px 0;
	margin-bottom: 30px;
	margin-top: 20px;
}
.tw_price h3{
	margin-bottom: 0;
	font-size: 17px;
	color: var(--title);
}
.tw_price span{
	float: right;
	color: var(--yellow);
}
.booking_form select{
	width: 100%;
}

.booking_form{}
.booking_form label{
	display: block;
	margin-bottom: 15px;
}
.booking_form .adut_box{
	margin-bottom: 30px !important;
}
.tw_info{
	overflow: hidden;
}
.tw_info li {
	background: #fafafa;
	padding: 5px 15px;
	margin-bottom: 13px;
	border-radius: 4px;
}
.tw_info li span {
	font-weight: 600;
	margin-right: 10px;
	color: var(--mat);
}
.textra_service i {
	font-size: 24px;
	padding-right: 9px;
	color: var(--mat);
	position: relative;
	top: 4px;
}
.textra_service li{
	padding-bottom: 8px;
}
.textra_service li:last-child{
	padding-bottom: 0;
}
.booking_form.tour_widget .check_in,
.booking_form.tour_widget .check_out,
.booking_form.tour_widget .adut_box{
	margin-bottom: 15px;
}
.booking_form button {
	height: 45px;
	width: 100%;
	background: var(--mat);
	color: var(--white);
	border: 1px solid var(--mat);
	font-weight: 500;
	transition: .5s;
	border-radius: 50px;
}
.booking_form button:hover,
.booking_form button:focus{
	background-color: var(--yellow);
	border-color: var(--yellow);
	color: var(--white);
}
.tr-pagination{
	margin-top: 15px;
}
.tr-pagination a{
	display: inline-block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	background: var(--f7) ;
	color: var(--title);
	font-weight: 500;
	margin: 0 7px;
	transition: .5s;
	font-size: 17px;
	border-radius: 50%;
}
.tr-pagination a i{
	font-size: 15px;
}
.tr-pagination a:hover,
.tr-pagination a.current{
	background: var(--yellow);
	color: var(--white);
}

/** Contact Us **/

.contact-info{
	padding: 40px 35px;
	border: 1px solid var(--dc);
	border-radius: 15px;
	color: var(--body);
}
.cinfo-item {
	border-bottom: 1px solid var(--dc);
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.cinfo-item:last-child{
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;	
}
.cinfo-item p{
	margin-bottom: 0;
}
.contact-info i {
	font-size: 25px;
	float: left;
	color: var(--mat);
}
.cinfo_content {
	overflow: hidden;
	padding-left: 24px;
}
.contact-info h3{
	font-size: 20px;
	color: var(--title);
}
.contact-info a{
	color: var(--body);
	transition: .5s;
	font-size: 15px;
}
.contact-info a:hover,
.contact-info a:focus{
	color: var(--mat);
}
.contact-form{
	padding-left: 40px;
}
.contact-form ul{
	list-style-type: none;
	padding: 0;
}

.contact-form-wrap{
	margin-bottom: 20px;
	margin-left: -12px;
	margin-right: -12px;
}
.contact-form li{
	width: 50%;
	margin-bottom: 24px;
	float: left;
	padding-left: 12px;
	padding-right: 12px;
}
.contact-form li textarea{
	width: 100%;
	height: 130px;
}
.contact-form li:last-child{
	width: 100%;
}
.contact-form input{
	height: 50px;
	line-height: 50px;
	background: #F6F6F6;
	border: 1px solid #E4E4E4;
	border-radius: 4px;
	padding: 6px 19px;
	color: var(--body);
	width: 100%;
}
.contact-form textarea{
	background: #F6F6F6;
	border: 1px solid #E4E4E4;
	border-radius: 4px;
	padding: 6px 19px;	
}
.contact-form input:focus,
.contact-form textarea:focus{
	outline: none;
	border-color: var(--mat);
}

.cbtn{
	padding: 9px 23px;
	border-radius: 30px;
	transition: .5s;
	font-weight: 500;
	display: inline-block;	
	background: var(--mat);
	border: 1px solid var(--mat);
	color: var(--white);
	transition: .5s;
	position: relative;
}
.cbtn i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: var(--white);
	color: var(--mat);
	border-radius: 50%;
	display: inline-block;
	text-align: center;
	margin-left: 10px;
	margin-right: -12px;
}
.cbtn:hover,
.cbtn:focus{
	background: var(--yellow);
	border: 1px solid var(--yellow);	
}
.cbtn:hover i {
	color: var(--yellow);
}
.contact_map{}
.contact_map iframe{
	width: 100%;
}

/** Blog List **/

.blog-list{}
.blog-list .tr-pagination{
	margin-top: 60px;
}
.blog-list .blog_item{
	margin-bottom: 30px;
	overflow: hidden;
}
.single-widget{
	margin-bottom: 30px;
	padding-left: 25px;
}
.single-widget ul{
	list-style-type: none;
	padding-left: 0;
}
.category-widget li {
	border: 1px solid var(--dc);
	padding: 4px 17px;
	border-radius: 4px;
	margin-bottom: 15px;
	position: relative;
	transition: .5s;
}

.category-widget li:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background: var(--mat);
	border-color: var(--mat);
	width: 0;
	height: 100%;
	transition: .5s;
	z-index: -1;
	border-radius: 4px;
}
.category-widget li:hover:before{
	width: 100%;
}
.category-widget li a{
	display: block;
	transition: .5s;
}
.category-widget li:hover a{
	color:var(--white);
}
.widget-title {
	font-size: 20px;
	margin-bottom: 20px;
}
.single-widget form{
	position: relative;
}
.single-widget a{
	transition: .5s;
}
.single-widget a:hover,
.single-widget a:focus{
	color: var(--mat);
}
.form-control{
	height: 45px;
}
textarea.form-control{
	height: 130px;
}
.form-control:focus{
	outline: inherit;
	box-shadow: inherit;
	border-color: var(--mat);
}
.single-widget form button {
	position: absolute;
	right: 0;
	top: 0;
	border: 1px solid var(--mat);
	height: 45px;
	width: 45px;
	border-radius: 0 5px 5px 0;
	background-color: var(--mat);
	color: var(--white);
}
.category-widget a {
	font-weight: 500;
	color: var(--title);
	font-size: 17px;
}
.ppost_widget{}
.ppost_widget .pp_img{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	float: left;
	margin-right: 22px;
	background-size: cover;
	
}
.ppost_content{
	overflow: hidden;
}
.ppost_widget p{
	font-weight: 600;
	font-size: 17px;
	line-height: 25px;
	margin-bottom: 5px;
}
.ppost_widget p a{
	color: var(--title);
}
.ppost_widget span {
	color: var(--title);
}
.ppost_widget span i{
	color: var(--mat);
}
.ppost_widget li{
	margin-bottom: 25px;
}
.ppost_widget li:last-child{
	margin-bottom: 0;
}
.tags-clouds a {
	display: inline-block;
	padding: 1px 13px;
	background: var(--f7);
	margin-bottom: 11px;
	margin-right: 8px;
	border-radius: 4px;
	font-weight: 500;
	transition: .5s;
}
.tags-clouds a:hover,
.tags-clouds a:focus{
	background: var(--mat);
	color: var(--white);
}

/* Blog Details */

.blog_image img{
	border-radius: 8px;
}
.blog-details .blog_meta{
	margin-top: 15px;
	margin-bottom: 5px;
}
.entry-content p{
	margin-bottom: 15px;
}
.entry-content blockquote {
	background: rgba(1, 105, 58, .1);
	border-radius: 10px;
	padding: 26px;
	font-size: 18px;
	font-weight: 500;
}
.entry-content h2 {
	margin: 10px 0;
	font-size: 30px;
}

/*
* ----------------------------------------------------------------------------------------
* Comment
* ----------------------------------------------------------------------------------------
*/

.comments{
	padding-top: 40px;
}
.bdtitle{
	margin-bottom: 25px;
	font-size: 24px;
}
.comment-list,
.comment{
	list-style-type: none;
}
.com-img {
	margin-right: 48px;
	position: relative;
}
.com-img h4 {
	font-size: 18px;
	margin-top: 15px;
	margin-bottom: 0;
}
.com-img h4 a{
	color: var(--title);
}
.cdate{
	font-size: 15px;	
}
.creplay {
	position: absolute;
	top: 50px;
	right: -13px;
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 50%;
	color: var(--white);
	background: var(--mat);
	font-size: 16px;
	text-align: center;
}

.creplay:hover,
.creplay:focus{
	color: var(--white);
}
.com-img img{
	border-radius: 50%;
	width: 100px;
}
li.comment{
	
	display: block;	
}
.comments .children{
	padding-left: 30px;
}
.single-comment{
	overflow: hidden;
	border: 1px solid #d9d9d9;
	padding: 35px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.comment-form{
	padding-top: 30px;
}
.comment-form .form-control{

}
.comment-form label {
	padding-bottom: 5px;
	cursor: pointer;
	color: var(--title);
	font-weight: 500;
}
.name_email{
	gap: 25px;
}

.comment-form p{
	margin-bottom: 25px;
}
.name_email p{
	width: 50%;

}
#submit {
	background-color: var(--mat);
	border: 1px solid var(--mat);
	color: var(--white);
	padding: 10px 35px;
	border-radius: 30px;
	transition: .5s;
	font-weight: 600;
	font-size: 17px;
}

#submit:hover,
#submit:focus{
	color: var(--white);
	background-color: var(--yellow);
	border-color: var(--yellow);
}

/** 404 Page **/

.pnf_img {
	margin: 0 30px;
}
.page_not_found img {
	border-radius: 50%;
	padding: 20px;
	border: 1px dashed var(--dd);
}
.pnf_content {
	padding: 20px;
}
.page_not_found h1 {
	font-size: 100px;
	line-height: 110px;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--yellow);
	color: transparent;
}

.page_not_found p {
	margin-bottom: 25px;
}

/* Media Queries */
@media (max-width: 768px) {
  /* Styles for screens up to 768px (e.g., tablets) */
}

@media (max-width: 576px) {
  /* Styles for screens up to 576px (e.g., small mobile devices) */
  #tr_header {
    padding: 10px 0;
  }
  .site_logo {
    width: 120px;
  }
  .header_right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .main-menu {
    display: none; /* Hide the main menu on small screens, assuming a mobile menu will be used */
  }
}

@media (max-width: 768px) {
  /* Styles for screens up to 768px (e.g., tablets) */
}

@media (max-width: 576px) {
  /* Styles for screens up to 576px (e.g., small mobile devices) */
  .slider_item {
    padding: 80px 0 120px;
  }
  .slider_item h1.heading {
    font-size: 40px;
  }
  .slider_item p {
    font-size: 16px;
  }
  .hs_prev_arrow,
  .hs_next_arrow {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .hs_prev_arrow {
    left: 20px;
  }
  .hs_next_arrow {
    right: 20px;
  }
}

@media (max-width: 768px) {
  /* Styles for screens up to 768px (e.g., tablets) */
  .tr_slider_wrap {
	padding: 0px 2px 0;
}
}

@media (max-width: 576px) {
  /* Styles for screens up to 576px (e.g., small mobile devices) */
  .slider_item {
    padding: 80px 0 120px;
  }
  .slider_item h1.heading {
    font-size: 40px;
  }
  .slider_item p {
    font-size: 16px;
	margin-bottom: 25px;
  }
  .hs_prev_arrow,
  .hs_next_arrow {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .hs_prev_arrow {
    left: 20px;
  }
  .hs_next_arrow {
    right: 20px;
  }
  .tr_about {
    padding: 50px 0;
  }
  .about_badge {
    left: 0;
    bottom: -50px;
    position: relative;
    margin-bottom: 20px;
  }
  .about_shape {
    display: none;
  }
  .about_content {
    padding-left: 0;
    text-align: center;
    margin-top: 30px;
  }

  /* Center about section buttons on mobile */
  .about_btm {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    margin-top: 30px;
  }

  .phone_number {
    margin-left: 0 !important;
    justify-content: center;
  }

  .green_btn {
    text-align: center;
    min-width: 200px;
  }
}

/* ========================================
   RESPONSIVE TYPOGRAPHY SYSTEM
   Minimum 18px font size for all text elements
   ======================================== */

/* Base Typography - Desktop First */
p,
.text-muted,
.package-description,
.service_content p,
.safari_intro_content .intro_text p,
.package_description,
.package_highlights p,
.summary_feature p,
.gallery-content p,
.feature_item p,
.blog_content p,
.entry-content p,
.footer_widget p,
.testimonials_item p {
    font-size: 16px !important;
    line-height: 1.7;
}

/* Enhanced readability for smaller text elements */
.enhanced-package .package-description,
.service_content p,
.package_features li,
.service_features li {
    font-size: 16px !important;
}

/* Button and link text */
.btn,
.green_btn,
.yellow_btn,
.package_actions .btn,
.service_action .btn,
.cta_buttons .btn {
    font-size: 16px !important;
}

/* Form elements */
.form-control,
.tr_search_filter .form-control,
.booking_form .form-control,
.callback-modal .form-control {
    font-size: 18px !important;
}

/* Labels and small text */
.form-label,
.tr_search_filter label,
.callback-modal .form-label {
    font-size: 18px !important;
}

/* Badge and tag elements */
.badge,
.enhanced-package .destinations-covered .badge,
.enhanced-package .services-included .badge,
.places-tags .badge,
.package_badges .badge {
    font-size: 18px !important;
    padding: 6px 12px !important;
}

/* Navigation and menu items */
.mean-container .mean-nav ul li a,
.main-menu ul ul.sub-menu li a,
.footer_widget li a {
    font-size: 18px !important;
}

/* Tablet Responsive (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        font-size: 19px;
    }

    p,
    .text-muted,
    .package-description,
    .service_content p,
    .feature_item p {
        font-size: 19px !important;
    }

    .btn,
    .green_btn,
    .yellow_btn {
        font-size: 19px !important;
    }
}

/* Desktop Large (1025px+) */
@media (min-width: 1025px) {
    body {
        font-size: 18px;
    }

    p,
    .text-muted,
    .package-description,
    .service_content p,
    .feature_item p {
        font-size: 18px !important;
    }

    .btn,
    .green_btn,
    .yellow_btn {
        font-size: 18px !important;
    }

    /* Enhanced readability for large screens */
    .enhanced-package .package-description,
    .service_content p,
    .safari_intro_content .intro_text p {
        font-size: 18px !important;
    }
}

/* Mobile Responsive (up to 768px) */
@media (max-width: 768px) {
    /* Ensure minimum 18px on mobile */
    body {
        font-size: 18px;
    }

    /* All paragraph text minimum 18px */
    p,
    .text-muted,
    .package-description,
    .service_content p,
    .safari_intro_content .intro_text p,
    .feature_item p,
    .summary_feature p,
    .gallery-content p {
        font-size: 18px !important;
        line-height: 1.6;
    }

    /* Button text minimum 18px */
    .btn,
    .green_btn,
    .yellow_btn,
    .package_actions .btn,
    .service_action .btn {
        font-size: 18px !important;
        padding: 12px 20px !important;
    }

    /* Form elements minimum 18px */
    .form-control,
    .tr_search_filter .form-control,
    .callback-modal .form-control {
        font-size: 18px !important;
        padding: 12px 16px !important;
    }

    /* Navigation minimum 18px */
    .main-menu li a,
    .mean-container .mean-nav ul li a {
        font-size: 18px !important;
    }

    /* Badges minimum 18px but can be slightly smaller for space */
    .badge,
    .places-tags .badge {
        font-size: 16px !important;
        padding: 4px 8px !important;
    }

    /* Very small elements can be 16px minimum */
    .package_badges .badge,
    .pricing-note .badge,
    .external-links .btn,
    .nav-links .btn {
        font-size: 16px !important;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    /* Maintain 18px minimum even on small screens */
    body {
        font-size: 18px;
    }

    p,
    .text-muted,
    .package-description,
    .service_content p,
    .feature_item p {
        font-size: 18px !important;
        line-height: 1.5;
    }

    .btn,
    .green_btn,
    .yellow_btn {
        font-size: 18px !important;
        padding: 10px 18px !important;
    }

    /* Compact elements can be 16px minimum */
    .badge,
    .package_badges .badge {
        font-size: 16px !important;
        padding: 3px 6px !important;
    }
}

/* Accessibility Enhancement */
@media (prefers-reduced-motion: no-preference) {
    /* Smooth font size transitions */
    body,
    p,
    a,
    .btn {
        transition: font-size 0.3s ease;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    body {
        font-weight: 500;
    }

    p,
    a {
        font-weight: 500;
    }
}
