/*
Main Style
*/


/*** Global CSS ***/

:root {
  --dmsans:"DM Sans", serif;
  --white: #fff;
  --title: #222;
  --body: #444;
  --rating: #ffc107;
  --mat: #212529;
  --yellow: #23cc68;
  --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;
}

/* Simple Loading Screen Styles */
.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
}

.loading-container {
	text-align: center;
	max-width: 400px;
	width: 90%;
	padding: 2rem;
}

.logo-container {
	margin-bottom: 1.5rem;
}

.loading-logo {
	max-width: 200px;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.loading-text {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--mat);
}

/* Responsive Design */
@media (max-width: 768px) {
	.loading-container {
		padding: 1.5rem;
	}

	.loading-logo {
		max-width: 150px;
	}

	.loading-text {
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	.loading-logo {
		max-width: 120px;
	}

	.loading-text {
		font-size: 1.1rem;
	}
}

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{
	background: var(--mat);
	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;
}

/* Top Announcement Bar */
.top-announcement-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, var(--mat) 0%, #1a1a1a 100%);
	color: white;
	z-index: 1001;
	height: 40px;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.announcement-content {
	white-space: nowrap;
	animation: marquee 40s linear infinite;
	font-size: 18px;
	font-weight: 500;
	padding: 0;
	display: flex;
	gap: 0;
}

.announcement-text {
	padding: 0 50px;
	flex-shrink: 0;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.announcement-content a {
	color: var(--yellow);
	text-decoration: none;
	font-weight: 600;
}

.announcement-content a:hover {
	color: white;
	text-decoration: underline;
}

/* Responsive announcement bar */
@media (max-width: 768px) {
	.top-announcement-bar {
		height: 40px; /* Keep consistent height */
	}

	.announcement-content {
		font-size: 18px; /* Standardized font size */
		animation: marquee 40s linear infinite; /* Consistent timing */
	}
}

@media (max-width: 480px) {
	.top-announcement-bar {
		height: 40px; /* Keep consistent height */
	}

	.announcement-content {
		font-size: 18px; /* Standardized font size */
		animation: marquee 40s linear infinite; /* Consistent timing */
	}
}

/* Header */

#tr_header{
	position: relative;
	z-index: 999;
	background: var(--white); /* Solid background to prevent initial transparency issues */
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	/* margin-top: 40px; Removed, handled by body padding-top */
	min-height: 80px; /* Ensure a minimum height to prevent collapse */
	display: flex; /* Use flexbox for consistent vertical alignment */
	align-items: center; /* Vertically center content */
}

/* Apply backdrop-filter to a pseudo-element or separate layer if needed for performance */
#tr_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: -1; /* Behind the header content */
}

/* Sticky header effect */
#tr_header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: var(--white); /* Solid background for sticky header */
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	padding: 15px 0;
	min-height: 60px; /* Adjust min-height for sticky state */
}

#tr_header.sticky::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: -1;
}

.site_logo{
	display: flex;
	align-items: center;
}

.site_logo a{
	display: block;
	line-height: 1;
}

.site_logo img {
	object-fit: contain;
	transition: all 0.3s ease;
}

.site_logo a:hover img {
	transform: scale(1.05);
	opacity: 0.9;
}

/* Ensure logo is always clickable */
.site_logo a {
	display: block;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.header_right{
	gap: 39px;
	align-items: center;
	flex-wrap: nowrap;
	min-height: 60px;
}

/* Ensure header row doesn't wrap */
#tr_header .row {
	align-items: center;
	flex-wrap: nowrap;
	margin: 0;
}

#tr_header .container {
	width: 100%;
	max-width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}

/* Bootstrap grid overrides for header */
#tr_header [class*="col-"] {
	padding-left: 8px;
	padding-right: 8px;
}

#tr_header .col-xl-2.col-md-3 {
	flex: 0 0 auto;
	width: auto;
	max-width: none;
}

#tr_header .col-xl-10.col-md-9 {
	flex: 1;
	width: auto;
	max-width: none;
}

/* Logo container improvements */
.site_logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

/* Navigation improvements */
.main-menu {
	flex-shrink: 1;
}

/* Hamburger menu improvements */
.header__hamburger {
	flex-shrink: 0;
	margin-left: auto;
}

/* Additional header layout fixes */
#tr_header .col-xl-2.col-md-3 {
	display: flex;
	align-items: center;
}

#tr_header .col-xl-10.col-md-9 {
	display: flex;
	align-items: center;
}

/* Ensure proper vertical alignment */
#tr_header .align-self-center {
	align-self: center !important;
}

/* Fix for very small screens */
@media (max-width: 400px) {

  #tr_header .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .sidebar__toggle {
    font-size: 26px;
    padding: 4px;
    min-width: 36px;
    min-height: 36px;
  }
}

/* Additional layout protection */
@media (max-width: 991px) {
  /* Ensure header elements stay on one line */
  #tr_header .row > div {
    display: flex;
    align-items: center;
  }

  /* Force single row layout */
  #tr_header .row {
    display: flex;
    flex-wrap: nowrap !important;
    align-items: center;
    width: 100%;
  }

  /* Logo column */
  #tr_header .col-xl-2.col-md-3 {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  /* Navigation column */
  #tr_header .col-xl-10.col-md-9 {
    flex: 1;
    width: auto;
    max-width: none;
  }

  /* Prevent text wrapping in navigation */
  .header_right {
    white-space: nowrap;
    overflow: hidden;
  }

  /* Ensure hamburger is always visible and clickable */
  .header__hamburger {
    min-width: 44px;
    min-height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}

/* Ultra-wide screens (1400px and up) */
@media (min-width: 1400px) {

  .header_right {
    gap: 45px;
  }
}

/* Landscape phones and small tablets (480px to 767px) */
@media (max-width: 767px) and (min-width: 480px) {
  #tr_header {
    padding: 12px 0;
  }
}

/* Small phones (320px to 479px) */
@media (max-width: 479px) {
  #tr_header {
    padding: 8px 0;
  }

  #tr_header .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sidebar__toggle {
    font-size: 24px;
    min-width: 40px;
    min-height: 40px;
  }
}

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

/* Desktop Layout (≥768px) - Logo left, Navigation right */
@media (min-width: 768px) {
	#tr_header .row {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
	}

	#tr_header .col-xl-2.col-md-3 {
		flex: 0 0 auto !important;
		width: auto !important;
		max-width: none !important;
	}

	#tr_header .col-xl-10.col-md-9 {
		flex: 1 !important;
		width: auto !important;
		max-width: none !important;
		display: flex !important;
		justify-content: flex-end !important;
		align-items: center !important;
	}

	.site_logo {
		display: flex !important;
		align-items: center;
	}

	.header_right {
		display: flex !important;
		align-items: center !important;
		justify-content: flex-end !important;
	}

	.main-menu {
		display: block !important;
	}

	.header__hamburger {
		display: none !important;
	}
}

.sidebar__toggle{
	font-size: 35px;
	color: var(--title);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	transition: all 0.3s ease;
}

.sidebar__toggle:hover {
	color: var(--mat);
	transform: scale(1.1);
}

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

/* Mobile Menu */
.fix-area{
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}
.offcanvas__info {
	background: var(--white) none repeat scroll 0 0;
	border-left: 2px solid var(--dc);
	position: fixed;
	right: 0;
	top: 0;
	width: 400px;
	height: 100%;
	-webkit-transform: translateX(calc(100% + 80px));
	-moz-transform: translateX(calc(100% + 80px));
	-ms-transform: translateX(calc(100% + 80px));
	-o-transform: translateX(calc(100% + 80px));
	transform: translateX(calc(100% + 80px));
	-webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	-moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	z-index: 99999;
	overflow-y: scroll;
	overscroll-behavior-y: contain;
	scrollbar-width: none;
	overflow: hidden;

}
.offcanvas__info::-webkit-scrollbar {
   display: none;
}

.offcanvas__info.info-open {
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

.offcanvas__wrapper {
	position: relative;
	height: 100%;
	padding: 30px 30px;
}
.offcanvas__top{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 20px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 40px;
  height: 40px;
  line-height: 41px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--mat);
  position: relative;
  z-index: 9;
  cursor: pointer;
  transition: .5s;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close:hover,
.offcanvas__wrapper .offcanvas__content .offcanvas__close:focus{
  background-color: var(--yellow);	
}
.offcanvas__close button{
	border: none;
	background-color: transparent;
	padding: 0;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__logo{
	width: 140px;
	display: flex;
	align-items: center;
}

.offcanvas__logo img {
	width: 100%;
	height: auto;
	max-height: 50px;
	object-fit: contain;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

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

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}


.mean-container a.mean-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 .mega-menu li a {
	height: 200px;
	width: 100%;
	padding: 0;
	border-top: 0;
	margin-bottom: 20px;
}

/** Slider **/
.tr_slider{
	overflow: hidden;	
	border-radius: 30px;
	position: relative;
}
.tr_slider .swiper-wrapper{
	padding-top: 16px;
}
.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 .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;
}

/* About Image Styles */
.ab_img_1 {
	border-radius: 10px;
	box-shadow: var(--box-shadow);
	object-fit: cover;
	max-height: 500px;
	min-height: 300px;
	transition: opacity 0.5s ease;
}

/** 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 .btn-outline-success {
	border: 1px solid var(--mat);
	color: var(--mat);
}

.enhanced-package .btn-outline-success:hover {
	background: var(--mat);
	color: var(--white);
}

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

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

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

	.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: var(--gray);
}

.service_item {
	background: var(--white);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--box-shadow);
	transition: all 0.3s ease;
	border: 1px solid var(--dd);
}

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

.service_image {
	position: relative;
	overflow: hidden;
	height: 250px;
}

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

/* Modern Services Section Enhancements */
.our_services .card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 60px rgba(0,0,0,0.15) !important;
}

.our_services .card:hover .card-img-top {
	transform: scale(1.1);
}

.our_services .card .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Gradient text animation */
@keyframes gradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.our_services .section-heading h2 {
	background-size: 200% 200%;
	animation: gradientShift 3s ease infinite;
}

/* Badge hover effects */
.our_services .badge {
	transition: all 0.3s ease;
}

.our_services .card:hover .badge {
	transform: scale(1.1);
}

/* Call to action hover effects */
.our_services .btn-outline-light:hover {
	background: rgba(255,255,255,0.2);
	border-color: rgba(255,255,255,0.5);
	backdrop-filter: blur(15px);
}

.service_item:hover .service_image img {
	transform: scale(1.05);
}

.service_overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(99, 171, 69, 0.8);
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service_item:hover .service_overlay {
	opacity: 1;
}

.service_icon {
	width: 60px;
	height: 60px;
	background: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--mat);
}

.service_content {
	padding: 25px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.service_content h3 {
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 15px;
}

.service_content h3 a {
	color: var(--title);
	font-size: 24px;
	text-decoration: none;
	transition: color 0.3s ease;
}

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

.service_content p {
	font-size: 18px;
	line-height: 1.6;
	color: var(--body);
	margin-bottom: 15px;
	flex-grow: 1;
}

.service_features {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.service_features li {
	font-size: 18px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

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

.service_action {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid var(--dd);
}

.service_action .btn {
	font-size: 13px;
	padding: 8px 16px;
}

.service_price {
	font-weight: 600;
	color: var(--mat);
	font-size: 14px;
}

.services_cta {
	background: var(--white);
	padding: 40px;
	border-radius: 15px;
	box-shadow: var(--box-shadow);
}

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

/* Responsive styles for services section */
@media (max-width: 768px) {
	.service_item .row {
		flex-direction: column;
	}

	.service_image {
		height: 200px;
	}

	.service_content {
		padding: 20px;
	}

	.service_content h3 {
		font-size: 16px;
	}

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

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

	.service_action {
		flex-direction: column;
		gap: 10px;
		align-items: stretch;
	}

	.service_action .btn {
		text-align: center;
	}

	.service_price {
		text-align: center;
	}

	.services_cta {
		padding: 30px 20px;
	}

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

	.services_cta .green_btn,
	.services_cta .yellow_btn {
		display: block;
		margin: 0 0 10px 0;
		text-align: center;
	}
}

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

	.service_content h3 {
		font-size: 15px;
	}

	.services_cta {
		padding: 25px 15px;
	}
}

/* Services Carousel Styles */
.services-carousel-container {
	overflow: hidden;
	position: relative;
	padding: 20px 60px; /* Add padding for navigation arrows */
	margin: 0 auto;
	max-width: 100%;
}

.services_slider {
	overflow: visible;
	padding: 20px 0;
	width: 100%;
}

.services_slider .swiper-wrapper {
	align-items: stretch; /* Ensure all cards have equal height */
}

.services_slider .swiper-slide {
	height: auto;
	/* Remove fixed width - let Swiper handle responsive sizing */
	width: auto;
	display: flex;
}

.services_slider .service-card {
	padding: 0 5px;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.services_slider .card {
	height: 100%;
	margin: 0;
	width: 100%;
	flex: 1;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.services_slider .card .card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 1.25rem !important;
}

.services_slider .card .card-text {
	flex: 1;
	margin-bottom: 1rem !important;
}

.services_slider .card .d-flex.align-items-center.justify-content-between {
	margin-top: auto;
}

.services_slider .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

/* Ensure smooth slide transitions */
.services_slider .swiper-slide {
	transition: transform 0.3s ease;
}

/* Improve card image hover effects */
.services_slider .card:hover .card-img-top {
	transform: scale(1.05);
}

/* Navigation arrows for services carousel */
.services-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: linear-gradient(45deg, var(--mat), var(--yellow));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	opacity: 0.9;
}

.services-arrow:hover {
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
	opacity: 1;
}

.services-nav-prev {
	left: 10px;
}

.services-nav-next {
	right: 10px;
}

/* Responsive adjustments for carousel */
@media (max-width: 1399px) {
	.services-carousel-container {
		padding: 20px 50px;
	}
}

@media (max-width: 1199px) {
	.services-carousel-container {
		padding: 20px 40px;
	}
	.services_slider .service-card {
		padding: 0 5px;
	}
}

@media (max-width: 991px) {
	.services-carousel-container {
		padding: 20px 30px;
	}
	.services_slider .service-card {
		padding: 0 5px;
	}
}

@media (max-width: 767px) {
	/* Hide arrows on mobile and adjust container */
	.services-arrow {
		display: none;
	}

	.services-carousel-container {
		padding: 20px 15px;
	}

	.services_slider .service-card {
		padding: 0 5px;
	}

	/* Enable touch scrolling indicators */
	.services_slider .swiper-wrapper {
		padding-bottom: 10px;
	}

	/* Optimize card content for mobile */
	.services_slider .card .card-body {
		padding: 1rem !important;
	}

	.services_slider .card .card-title {
		font-size: 1.2rem !important;
		margin-bottom: 0.75rem !important;
	}

	.services_slider .card .card-text {
		font-size: 0.9rem !important;
		line-height: 1.5 !important;
	}
}

@media (max-width: 575px) {
	.services-carousel-container {
		padding: 20px 10px;
	}

	.services_slider .service-card {
		padding: 0 3px;
	}
}

/* Services Pagination Styles */
.services-pagination {
	display: none;
	text-align: center;
	margin-top: 20px;
}

.services-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(0,0,0,0.3);
	opacity: 1;
	margin: 0 6px;
	transition: all 0.3s ease;
}

.services-pagination .swiper-pagination-bullet-active {
	background: linear-gradient(45deg, var(--mat), var(--yellow));
	transform: scale(1.2);
}

/* Show pagination on mobile */
@media (max-width: 767px) {
	.services-pagination {
		display: block;
	}
}

/* Additional improvements for cleaner design */
.services_slider .card .badge {
	font-weight: 600 !important;
	letter-spacing: 0.5px !important;
}

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

/* Ensure consistent button sizing */
.services_slider .card .btn {
	min-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Modern Tour Packages Styles */
.modern-tour-packages {
	padding: 80px 0;
}

.modern-package-card {
	transition: all 0.4s ease !important;
	border: 1px solid rgba(0,0,0,0.05) !important;
}

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

.modern-package-card .package-image-container img:hover {
	transform: scale(1.05);
}

.modern-package-card .package-highlights span:hover {
	background: var(--yellow) !important;
	color: var(--mat) !important;
	transform: scale(1.05);
}

.modern-package-card a[style*="background: var(--mat)"]:hover {
	background: var(--yellow) !important;
	color: var(--mat) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.modern-package-card a[style*="background: var(--yellow)"]:hover {
	background: var(--mat) !important;
	color: white !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Responsive adjustments for modern packages */
@media (max-width: 1199px) {
	.modern-tour-packages {
		padding: 60px 0;
	}

	.modern-package-card .package-content {
		padding: 28px 24px !important;
	}
}

@media (max-width: 991px) {
	.modern-tour-packages {
		padding: 50px 0;
	}

	.modern-package-card .package-image-container {
		height: 240px !important;
	}

	.modern-package-card .package-content {
		padding: 24px 20px !important;
	}
}

@media (max-width: 767px) {
	.modern-tour-packages {
		padding: 40px 0;
	}

	.modern-package-card .package-image-container {
		height: 220px !important;
	}

	.modern-package-card .package-content {
		padding: 20px 16px !important;
	}

	.modern-package-card h3 {
		font-size: 1.2rem !important;
	}

	.modern-package-card .pricing-info span[style*="font-size: 1.5rem"] {
		font-size: 1.3rem !important;
	}
}

@media (max-width: 575px) {
	.modern-package-card .package-badges {
		left: 15px !important;
		right: 15px !important;
		top: 15px !important;
	}

	.modern-package-card .duration-badge {
		bottom: 15px !important;
		right: 15px !important;
	}
}

/* Fixed Bottom Navigation Bar for Mobile/Tablet */
.bottom-nav-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
	z-index: 1050;
	padding: 12px 20px;
	display: none; /* Hidden by default, shown only on mobile/tablet */
	animation: slideUpIn 0.3s ease-out;
}

@keyframes slideUpIn {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.bottom-nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 500px;
	margin: 0 auto;
	gap: 15px;
}

.bottom-nav-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 20px;
	border: none;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	min-height: 50px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bottom-nav-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.bottom-nav-btn:hover::before {
	left: 100%;
}

.bottom-nav-btn i {
	margin-right: 8px;
	font-size: 18px;
}

/* Callback Button Styling */
.bottom-nav-callback {
	background: transparent;
	color: var(--mat);
	border: 2px solid var(--mat);
	border-radius: 12px;
}

.bottom-nav-callback:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(99, 171, 69, 0.2);
	color: var(--mat);
	background: rgba(99, 171, 69, 0.05);
	border-color: var(--mat);
}

.bottom-nav-callback:active {
	transform: translateY(0);
}

.bottom-nav-callback i {
	color: var(--mat);
}

/* WhatsApp Button Styling */
.bottom-nav-whatsapp {
	background: transparent;
	color: #25D366;
	border: 2px solid #25D366;
	border-radius: 12px;
}

.bottom-nav-whatsapp:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
	color: #25D366;
	background: rgba(37, 211, 102, 0.05);
	border-color: #25D366;
}

.bottom-nav-whatsapp:active {
	transform: translateY(0);
}

.bottom-nav-whatsapp i {
	color: #25D366;
}

/* Show bottom nav on mobile and tablet only */
@media (max-width: 991px) {
	.bottom-nav-bar {
		display: block;
	}

	/* Add bottom padding to body to prevent content overlap */
	body {
		padding-bottom: 80px;
	}
}

/* Responsive adjustments for smaller screens */
@media (max-width: 576px) {
	.bottom-nav-bar {
		padding: 4px 8px;
	}

	.bottom-nav-content {
		gap: 12px;
	}

	.bottom-nav-btn {
		padding: 12px 16px;
		font-size: 15px;
		min-height: 48px;
	}

	.bottom-nav-btn i {
		font-size: 16px;
		margin-right: 6px;
	}
}

@media (max-width: 480px) {
	.bottom-nav-btn {
		padding: 6px 10px;
        font-size: 14px;
        min-height: 42px;
	}

	.bottom-nav-btn i {
		font-size: 15px;
		margin-right: 5px;
	}
}

/** 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);
	font-size: 32px;
	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;
}

/* Modern Package Card Layout */
.modern-package-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	margin-bottom: 40px;
	transition: all 0.4s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.modern-package-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

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

.modern-package-content {
	padding: 30px;
}

.modern-package-header {
	margin-bottom: 20px;
}

.modern-package-title {
	font-size: 26px;
	font-weight: 700;
	color: var(--title);
	margin-bottom: 12px;
	line-height: 1.3;
}

.modern-package-description {
	font-size: 16px;
	line-height: 1.7;
	color: var(--body);
	margin-bottom: 25px;
}

.modern-package-highlights {
	background: rgba(99, 171, 69, 0.05);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 25px;
}

.modern-package-highlights .row > div {
	margin-bottom: 8px;
}

.modern-package-highlights p {
	margin-bottom: 8px;
	font-size: 15px;
	color: var(--title);
}

.modern-package-highlights strong {
	color: var(--mat);
	font-weight: 600;
}

.modern-package-pricing {
	background: linear-gradient(135deg, rgba(99, 171, 69, 0.1), rgba(19, 191, 230, 0.05));
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 25px;
	text-align: center;
	border: 2px solid rgba(99, 171, 69, 0.1);
}

.modern-package-pricing .price {
	font-size: 32px;
	font-weight: 800;
	color: var(--mat);
	display: block;
	margin-bottom: 8px;
}

.modern-package-pricing .price-note {
	font-size: 14px;
	color: var(--body);
	margin-bottom: 15px;
}

.modern-package-actions {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

.modern-package-actions .btn {
	flex: 1;
	padding: 14px 20px;
	font-weight: 600;
	font-size: 15px;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.modern-package-actions .btn-success {
	background: linear-gradient(135deg, var(--mat), #4CAF50);
	border: none;
	box-shadow: 0 4px 15px rgba(99, 171, 69, 0.3);
}

.modern-package-actions .btn-success:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(99, 171, 69, 0.4);
}

.modern-package-actions .btn-outline-success {
	border: 2px solid var(--mat);
	color: var(--mat);
	background: transparent;
}

.modern-package-actions .btn-outline-success:hover {
	background: var(--mat);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(99, 171, 69, 0.3);
}

/* Package Badges - Updated for modern cards */
.package_badges {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.package_badges .badge {
	font-size: 14px;
	padding: 8px 12px;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	border-radius: 20px;
	backdrop-filter: blur(10px);
}

/* Package Accordion Layout */
.package-accordion {
		margin-bottom: 40px;
		background: var(--card-bg);
		border-radius: 18px;
		box-shadow: var(--card-shadow);
		padding: 32px 0;
}

.package-accordion-item {
		border: none;
		border-radius: 16px;
		margin-bottom: 20px;
		overflow: hidden;
		transition: box-shadow 0.3s;
		background: var(--card-bg);
		box-shadow: 0 2px 8px rgba(44,43,73,0.08);
}

.package-accordion-item:hover {
		box-shadow: 0 8px 24px rgba(44,43,73,0.12);
		transform: translateY(-2px);
}

.package-accordion-item.active {
		box-shadow: 0 12px 32px rgba(44,43,73,0.16);
}

.package-accordion-header {
		background: var(--card-bg);
		padding: 24px 32px;
		cursor: pointer;
		border-bottom: 1px solid var(--dc);
		position: relative;
		transition: background 0.3s;
		backdrop-filter: none;
}

.package-accordion-header:hover {
		background: #f3f6fa;
		border-bottom-color: var(--accent);
}

.package-accordion-header.active {
		background: #e9f0fb;
		border-bottom-color: var(--accent);
}

.package-accordion-title {
		font-size: 24px;
		font-weight: 700;
		color: var(--accent);
		margin: 0;
		line-height: 1.3;
		padding-right: 56px;
		letter-spacing: 0.2px;
		text-shadow: none;
}

.package-accordion-toggle {
		position: absolute;
		right: 32px;
		top: 50%;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: var(--accent);
		color: var(--white);
		border: none;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 18px;
		transition: background 0.3s, transform 0.3s;
		box-shadow: 0 2px 8px rgba(44,43,73,0.08);
		cursor: pointer;
}

.package-accordion-toggle:hover {
		background: var(--violet);
		transform: translateY(-50%) scale(1.1);
		box-shadow: 0 4px 16px rgba(44,43,73,0.12);
}

.package-accordion-toggle.active {
		background: var(--yellow);
		color: var(--accent);
		transform: translateY(-50%) rotate(180deg) scale(1.05);
		box-shadow: 0 4px 16px rgba(245,185,66,0.18);
}

.package-accordion-toggle:active {
	transform: translateY(-50%) scale(0.95);
}

.package-accordion-content {
		display: none;
		opacity: 0;
		transform: translateY(-10px);
		transition: opacity 0.3s, transform 0.3s;
}

.package-accordion-content.show {
		display: block;
		animation: slideInFade 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInFade {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Enhanced content styling */
.package-accordion-content .modern-package-card {
	border: none;
	box-shadow: none;
	background: transparent;
	margin: 0;
}

.package-accordion-content .modern-package-content {
	padding: 30px 40px 40px;
}

/* Modern Package Utilities */
.modern-places-covered {
	background: rgba(19, 191, 230, 0.05);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 25px;
}

.modern-places-covered h6 {
	color: var(--mat);
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 16px;
}

.modern-places-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.modern-places-tags .badge {
	font-size: 13px;
	padding: 6px 12px;
	font-weight: 500;
	border-radius: 20px;
	transition: all 0.3s ease;
}

.modern-places-tags .badge:hover {
	background: rgba(99, 171, 69, 0.1);
	border-color: var(--mat);
	color: var(--mat);
}

.modern-package-alert {
	background: rgba(255, 193, 7, 0.1);
	border: 1px solid rgba(255, 193, 7, 0.3);
	border-radius: 12px;
	padding: 15px;
	margin-bottom: 20px;
}

.modern-package-alert i {
	color: #ffc107;
	margin-right: 8px;
}

.modern-external-links {
	margin-bottom: 20px;
}

.modern-external-links h6 {
	color: var(--body);
	font-size: 14px;
	margin-bottom: 10px;
}

.modern-external-links .btn {
	font-size: 13px;
	padding: 6px 12px;
	border-radius: 8px;
	margin-right: 8px;
	margin-bottom: 8px;
}

.modern-internal-links {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding-top: 15px;
	margin-top: 20px;
}

.modern-internal-links p {
	margin-bottom: 8px;
	font-size: 13px;
	color: var(--body);
}

.modern-internal-links a {
	font-size: 13px;
	color: var(--mat);
	text-decoration: none;
	margin-right: 15px;
}

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

/* 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: 12px;
	border-radius: 10px;
	border-left: 4px solid var(--mat);
}

.places-tags {
	max-height: 180px;
	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: 10px;
	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;
}

/* 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 {
	padding: 0;
}

.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);
	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%, #0a0a0a 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;
	}

	/* Modern card responsive styles */
	.modern-package-card {
		margin-bottom: 30px;
	}

	.modern-package-image {
		height: 220px;
	}

	.modern-package-content {
		padding: 20px;
	}

	.modern-package-title {
		font-size: 22px;
	}

	.modern-package-description {
		font-size: 15px;
	}

	.modern-package-highlights {
		padding: 15px;
	}

	.modern-package-pricing {
		padding: 20px;
	}

	.modern-package-pricing .price {
		font-size: 28px;
	}

	.modern-package-actions {
		flex-direction: column;
		gap: 10px;
	}

	.modern-package-actions .btn {
		padding: 12px 16px;
		font-size: 14px;
	}

	/* Accordion mobile responsive styles */
	.package-accordion-header {
		padding: 24px 20px;
		text-align: center;
	}

	.package-accordion-title {
		font-size: 24px;
		padding-right: 50px;
		line-height: 1.3;
	}

	.package-accordion-toggle {
		right: 20px;
		width: 42px;
		height: 42px;
		font-size: 18px;
	}

	.package-accordion-content .modern-package-content {
		padding: 25px 20px 30px;
	}

	/* Center all content on mobile */
	.container, .row {
		text-align: center;
	}

	.modern-package-content {
		text-align: center;
	}

	.modern-package-actions {
		justify-content: center;
	}

	.modern-places-tags {
		justify-content: center;
	}

	.modern-external-links {
		text-align: center;
	}

	.modern-internal-links {
		text-align: center;
	}
}

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

	.package_image {
		height: 200px;
	}

	.package_title {
		font-size: 18px;
	}

	.package_description {
		font-size: 14px;
	}

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

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

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

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

	/* Modern card mobile responsive styles */
	.modern-package-card {
		margin-bottom: 30px;
	}

	.modern-package-image {
		height: 180px;
	}

	.modern-package-content {
		padding: 15px;
	}

	.modern-package-title {
		font-size: 20px;
	}

	.modern-package-description {
		font-size: 14px;
	}

	.modern-package-highlights {
		padding: 12px;
	}

	.modern-package-pricing {
		padding: 15px;
	}

	.modern-package-pricing .price {
		font-size: 24px;
	}

	.modern-package-actions .btn {
		padding: 10px 14px;
		font-size: 13px;
	}

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

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

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

	/* Accordion smaller screen styles */
	.package-accordion-header {
		padding: 20px 16px;
	}

	.package-accordion-title {
		font-size: 22px;
		padding-right: 50px;
		line-height: 1.3;
	}

	.package-accordion-toggle {
		right: 16px;
		width: 38px;
		height: 38px;
		font-size: 16px;
	}

	.package-accordion-content .modern-package-content {
		padding: 20px 16px 25px;
	}

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

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

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

/** 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;
}
.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: 45px;
	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;
}
.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;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */


/* Desktop and Large Tablets (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .header_right {
    gap: 30px;
  }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  #tr_header {
    padding: 15px 0;
  }

  .header_right {
    gap: 20px;
  }

  .main-menu {
    display: none;
  }

  .header__hamburger {
    display: flex !important;
  }
}

/* Mobile Landscape and Small Tablets (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  #tr_header {
    padding: 12px 0;
  }

  #tr_header .row {
    margin: 0;
    align-items: center;
    flex-wrap: nowrap !important;
  }

  #tr_header .col-xl-2,
  #tr_header .col-md-3 {
    flex: 0 0 auto;
    width: auto;
    padding-right: 15px;
  }

  #tr_header .col-xl-10,
  #tr_header .col-md-9 {
    flex: 1;
    width: auto;
    padding-left: 0;
  }

  .header_right {
    gap: 15px;
    justify-content: flex-end !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }

  .main-menu {
    display: none;
  }

  .header__hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .tr_slider_wrap {
    padding: 0px 2px 0;
  }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
  #tr_header {
    padding: 10px 0;
  }

  #tr_header .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  #tr_header .row {
    margin: 0;
    align-items: center;
    flex-wrap: nowrap !important;
    min-height: 50px;
  }

  #tr_header .col-xl-2,
  #tr_header .col-md-3 {
    flex: 0 0 auto;
    width: auto;
    padding-right: 10px;
    padding-left: 0;
  }

  #tr_header .col-xl-10,
  #tr_header .col-md-9 {
    flex: 1;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .header_right {
    gap: 8px;
    justify-content: flex-end !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 100%;
  }

  .main-menu {
    display: none;
  }

  .header__hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .sidebar__toggle {
    font-size: 28px;
    padding: 5px;
    min-width: 40px;
    min-height: 40px;
  }

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

  /* About image responsive styles for mobile */
  .ab_img_1 {
    max-height: 250px;
    min-height: 200px;
    margin-bottom: 20px;
  }

  /* 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 */
.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: 6px 10px !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;
    }
}

/* New CSS for Feature Cards */
.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensure cards take full height of their container */
    border: 1px solid var(--dc); /* Keep existing border */
    border-radius: 15px; /* Keep existing border-radius */
    padding: 30px; /* Keep existing padding */
    margin-bottom: 25px; /* Keep existing margin */
    transition: .5s; /* Keep existing transition */
}

.feature-card:hover {
    border-color: var(--mat); /* Keep existing hover effect */
    box-shadow: var(--box-shadow); /* Keep existing hover effect */
    transform: translate(-5px, 5px); /* Keep existing hover effect */
}

.feature_item i {
    font-size: 45px;
    color: var(--mat);
    margin-bottom: 15px;
    display: block;
}

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

.feature_content {
    flex-grow: 1; /* Allow content to expand and push button to bottom */
   /* margin-bottom: 15px;  Add some space between content and button */
}

.feature-btn {
    display: block; /* Make button a block element */
    text-align: center; /* Center the text */
   /* margin-top: 15px;  Add space above the button */
   /* padding: 10px 20px;  Add padding to the button */
    background-color: #ffffff; /* Button background color */
    color: #dc3545; /* Button text color */
   /* border-radius: 30px;  Button border radius */
    transition: .5s; /* Button transition */
    font-weight: 500; /* Button font weight */
   /* border: 1px solid var(--mat);  Button border */
}

.feature-btn:hover {
    background-color: var(--yellow); /* Button hover background */
    border-color: var(--yellow); /* Button hover border */
    color: var(--white); /* Button hover text color */
}

/* Ensure buttons are centered within the card */
.feature-card .feature-btn {
    margin-left: auto;
    margin-right: auto;
}
