*{margin:0;padding:0;box-sizing:border-box;}
body{
font-family:'Inter',sans-serif;
background:#fff;
color:#111;
overflow-x:hidden;
padding-top:90px;
font-size:16px;
}
a{text-decoration:none !important; color:#000 !important; }

img{max-width:100%;display:block;}

/* HEADER */
.top-header{
background:#f0eef1;
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
transition:.3s;
border-bottom:1px solid #e8e8e8;
}

.top-header.scrolled{
background:#f0eef1;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.main-header{
min-height:90px;
}

.logo img{
width:140px;
height:auto;
}

.navbar{
padding:0;
}

.navbar-nav{
gap:8px;
}

.navbar-nav li{
position:relative;
line-height:46px;
  margin: 0;
  padding: 0;
  height: 46px;
}

.navbar-nav > li > a{
font-size:16px;
font-weight:500;
padding:0 14px !important;
line-height:90px;
color:#111;
transition:.3s;
text-decoration: none;
}

.navbar-nav > li > a:hover{
color:#ff7a00;
}

.current-menu-item > a,
.current-menu-parent > a{
color:#ff7a00 !important;
}

.social-box{
height:45px;
display:flex;
justify-content:center;
align-items:center;
gap:15px;
border-bottom:1px solid #e5e5e5;
}

.social-box a{
color:#111;
font-size:18px;
}

.whatsapp-box{
height:45px;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
font-size:16px;
font-weight:500;
}
/* HERO */
.hero-slider .item{
height:560px;
position:relative;
background-size:cover;
background-position:center;
display:flex;
align-items:center;
}

.hero-slider .item::before{
content:'';
position:absolute;
inset:0;
background:rgba(0,0,0,.45);
}

.hero-content{
position:relative;
z-index:2;
color:#fff;
max-width:700px;
}

.hero-content h1{
font-size:58px;
font-weight:500;
margin-bottom:15px;
animation:fadeDown 1s;
}

.hero-content p{
font-size:18px;
margin-bottom:25px;
animation:fadeUp 1.2s;
}

.hero-btn{
padding:14px 32px;
background:#ff7a00;
color:#fff;
border-radius:40px;
font-weight:500;
display:inline-block;
animation:zoomIn 1.3s;
}

.hero-btn:hover{background:#e56d00;color:#fff;}

.hero-slider .owl-nav button{
position:absolute;
top:50%;
transform:translateY(-50%);
width:48px;
height:48px;
border-radius:50%!important;
background:#fff!important;
font-size:22px!important;
}

.destination-carousel .owl-nav button{
position:absolute;
top:50%;
transform:translateY(-50%);
width:40px;
height:40px;
border-radius:50% !important;
background:#fff !important;
font-size:18px !important;
box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.destination-carousel .owl-nav .owl-prev{left:8px}
.destination-carousel .owl-nav .owl-next{right:8px}

.hero-slider .owl-prev{left:25px;}
.hero-slider .owl-next{right:25px;}

.hero-slider .owl-dots{
position:absolute;
bottom:25px;
left:0;
right:0;
}

/* COMMON */
.section{padding:30px 0;}
.title{font-size:36px;font-weight:500;margin-bottom:10px;}
.sub{color:#666;margin-bottom:35px;}

.book-box{
margin-top:-70px;
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 12px 35px rgba(0,0,0,.12);
position:relative;
z-index:5;
}

.card-box{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 8px 24px rgba(0,0,0,.08);
height:100%;
transition:.3s;
}

.card-box:hover{transform:translateY(-8px);}
.card-box img{width:100%;height:220px;object-fit:cover;}
.card-content{padding:22px;}
.price{font-size:24px;font-weight:500;color:#ff7a00;}

/* OFFERS */
.offer-section{padding:90px 0;background:#fff;}
.offer-item{position:relative;border-radius:22px;overflow:hidden;}
.offer-item img{width:100%;height:245px;object-fit:cover;}

.offer-overlay{
position:absolute;
inset:0;
/* background:linear-gradient(90deg,rgba(0,0,0,.55),rgba(0,0,0,.15)); */
padding:28px;
display:flex;
flex-direction:column;
justify-content:center;
color:#fff;
}

.offer-overlay h3{font-size:34px;font-weight:500;margin-bottom:10px;}
.offer-overlay h4{font-size:34px;font-weight:500;color:#ffe600;margin-bottom:10px;}

.offer-overlay span{
display:inline-block;
background:#fff;
color:#111;
padding:8px 18px;
border-radius:30px;
font-weight:500;
font-size:14px;
width:max-content;
}

.offer-carousel .owl-dot span{
width:12px!important;
height:12px!important;
background:#d4d4d4!important;
}

.offer-carousel .owl-dot.active span{
width:32px!important;
border-radius:20px!important;
background:#1f7cff!important;
}

/* FOOTER */
.footer{
background:#07152d;
color:#fff;
padding:60px 0 20px;
}

.copy{
margin-top:25px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,.08);
text-align:center;
color:#ccc;
}

/* ANIMATION */
@keyframes fadeDown{
from{opacity:0;transform:translateY(-40px);}
to{opacity:1;transform:translateY(0);}
}

@keyframes fadeUp{
from{opacity:0;transform:translateY(40px);}
to{opacity:1;transform:translateY(0);}
}

@keyframes zoomIn{
from{opacity:0;transform:scale(.8);}
to{opacity:1;transform:scale(1);}
}

/* RESPONSIVE */
@media(max-width:991px){

body{padding-top:84px;}

.main-header{padding:14px 0;}
.logo img{height:58px;}

.navbar-nav{padding:15px 0;}

.navbar-nav .nav-link{
line-height:normal;
padding:12px 0!important;
border-bottom:1px solid #eee;
}

.social-box,.whatsapp-box{
height:auto;
padding:15px;
justify-content:flex-start;
border-radius:12px;
margin-top:10px;
}

.hero-slider .item{
height:460px;
text-align:center;
}

.hero-content h1{font-size:40px;}
.book-box{margin-top:30px;}
.destination-section {
  background: #fff;
  padding:30px 0 30px 0;
}
}

@media(max-width:576px){

body{padding-top:78px;}

.logo img{height:70px; width:auto;}

.hero-slider .item{height:400px;}
.hero-content h1{font-size:30px;}
.hero-content p{font-size:15px;}

.title{font-size:28px;}
.offer-overlay h3,.offer-overlay h4{font-size:22px;}
}

.trip-card{
background:#fff;
border:1px solid #e8e8e8;
border-radius:22px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,.05);
margin:10px;
}

.trip-img-wrap{
position:relative;
padding:14px 14px 0;
}

.trip-img-wrap img{
width:100%;
height:260px;
object-fit:cover;
border-radius:18px;
}

.sale-badge{
position:absolute;
top:28px;
right:28px;
background:#ff442f;
color:#fff;
padding:8px 14px;
border-radius:30px;
font-size:14px;
font-weight:500;
}

.trip-content{
padding:22px;
text-align:left;
}

.trip-content h3{
font-size:22px;
font-weight:500;
margin-bottom:12px;
line-height:1.3;
}

.location{
font-size:16px;
color:#555;
margin-bottom:22px;
}

.trip-price-row{
display:flex;
justify-content:space-between;
align-items:center;
gap:15px;
margin-bottom:20px;
}

.book-btn{
background:#ff7a00;
color:#fff;
padding:12px 18px;
border-radius:12px;
font-weight:500;
display:inline-block;
}

.book-btn:hover{
color:#fff;
background:#ff7a00;
}

.price-box{
text-align:right;
}

.price-box small{
display:block;
font-size:14px;
font-weight:500;
color:#666;
}

.price-box h4{
font-size:42px;
font-weight:500;
margin:0;
}

.trip-meta{
display:flex;
justify-content:space-between;
gap:10px;
font-weight:500;
font-size:15px;
color:#111;
}

.trip-meta i{
color:#777;
margin-right:6px;
}

.one-trip-carousel .owl-dots{
margin-top:28px;
}

.one-trip-carousel .owl-dot span{
width:12px!important;
height:12px!important;
background:#d6d6d6!important;
margin:5px!important;
}

.one-trip-carousel .owl-dot.active span{
width:34px!important;
border-radius:20px!important;
background:#1f7cff!important;
}

@media(max-width:991px){

.trip-content h3{
font-size:20px;
}

.price-box h4{
font-size:34px;
}

}

@media(max-width:576px){

.trip-img-wrap img{
height:220px;
}

.trip-price-row{
flex-direction:column;
align-items:flex-start;
}

.price-box{
text-align:left;
}

.trip-meta{
flex-direction:column;
gap:10px;
}

}


.one-trip-carousel .owl-dots,
.offer-carousel .owl-dots,
.hero-slider .owl-dots{
text-align:center;
margin-top:28px;
}

.one-trip-carousel .owl-dot,
.offer-carousel .owl-dot,
.hero-slider .owl-dot{
outline:none;
}

.one-trip-carousel .owl-dot span,
.offer-carousel .owl-dot span,
.hero-slider .owl-dot span{
width:12px !important;
height:12px !important;
margin:0 6px !important;
background:#cfcfcf !important;
display:block;
border-radius:50px !important;
transition:all .35s ease;
}

.one-trip-carousel .owl-dot.active span,
.offer-carousel .owl-dot.active span,
.hero-slider .owl-dot.active span{
width:36px !important;
height:12px !important;
background:#1f7cff !important;
border-radius:30px !important;
}
/* FAQ SECTION */


.faq-section{
background:#fff;
padding:90px 0;
}

.faq-wrap{
max-width:980px;
margin:auto;
}

.faq-item{
border:none !important;
background:#f6f6f6;
border-radius:16px !important;
overflow:hidden;
margin-bottom:18px;
}

.faq-item:first-child{
background:#fff;
border:1px solid #2b7cff !important;
box-shadow:0 8px 20px rgba(43,124,255,.08);
}

.faq-item .accordion-button{
background:transparent;
box-shadow:none !important;
font-size:20px;
font-weight:500;
padding:24px 34px;
color:#111;
}

.faq-item .accordion-button:not(.collapsed){
background:#fff;
color:#111;
}

.faq-item .accordion-button::after{
background-size:16px;
transform:scale(.9);
}

.faq-item .accordion-button:not(.collapsed)::after{
transform:rotate(-180deg) scale(.9);
}

.faq-item .accordion-body{
padding:0 34px 28px;
font-size:17px;
line-height:1.8;
color:#444;
background:#fff;
}

.faq-item:not(:first-child) .accordion-button{
background:#f6f6f6;
}

.faq-item:not(:first-child) .accordion-body{
background:#f6f6f6;
}

@media(max-width:991px){

.faq-item .accordion-button{
font-size:18px;
padding:20px 22px;
}

.faq-item .accordion-body{
padding:0 22px 24px;
font-size:16px;
}

}

@media(max-width:576px){

.faq-item .accordion-button{
font-size:16px;
padding:18px;
line-height:1.5;
}

.faq-item .accordion-body{
padding:0 18px 20px;
font-size:15px;
line-height:1.7;
}

}

/* Feature */
.destination-section{
background:#fff;
padding:90px 0 30px 0;
}

.destination-tab{
display:flex;
justify-content:center;
gap:14px;
flex-wrap:wrap;
margin-bottom:45px;
}

.tab-btn{
border:1px solid #ddd;
background:#fff;
padding:10px 24px;
border-radius:30px;
font-size:16px;
font-weight:500;
color:#444;
transition:.3s;
cursor:pointer;
}

.tab-btn.active,
.tab-btn:hover{
background:#db6c06;
border-color:#db6c06;
color:#fff;
}

.destination-item{
padding:10px;
}

.destination-item img{
width:100%;
height:230px;
object-fit:cover;
border-radius:22px;
margin-bottom:16px;
}
.tab-btn img{
	width:28px;
	height:28px;
	margin-right:10px;
	vertical-align:middle;
	display:inline-block;
	background:#fff;
	padding:4px;
	border-radius:6px;
	box-shadow:0 4px 10px rgba(0,0,0,.06);
}
.tab-btn.active img{background:#fff}

.destination-item h4{
font-size:18px;
font-weight:500;
margin:0;
}

.destination-item h4 i{
font-size:15px;
margin-right:6px;
}

.destination-carousel .owl-nav .book-btn{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:6px;
	min-width:44px;
	height:44px;
	padding:8px 12px;
	border-radius:12px;
	background:#1f7cff;
	color:#fff;
	font-weight:500;
	box-shadow:0 8px 20px rgba(0,0,0,.08);
}


.destination-carousel{visibility:hidden;} /* hide until initialized to avoid flash */

.destination-carousel .owl-dot span{
width:12px!important;
height:12px!important;
margin:0 6px!important;
background:#cfcfcf!important;
border-radius:50px!important;
transition:.35s;
}

.destination-carousel .owl-dot.active span{
width:36px!important;
height:12px!important;
background:#1f7cff!important;
border-radius:30px!important;
}

@media(max-width:991px){
.destination-item img{height:220px;}
}

@media(max-width:576px){
.destination-item img{height:210px;}
.destination-item h4{font-size:16px;}
.tab-btn{
padding:8px 16px;
font-size:14px;
}
}
/* FOOTER */


.footer-area{
background:#050505 url('https://www.transparenttextures.com/patterns/cartographer.png');
color:#fff;
padding:70px 0 25px;
position:relative;
overflow:hidden;
}

.footer-top{
padding-bottom:25px;
}

.footer-contact-box{
display:flex;
align-items:center;
gap:16px;
}

.footer-contact-box .icon{
width:54px;
height:54px;
border-radius:50%;
background:#fff;
color:#1f7cff;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
flex-shrink:0;
}

.footer-contact-box .icon.whatsapp{
color:#25D366;
}

.footer-contact-box span{
font-size:15px;
color:#bbb;
display:block;
margin-bottom:4px;
}

.footer-contact-box h6 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    text-transform: none;
}

.footer-line{
border-color:rgba(255,255,255,.08);
margin:18px 0 45px;
}

.footer-logo img{
width:auto;
height:auto;
}

.footer-main h4{
font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #fe7f0a;
}

.footer-main h5{
font-size:24px;
font-weight:500;
margin-bottom:18px;
}

.footer-main p{
color:#c9c9c9;
font-size:17px;
line-height:1.9;
margin-bottom:25px;
}

.footer-links{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:8px;
}

.footer-links li a{
color:#cfcfcf;
font-size:12px;
transition:.3s;
}

.footer-links li a:hover{
color:#1f7cff;
padding-left:6px;
}

.footer-social{
display:flex;
gap:12px;
}

.footer-social a{
width:42px;
height:42px;
border-radius:50%;
background:#f47500;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:16px;
transition:.3s;
}

.footer-social a:hover{
background:#1f7cff;
transform:translateY(-4px);
}

.play-btn img{
width:170px;
border-radius:8px;
}

.footer-copy{
margin-top:40px;
padding-top:22px;
border-top:1px solid rgba(255,255,255,.08);
text-align:center;
font-size:16px;
color:#bfbfbf;
}

@media(max-width:991px){

.footer-area{
padding:60px 0 20px;
}

.footer-main h4{
font-size:20px;
margin-top:10px;
}

.footer-main h5{
font-size:22px;
}

.footer-links li a,
.footer-main p{
font-size:16px;
}

}

@media(max-width:576px){

.footer-contact-box{
align-items:flex-start;
}

.footer-contact-box .icon{
width:46px;
height:46px;
font-size:18px;
}

.footer-main h4{
font-size:20px;
}

.footer-copy{
font-size:14px;
line-height:1.7;
}

}

/* Trip list */
.page-title{
    font-size:38px;
    font-weight:500;
}

.filter-box{
    background:#fff;
    border-radius:12px;
    padding:20px;
    margin-bottom:20px;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.filter-title{
    font-size:18px;
    font-weight:500;
    margin-bottom:15px;
}

.tour-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.tour-card:hover{
    transform:translateY(-5px);
}

.tour-card img{
    height:220px;
    object-fit:cover;
    width:100%;
}

.card-body{
    padding:18px;
}

.location{
    font-size:13px;
    color:#777;
}

.tour-title{
    font-size:30px;
    font-weight:500;
    margin:10px 0;
    line-height:1.5;
}

.rating{
    color:#ffb400;
    font-size:14px;
}

.price{
    font-size:22px;
    font-weight:500;
}

.old-price{
    color:#999;
    text-decoration:line-through;
    font-size:14px;
}

.badge-sale{
    position:absolute;
    top:12px;
    right:12px;
    background:#ff4d4d;
    color:#fff;
    padding:5px 12px;
    border-radius:30px;
    font-size:12px;
}

.tour-image{
    position:relative;
}

.sort-box{
    background:#fff;
    padding:15px;
    border-radius:10px;
    margin-bottom:25px;
}

.form-check{
    margin-bottom:8px;
}

@media(max-width:991px){
    .sidebar{
        margin-bottom:30px;
    }
}

@media(max-width:576px){
	.filter-box{
		padding:15px;
	}

	.tour-card img{
		height:200px;
	}

	.card-body{
		padding:15px;
	}
}

/* Single Trip */

.gallery img{border-radius:14px;width:100%;object-fit:cover}
.main-img{height:420px}
.side-img{height:202px}
.cardx{background:#fff;border-radius:16px;padding:25px;margin-bottom:20px;border:1px solid #e8e8e8}
.booking-card{position:sticky;top:90px;background:#fff;border-radius:16px;padding:20px;border:1px solid #ddd}

.timeline{border-left:3px solid #16c79a;padding-left:25px}
.timeline-item{position:relative;margin-bottom:25px}
.timeline-item:before{content:'';width:16px;height:16px;background:#16c79a;border-radius:50%;position:absolute;left:-34px;top:4px}
.review-bar{height:8px;background:#e9ecef;border-radius:20px;overflow:hidden}
.review-bar span{display:block;height:100%;width:90%;background:#16c79a}
.similar .card img{height:180px;object-fit:cover}

/* hero slider*/
.hero-slider .owl-nav{
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    transform:translateY(-50%);
}

.hero-slider .owl-prev,
.hero-slider .owl-next{
    position:absolute;
    width:55px;
    height:55px;
    border-radius:50% !important;
    background:#fff !important;
    color:#111 !important;
    font-size:18px !important;
    line-height:55px !important;
    text-align:center;
    transition:.3s;
}

.hero-slider .owl-prev{
    left:30px;
}

.hero-slider .owl-next{
    right:30px;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover{
    background:#ff7a00 !important;
    color:#fff !important;
}

.hero-slider .owl-dots{
    display:none;
}
.destination-hero{
    position:relative;
    min-height:550px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.destination-overlay{
    position:absolute;
    inset:0;
    /* background:rgba(0,0,0,.45); */
}

.destination-hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:700px;
}

.destination-hero-content h1{
    font-size:60px;
    font-weight:500;
    margin-bottom:20px;
}

.destination-hero-content p{
    font-size:18px;
    line-height:30px;
}

.hero-subtitle{
    display:inline-block;
    background:#ff7a00;
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:500;
}

@media(max-width:767px){

.destination-hero{
    min-height:420px;
}

.destination-hero-content h1{
    font-size:36px;
}

}
.destination-intro{
    background:#fff;
}

.country-box{
    background:#f7f7f7;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.country-box span{
    color:#888;
    font-size:14px;
}

.country-box h4{
    font-size:28px;
    font-weight:500;
    margin-top:10px;
}

.intro-content h2{
    font-size:38px;
    font-weight:500;
    margin-bottom:20px;
}

.intro-content p{
    color:#666;
    line-height:30px;
}

.tour-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
height:100%;
transition:.3s;
}

.tour-card:hover{
transform:translateY(-8px);
}

.tour-card img{
width:100%;
height:260px;
object-fit:cover;
}

.tour-card-body{
padding:25px;
}

.tour-duration{
font-size:14px;
color:#ff7a00;
margin-bottom:15px;
}

.tour-card h4{
font-size:22px;
font-weight:500;
margin-bottom:10px;
}

.tour-card h4 a{
color:#111;
text-decoration:none;
}

.tour-price-rating{
display:flex;
justify-content:space-between;
margin-bottom:20px;
}


.rating{
font-weight:500;
}

.tour-highlight-list{
padding:0;
margin:0 0 20px;
list-style:none;
}

.tour-highlight-list li{
margin-bottom:8px;
color:#666;
}

.theme-btn{
display:block;
background:#ff7a00;
color:#fff;
text-align:center;
padding:14px;
border-radius:10px;
text-decoration:none;
font-weight:500;
}

.main-img,
.side-img{
cursor:pointer;
transition:.3s;
}

.main-img:hover,
.side-img:hover{
transform:scale(1.02);
}

#galleryModal .modal-content{
background:#111;
}

#galleryModal img{
max-height:80vh;
object-fit:contain;
}

.highlight-box{
background:#fff;
border-radius:15px;
padding:25px;
text-align:center;
box-shadow:0 2px 12px rgba(0,0,0,.08);
height:100%;
transition:.3s;
}

.highlight-box:hover{
transform:translateY(-5px);
}

.highlight-box i{
font-size:32px;
color:#0bb783;
margin-bottom:15px;
}

.highlight-box h6{
font-weight:500;
margin-bottom:10px;
}

.highlight-box p{
margin:0;
color:#777;
}

.progress{
height:8px;
border-radius:30px;
overflow:hidden;
background:#f1f1f1;
}

.progress-bar{
border-radius:30px;
}

.tour-top-bar{

position:sticky;

top:0;

z-index:999;

background:#fff;

padding:15px 0;

box-shadow:0 2px 12px rgba(0,0,0,.08);

}

.top-info{

font-size:14px;

font-weight:500;

color:#444;

}

@media(max-width:991px){

.tour-top-bar{

display:none;

}

}

.floating-whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

background:#25D366;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

box-shadow:0 8px 25px rgba(0,0,0,.2);

z-index:9999;

transition:.3s;

}

.floating-whatsapp:hover{

transform:scale(1.1);

color:#fff;

}

@media(max-width:767px){

.floating-whatsapp{

width:58px;

height:58px;

font-size:28px;

right:18px;

bottom:18px;

}

}


.offer-card{

position:relative;

overflow:hidden;

border-radius:25px;

}

.offer-card img{

width:100%;

height:180px;

object-fit:cover;

border-radius:25px;

}

.offer-overlay{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

background:linear-gradient(

90deg,

rgba(0,0,0,.55),

rgba(0,0,0,.15)

);

display:flex;

align-items:center;

padding:35px;

}

.offer-content{
width:100%;
color:#fff;
text-align:left;

}

.discount-badge{

display:inline-block;

background:#ff6b00;

padding:8px 20px;

border-radius:50px;

font-size:14px;

font-weight:500;

margin-bottom:15px;

}

.offer-content h3{

font-size:20px;

font-weight:500;

line-height:1.1;

color:#fff;

margin-bottom:5px;

}

.coupon-code{

font-size:16px;

margin-bottom:20px;

}

.offer-btn{

display:inline-block;

padding:12px 28px;

background:#fff;

color:#111;

border-radius:50px;

font-weight:500;

text-decoration:none;

}

/* CTA SECTION */
.home-cta-section{
    padding:30px 0;
}

.cta-box{
    background: linear-gradient(135deg,#0f172a,#1e293b);
    border-radius:30px;
    padding:70px;
    position:relative;
    overflow:hidden;
}

.cta-box:before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-120px;
    right:-80px;
}

.cta-box:after{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.04);
    border-radius:50%;
    bottom:-100px;
    left:-50px;
}

.cta-tag{
    color:#f59e0b;
    letter-spacing:2px;
    font-size:14px;
    font-weight:500;
}

.cta-title{
    color:#fff;
    font-size:52px;
    font-weight:500;
    margin-top:15px;
    line-height:1.2;
}

.cta-desc{
    color:rgba(255,255,255,.8);
    font-size:18px;
    line-height:32px;
    max-width:700px;
    margin-top:20px;
}

.cta-btn-group{
    display:flex;
    justify-content:flex-end;
    gap:20px;
    flex-wrap:wrap;
}

.cta-whatsapp,
.cta-contact{
    text-decoration:none;
    padding:18px 38px;
    border-radius:60px;
    font-weight:500;
    transition:.3s;
}

.cta-whatsapp{
    background:#25D366;
    color:#fff;
}

.cta-contact{
    background:#fff;
    color:#111;
}

.cta-whatsapp:hover{
    background:#1db954;
    color:#fff;
    transform:translateY(-5px);
}

.cta-contact:hover{
    background:#f59e0b;
    color:#fff;
    transform:translateY(-5px);
}

@media(max-width:991px){

    .cta-box{
        padding:50px 30px;
        text-align:center;
    }

    .cta-title{
        font-size:38px;
    }

    .cta-btn-group{
        justify-content:center;
        margin-top:35px;
    }

}

/* Testimonials Section */
.testimonial-section{
    background:#f8fafc;
}

.section-tag{
    color:#f59e0b;
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:500;
}

.section-title{
    font-size:36px;
    font-weight:500;
    margin-top:10px;
}

.section-subtitle{
    color:#64748b;
}

.testimonial-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin:15px;
}

.testimonial-rating{
    color:#ffb400;
    margin-bottom:20px;
}

.testimonial-review{
    color:#64748b;
    line-height:30px;
    min-height:140px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-user img{
    width:70px !important;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h5{
    margin:0;
    font-weight:500;
}

.testimonial-user span{
    color:#94a3b8;
}

/* Instagram Section */
.instagram-section{
padding:30px 0;
background:#fff;
}

.insta-card{
position:relative;
display:block;
overflow:hidden;
border-radius:25px;
}

.insta-card img{
width:100%;
height:220px;
object-fit:cover;
transition:.4s;
}

.insta-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.45);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:.4s;
}

.insta-overlay i{
font-size:42px;
color:#fff;
}

.insta-card:hover img{
transform:scale(1.08);
}

.insta-card:hover .insta-overlay{
opacity:1;
}

.insta-btn{
display:inline-flex;
align-items:center;
gap:10px;
padding:16px 35px;
background:linear-gradient(90deg,#833AB4,#FD1D1D,#FCAF45);
color:#fff;
border-radius:60px;
text-decoration:none;
font-weight:500;
}

.insta-btn:hover{
color:#fff;
}

/* Facebook Gallery */
.facebook-gallery-section{
padding:100px 0;
background:#fff;
}

.social-card{
position:relative;
display:block;
overflow:hidden;
border-radius:25px;
}

.social-card img{
width:100%;
height:220px;
object-fit:cover;
transition:.4s;
}

.social-overlay{
position:absolute;
inset:0;
background:rgba(24,119,242,.7);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:.4s;
}

.social-overlay i{
font-size:40px;
color:#fff;
}

.social-card:hover img{
transform:scale(1.08);
}

.social-card:hover .social-overlay{
opacity:1;
}

.facebook-btn{

display:inline-flex;
align-items:center;
gap:12px;
padding:15px 35px;
border-radius:60px;

background:#1877f2;
color:#fff;
font-weight:500;
text-decoration:none;

}

.facebook-btn:hover{

background:#0d65d9;
color:#fff;

}

/* Home Services Section */
.why-choose{
    position:relative;
    margin-top:-70px;
    z-index:10;
}

.feature-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    display:flex;
    gap:20px;
    align-items:center;
    transition:.4s;
    height:100%;
    border:1px solid #f3f3f3;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.feature-icon{
    width:80px;
    height:80px;
    min-width:80px;
    border-radius:50%;
    background:linear-gradient(135deg,#ff8a00,#ffb347);
    display:flex;
    justify-content:center;
    align-items:center;
}

.feature-icon i{
    color:#fff;
    font-size:30px;
}

.feature-content h5{
    font-size:24px;
    font-weight:500;
    margin-bottom:10px;
    color:#111;
}

.feature-content p{
    margin:0;
    color:#6c757d;
    line-height:1.7;
}

@media(max-width:991px){

.feature-card{
    padding:25px;
}

.feature-content h5{
    font-size:20px;
}

}

.one-trip-section{
    padding:30px 0;
}

.one-trip-section .title{
    font-size:36px;
    font-weight:500;
    margin-bottom:15px;
}

.one-trip-section .sub{
    color:#7d879c;
    max-width:650px;
    margin:auto;
    margin-bottom:60px;
    line-height:1.8;
}


/* CARD */
.trip-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    transition:.4s;
    border:1px solid #edf1f7;
}

.trip-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}


/* IMAGE */
.trip-img-wrap{
    position:relative;
    overflow:hidden;
    padding:15px;
}

.trip-img-wrap img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:25px;
    transition:.7s;
}

.trip-card:hover img{
    transform:scale(1.08);
}


/* SALE BADGE */
.sale-badge{
    position:absolute;
    top:30px;
    left:30px;
    background:#ff6b35;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:500;
    box-shadow:0 10px 25px rgba(255,107,53,.35);
}


/* CONTENT */
.trip-content{
    padding:0 25px 25px;
}



.trip-content h3 a{
    color:#121826;
    text-decoration:none;
    transition:.3s;
}

.trip-content h3 a:hover{
    color:#0d6efd;
}


.location{
    color:#7d879c;
    margin-bottom:25px;
}

.location i{
    color:#ff6b35;
    margin-right:8px;
}


/* PRICE */
.trip-price-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.price-box small{
    color:#8a8fa3;
    font-size:13px;
    display:block;
}

.price-box h4{
    font-size:24px;
    font-weight:500;
    color:#101828;
    margin:0;
}


/* BUTTON */
/*.book-btn{*/
/*    background:linear-gradient(135deg,#0d6efd,#4d9fff);*/
/*    color:#fff;*/
/*    padding:15px 28px;*/
/*    border-radius:50px;*/
/*    text-decoration:none;*/
/*    font-weight:500;*/
/*    transition:.4s;*/
/*}*/

/*.book-btn:hover{*/
/*    background:#121826;*/
/*    color:#fff;*/
/*    transform:translateY(-3px);*/
/*}*/


/* HR */
.trip-content hr{
    margin:25px 0;
    opacity:.08;
}


/* META */
.trip-meta{
    display:flex;
    justify-content:space-between;
    color:#687082;
    font-weight:500;
}

.trip-meta i{
    color:#ff6b35;
    margin-right:8px;
}



/* OWL */
.one-trip-carousel .owl-stage-outer{
    padding:25px 0 30px;
}

.one-trip-carousel .owl-dots{
    margin-top:30px;
}

.one-trip-carousel .owl-dot span{
    width:12px!important;
    height:12px!important;
    background:#d5d9e3!important;
}

.one-trip-carousel .owl-dot.active span{
    background:#0d6efd!important;
    width:35px!important;
    border-radius:50px;
}


/* MOBILE */
@media(max-width:991px){

.trip-content h3{
    font-size:24px;
}

.price-box h4{
    font-size:34px;
}

.book-btn{
    padding:12px 20px;
}

}

.trip-img-wrap{
position:relative;
overflow:hidden;
}

/* .img-overlay{
position:absolute;
left:0;
right:0;
bottom:0;
height:120px;
background:linear-gradient(
to top,
rgba(0,0,0,.55),
transparent
);
pointer-events:none;
} */

.sale-badge{
position:absolute;
top:20px;
left:20px;
background:#ff6b35;
color:#fff;
padding:8px 16px;
border-radius:50px;
font-size:13px;
font-weight:700;
z-index:5;
}

.wishlist-btn{
position:absolute;
top:20px;
right:20px;
width:42px;
height:42px;
background:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
z-index:5;
box-shadow:0 10px 30px rgba(0,0,0,.15);
cursor:pointer;
transition:.3s;
}

.wishlist-btn:hover{
background:#ff4d4d;
color:#fff;
}

.country-tag{
display:inline-flex;
align-items:center;
gap:8px;
background:#eef4ff;
color:#0d6efd;
padding:8px 15px;
border-radius:50px;
font-size:14px;
font-weight:600;
margin-bottom:15px;
}

.trip-img-wrap img{
transition:.7s;
}

.trip-card:hover img{
transform:scale(1.08);
}

.trip-card{
transition:.4s;
}

.trip-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.card-box{
background:#fff;
border-radius:30px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,.08);
transition:.4s;
}

.card-box:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,.15);
}
.favorite-img{
position:relative;
overflow:hidden;
}

.favorite-img img{
width:100%;
height:250px;
object-fit:cover;
transition:.7s;
}

.card-box:hover img{
transform:scale(1.08);
}
.fav-overlay{
position:absolute;
left:0;
right:0;
bottom:0;
height:120px;
background:linear-gradient(to top,
rgba(0,0,0,.55),
transparent);
}
.fav-badge{
position:absolute;
top:20px;
left:20px;
background:#ff6b35;
color:#fff;
padding:8px 16px;
border-radius:50px;
font-size:13px;
font-weight:700;
z-index:2;
}
.fav-heart{
position:absolute;
top:20px;
right:20px;
width:45px;
height:45px;
background:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 30px rgba(0,0,0,.2);
font-size:18px;
cursor:pointer;
z-index:2;
transition:.3s;
}

.fav-heart:hover{
background:#ff4d4d;
color:#fff;
}
.card-content{
padding:28px;
text-align:left;
}

.card-content h5 a{
font-size:22px;
font-weight:500;
color:#222;
text-decoration:none;
transition:.3s;
}

.card-content h5 a:hover{
color:#0d6efd;
}
.trip-rating{
color:#f7b500;
font-weight:600;
margin-bottom:15px;
}

.trip-rating span{
color:#888;
font-size:14px;
margin-left:5px;
}
.starting-from{
font-size:13px;
color:#999;
text-transform:uppercase;
letter-spacing:1px;
margin-bottom:8px;
}


.trip-meta{
display:flex;
justify-content:space-between;
padding-top:20px;
margin-top:20px;
border-top:1px solid #eee;
color:#666;
font-size:14px;
}

.destination-item{
background:#fff;
border-radius:30px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,.08);
transition:.4s;
}

.destination-item:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.destination-image{
position:relative;
overflow:hidden;
}

.destination-image img{
height:280px;
width:100%;
object-fit:cover;
transition:.7s;
border-radius:25px;
}

.destination-item:hover img{
transform:scale(1.08);
}

/* .destination-overlay{
position:absolute;
left:0;
right:0;
bottom:0;
height:120px;


} */
.destination-arrow{
position:absolute;
right:20px;
top:20px;

width:50px;
height:50px;

background:#fff;
border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

box-shadow:0 10px 30px rgba(0,0,0,.2);

transition:.3s;
}
.destination-card{
    background: #fff4f4;
    padding: 5px;
    border-radius: 8px;
}
.destination-item:hover .destination-arrow{
background:#0d6efd;
color:#fff;
}
.destination-content{
padding:10px;
text-align:left;
}
.destination-content h3{min-height:80px;}
.destination-content h4{
font-size:16px;
font-weight:500;
color:#222;
margin-bottom:8px;
}

.destination-content p{
color:#777;
margin-bottom:5px;
}

.destination-content p i{
color:#ff6b35;
margin-right:8px;
}
.destination-price small{
display:block;
font-size:13px;
color:#4e536a;
letter-spacing:1px;
margin-bottom:6px;
font-weight:500;
}

.destination-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: .5s;
}

.destination-price span{
font-size:24px;
font-weight:500;
color:#090b0d;
}
.destination-carousel .owl-stage{
padding:15px 0;
}

.tab-btn{

padding:8px 28px;
border-radius:12px;

background:#fff;

border:1px solid #eee;

font-weight:600;

transition:.3s;
}

.tab-btn.active{

background:#ff7a00;
color:#fff;

box-shadow:0 10px 30px rgba(255, 122, 0, 0.3);

}

/* Destination */
.destination-hero-meta{
display:flex;
gap:15px;
margin-top:20px;
justify-content:center;
flex-wrap:wrap;
}

.destination-hero-meta span{
background:#fff;
padding:10px 20px;
border-radius:50px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
font-weight:600;
color:#444;
}

.destination-hero-meta i{
color:#ff7a00;
margin-right:8px;
}


.destination-facts{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:50px;
}

.fact-box{
background:#fff;
padding:35px 25px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.07);
text-align:center;
transition:.4s;
}

.fact-box:hover{
transform:translateY(-8px);
}

.fact-box i{
width:70px;
height:70px;
line-height:70px;
background:#fff3eb;
color:#ff7a00;
font-size:28px;
border-radius:50%;
margin-bottom:20px;
}

.fact-box h5{
font-size:20px;
font-weight:700;
margin-bottom:10px;
}

.fact-box span{
color:#777;
}

@media(max-width:991px){

.destination-facts{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.destination-facts{
grid-template-columns:1fr;
}

}

.destination-tour-card{

background:#fff;
border-radius:30px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;

}

.destination-tour-card:hover{

transform:translateY(-10px);
box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.tour-image{

position:relative;
overflow:hidden;

}

.tour-image img{

width:100%;
height:260px;
object-fit:cover;
transition:.8s;

}

.destination-tour-card:hover img{

transform:scale(1.08);

}

.tour-overlay{

position:absolute;
left:0;
right:0;
bottom:0;
height:120px;

/* background:linear-gradient(
to top,
rgba(0,0,0,.6),
transparent
); */

}
.tour-badge{

position:absolute;
top:20px;
left:20px;

background:#ff7a00;
color:#fff;

padding:10px 18px;

border-radius:50px;

font-size:13px;
font-weight:700;

}
.wishlist-icon{

position:absolute;
top:20px;
right:20px;

width:48px;
height:48px;

background:#fff;

border-radius:50%;

display:flex;
justify-content:center;
align-items:center;

box-shadow:0 10px 30px rgba(0,0,0,.15);

}
.tour-meta{

display:flex;
justify-content:space-between;

margin:20px 0;

color:#777;

font-size:14px;

}

.tour-meta i{

color:#ff7a00;
margin-right:6px;

}

.why-visit-box{

background:#fff;

padding:50px;

border-radius:30px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

line-height:2;

}

.travel-card{

background:#fff;

padding:40px 30px;

border-radius:25px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.travel-card:hover{

transform:translateY(-8px);

}

.destination-gallery-section{
padding:100px 0;
}
/* Gallery */
.destination-gallery-layout{

display:grid;

grid-template-columns:2fr 1fr;

gap:15px;

}

.gallery-main{

overflow:hidden;
border-radius:25px;

height:520px;

}

.gallery-main img{

width:100%;
height:100%;
object-fit:cover;

transition:.5s;

}

.gallery-main:hover img{

transform:scale(1.05);

}

.gallery-side{

display:grid;

grid-template-columns:1fr 1fr;

gap:15px;

}

.gallery-small{

position:relative;

overflow:hidden;

border-radius:25px;

height:252px;

}

.gallery-small img{

width:100%;
height:100%;
object-fit:cover;

transition:.5s;

}

.gallery-small:hover img{

transform:scale(1.05);

}

.view-all-btn{

position:absolute;

bottom:20px;
right:20px;

background:#fff;

padding:14px 25px;

border-radius:15px;

font-weight:600;

color:#222;

box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.view-all-btn i{

margin-right:8px;

color:#ff7a00;

}


.gallery-small::after,
.gallery-main::after{

content:'';

position:absolute;

inset:0;

background:linear-gradient(
to top,
rgba(0,0,0,.35),
transparent
);

pointer-events:none;

}


@media(max-width:991px){

.destination-gallery-layout{

grid-template-columns:1fr;

}

.gallery-main{

height:400px;

}

.gallery-side{

grid-template-columns:1fr 1fr;

}

}


@media(max-width:576px){

.gallery-side{

grid-template-columns:1fr;

}

.gallery-small{

height:220px;

}

}


/* Destination About */



/* ABOUT */

.destination-about{

padding:100px 0;

}

.destination-facts{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.fact-card{

background:#fff;

padding:35px;

border-radius:30px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

text-align:center;

transition:.4s;

}

.fact-card:hover{

transform:translateY(-8px);

}

.fact-card i{

width:70px;
height:70px;

line-height:70px;

border-radius:50%;

background:#fff3eb;

color:#ff7a00;

font-size:28px;

margin-bottom:20px;

}

.fact-card h5{

font-size:20px;

font-weight:700;

margin-bottom:10px;

}

.fact-card span{

color:#777;

}


@media(max-width:991px){


.destination-facts{

grid-template-columns:1fr;

}

}

/* destination Booking card */
.booking-card{
background:#fff;
padding:40px;
border-radius:30px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
position:sticky;
top:120px;
}

.booking-card .form-control{
height:58px;
border-radius:15px;
}

.booking-info{
list-style:none;
padding:0;
margin-top:25px;
}

.booking-info li{
margin-bottom:15px;
color:#666;
font-weight:500;
}

.booking-info i{
color:#ff7a00;
width:25px;
}

.booking-card .theme-btn{
height:58px;
border-radius:15px;
}

/* destination landing page */

.destination-page{
background:#f8fafc;
}

.region-card{
position:relative;
overflow:hidden;
border-radius:30px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
}

.region-card img{
width:100%;
height:420px;
object-fit:cover;
transition:.6s;
}

.region-card:hover img{
transform:scale(1.08);
}

.region-overlay{
position:absolute;
left:0;
bottom:0;
width:100%;
padding:35px;
background:linear-gradient(
to top,
rgba(0,0,0,.9),
rgba(0,0,0,.2),
transparent
);
color:#fff;
}

.destination-count{
display:inline-block;
background:rgba(255,255,255,.15);
padding:8px 18px;
border-radius:50px;
font-size:14px;
backdrop-filter:blur(10px);
margin-bottom:15px;
}

.region-overlay h3{
font-size:36px;
font-weight:700;
margin-bottom:20px;
color:#fff;
}

.explore-btn{
display:inline-flex;
align-items:center;
gap:10px;
background:#1e73ff;
padding:12px 24px;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.region-card:hover .explore-btn{
background:#ff7a00;
}

.region-card a{
text-decoration:none;
}

/* tour landing page */
.tour-card{
background:#fff;
border-radius:30px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,.08);
transition:.4s;
height:100%;
}

.tour-card:hover{
transform:translateY(-8px);
}

.tour-image{
position:relative;
}

.tour-image img{
height:220px;
width:100%;
object-fit:cover;
}

.tour-badge{
position:absolute;
left:20px;
top:20px;
background:#ff7a00;
color:#fff;
padding:8px 15px;
border-radius:50px;
font-size:13px;
}

.wishlist{
position:absolute;
right:20px;
top:20px;
width:45px;
height:45px;
background:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.tour-content{
padding:25px;
}

.tour-tags{
margin-bottom:15px;
}

.tag-blue{
background:#1e73ff;
color:#fff;
padding:6px 14px;
border-radius:30px;
font-size:13px;
}

.tag-orange{
background:#fff1e5;
color:#ff7a00;
padding:6px 14px;
border-radius:30px;
font-size:13px;
}

.tour-rating{
color:#ff9800;
margin-bottom:15px;
}

.inclusive{
font-weight:600;
margin-bottom:20px;
}

.tour-meta{
display:flex;
justify-content:space-between;
margin-bottom:20px;
font-size:14px;
}

.price-row{
display:flex;
justify-content:space-between;
align-items:center;
}

.price{
font-size:34px;
font-weight:700;
color:#1e1e1e;
}

.old-price{
text-decoration:line-through;
color:#888;
}

/*.book-btn{*/
/*background:#1e73ff;*/
/*color:#fff;*/
/*padding:14px 25px;*/
/*border-radius:15px;*/
/*font-weight:600;*/
/*}*/

.book-btn:hover{
background:#ff7a00;
color:#fff;
}

/* Contact us */
.contact-hero{
position:relative;
padding:180px 0;
background-size:cover!important;
background-position:center!important;
overflow:hidden;
}

.contact-hero:before{
content:'';
position:absolute;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.45);
}

.contact-hero .container{
position:relative;
z-index:2;
}

.contact-hero h1{
color:#fff;
font-size:72px;
font-weight:800;
}

.contact-hero p{
color:#fff;
font-size:18px;
}

.contact-hero .section-tag{
color:#ffb400;
letter-spacing:4px;
}

.contact-info-section{
padding-bottom:80px;
}

.contact-box{
background:#fff;
padding:40px 30px;
border-radius:30px;
box-shadow:0 10px 35px rgba(0,0,0,.08);
text-align:center;
height:100%;
transition:.4s;
}

.contact-box:hover{
transform:translateY(-10px);
}

.contact-box .icon{
width:80px;
height:80px;
background:#f4f7ff;
border-radius:50%;
margin:auto;
line-height:80px;
font-size:28px;
color:#1e73ff;
margin-bottom:25px;
}

.contact-box h5{
font-weight:700;
margin-bottom:15px;
}

.contact-box p{
color:#777;
line-height:30px;
}

.contact-form-section{
padding:90px 0;
background:#fff;
}

.contact-form-box{
padding:50px;
background:#fff;
border-radius:30px;
box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.contact-form-box h2{
font-size:42px;
font-weight:800;
}

.contact-form-box .form-control{
height:60px;
border-radius:15px;
border:1px solid #e5e8ef;
padding:0 20px;
}

.contact-form-box textarea.form-control{
height:auto;
padding:20px;
}

.contact-form-box .form-control:focus{
box-shadow:none;
border-color:#1e73ff;
}



.theme-btn:hover{
background:#ff8c00;
}

.map-box{
height:100%;
overflow:hidden;
border-radius:30px;
box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.map-box iframe{
width:100%;
height:100%;
min-height:620px;
border:0;
}

.why-card{

background:#fff;
padding:40px 30px;
border-radius:30px;
box-shadow:0 10px 40px rgba(0,0,0,.08);
text-align:center;
height:100%;
transition:.4s;

}

.why-card:hover{

transform:translateY(-10px);

}

.why-card .icon{

width:80px;
height:80px;

background:#f4f7ff;

color:#1e73ff;

line-height:80px;

font-size:30px;

border-radius:50%;

margin:auto auto 25px;

}


.contact-faq .accordion-item{

border:none;
border-radius:20px!important;
overflow:hidden;
margin-bottom:20px;
box-shadow:0 10px 35px rgba(0,0,0,.08);

}


.contact-cta{

padding:100px 0;

}

.cta-box{

background:linear-gradient(
135deg,
#1e73ff,
#0057d8
);

padding:90px 50px;

border-radius:40px;

text-align:center;

color:#fff;

}

.cta-box h2{

font-size:50px;
font-weight:800;

margin-bottom:20px;

}

.cta-btn{

display:inline-block;

margin-top:30px;

background:#ff8c00;

color:#fff;

padding:18px 40px;

border-radius:50px;

font-weight:700;

text-decoration:none;

}

/* Footer whatsapp */

.wa-text{
    position:fixed;
    right:84px;
    bottom:32px;
    z-index:9999;
    display:flex;
    align-items:center;
    gap:12px;
}

.wa-text{
    background:#fff;
    padding:8px 15px;
    border-radius:40px;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    font-weight:600;
    color:#444;
}

.floating-whatsapp{
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(37,211,102,.4);
    transition:.3s;
}

.floating-whatsapp:hover{
    transform:translateY(-5px);
    color:#fff;
}

/* Destination single page */
.destination-hero{
position:relative;
padding:170px 0;
background-size:cover;
background-position:center;
}

.destination-hero:before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(to right,
rgba(0,0,0,.75),
rgba(0,0,0,.3));
}

.destination-hero .container{
position:relative;
z-index:2;
}

.destination-hero-content{
max-width:700px;
color:#fff;
}

.hero-subtitle{
display:inline-block;
background:#ff8a00;
padding:8px 20px;
border-radius:50px;
font-size:13px;
font-weight:600;
letter-spacing:1px;
margin-bottom:20px;
}

.destination-hero h1{
font-size:65px;
font-weight:800;
line-height:1.1;
margin-bottom:20px;
color:#fff;
}

.destination-hero p{
font-size:18px;
color:#e5e5e5;
}

.destination-hero-meta{
margin-top:35px;
display:flex;
gap:15px;
flex-wrap:wrap;
}

.destination-hero-meta span{
background:rgba(255,255,255,.12);
backdrop-filter:blur(15px);
padding:12px 25px;
border-radius:40px;
color:#fff;
font-weight:600;
}

.destination-hero-meta i{
color:#ff8a00;
margin-right:8px;
}

/* destination about */
.destination-facts{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
margin-top:50px;
}

.fact-card{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 10px 40px rgba(0,0,0,.08);
text-align:center;
transition:.4s;
}

.fact-card:hover{
transform:translateY(-10px);
}

.fact-card i{
width:80px;
height:80px;
line-height:80px;
border-radius:50%;
background:#fff3e8;
color:#ff8a00;
font-size:28px;
margin-bottom:20px;
}

.fact-card h5{
font-weight:700;
margin-bottom:10px;
}

.fact-card span{
color:#666;
}


.booking-card{
position:sticky;
top:100px;
background:#fff;
padding:40px;
border-radius:25px;
box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.starting-price{
margin-bottom:30px;
}

.starting-price small{
color:#888;
}

.starting-price h2{
font-size:42px;
font-weight:800;
color:#ff8a00;
}

.booking-info{
padding:0;
margin:0;
list-style:none;
}

.booking-info li{
margin-bottom:15px;
font-weight:600;
}

.booking-info i{
color:#ff8a00;
margin-right:10px;
}

/* Destination card images */
.destination-tour-card{
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 10px 35px rgba(0,0,0,.08);
transition:.4s;
height:100%;
}

.destination-tour-card:hover{
transform:translateY(-10px);
}

.tour-image{
position:relative;
overflow:hidden;
}

.tour-image img{
height:250px;
width:100%;
object-fit:cover;
transition:.5s;
}

.destination-tour-card:hover img{
transform:scale(1.1);
}

.tour-badge{
position:absolute;
top:20px;
left:20px;
background:#ff8a00;
color:#fff;
padding:8px 18px;
border-radius:50px;
font-size:13px;
font-weight:600;
}

.wishlist-icon{
position:absolute;
right:20px;
top:20px;
width:45px;
height:45px;
background:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.tour-body{
padding:30px;
}

.tour-duration{
color:#ff8a00;
font-weight:600;
margin-bottom:15px;
}

.tour-body h3{
font-size:24px;
font-weight:700;
margin-bottom:15px;
}

.tour-body h3 a{
color:#222;
text-decoration:none;
}

.tour-meta{
display:flex;
justify-content:space-between;
margin:20px 0;
font-size:14px;
font-weight:600;
color:#666;
}

.tour-price-row{
display:flex;
justify-content:space-between;
align-items:center;
margin-top:20px;
}

.tour-price-row small{
color:#888;
}

.tour-price-row h4{
font-size:32px;
font-weight:800;
color:#ff8a00;
margin:0;
}
/* destination why us */
.why-visit-box{
background:#fff;
padding:50px;
border-radius:30px;
box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.why-visit-box ul{
padding-left:0;
list-style:none;
margin:0;
}

.why-visit-box li{
position:relative;
padding-left:35px;
margin-bottom:18px;
font-size:16px;
}

.why-visit-box li:before{
content:'✓';
position:absolute;
left:0;
top:0;
width:22px;
height:22px;
background:#ff8a00;
color:#fff;
border-radius:50%;
text-align:center;
line-height:22px;
font-size:12px;
}

.map-box{
overflow:hidden;
border-radius:30px;
box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.map-box iframe{
width:100%;
height:500px;
border:0;
}
/* Related Destinations */
.related-card{
background:#fff;
overflow:hidden;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
}

.related-card:hover{
transform:translateY(-10px);
}

.related-card img{
height:280px;
width:100%;
object-fit:cover;
}

.related-content{
padding:30px;
}

.related-content h4{
font-size:26px;
font-weight:700;
margin-bottom:20px;
}

.related-content a{
text-decoration:none;
}
/* Travel */
.info-card{
background:#fff;
padding:40px;
border-radius:25px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
height:100%;
}

.info-card:hover{
transform:translateY(-8px);
}

.info-card i{
width:70px;
height:70px;
line-height:70px;
background:#fff4e8;
color:#ff8a00;
font-size:28px;
border-radius:50%;
margin-bottom:20px;
}

.info-card h5{
font-weight:700;
margin-bottom:15px;
}
.visa-box{
background:#fff;
padding:50px;
border-radius:30px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}
.extra-box{
background:#fff;
padding:50px;
border-radius:30px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.extra-box i{
font-size:35px;
color:#1f6fff;
margin-bottom:20px;
}

.extra-box.orange i{
color:#ff8a00;
}

.extra-box h2{
font-size:40px;
font-weight:800;
}
.destination-cta{
padding:100px 0;
}

.cta-box{
background:linear-gradient(135deg,#1f6fff,#0044cc);
color:#fff;
padding:80px;
border-radius:35px;
text-align:center;
}

.cta-box h2{
font-size:50px;
font-weight:800;
margin-bottom:20px;
}

.cta-box p{
font-size:18px;
margin-bottom:30px;
}

/* Home Page Destination tab */

/*Footer dinamic menu*/
.footer-links{
list-style:none;
padding:0;
margin:0;

}

.footer-links li{
margin-bottom:12px;
}

.footer-links li a{
color:#fff;
text-decoration:none;
transition:.3s;
color: #fff !important;
}

.footer-links li a:hover{
color:#ff8a00 !important;
padding-left:5px;
}
.btn-success{height: 50px; color: #fff !important; line-height:38px !important;}
.btn-primary{height: 50px; color: #fff !important; line-height:38px !important;}
.btn-dark{height: 50px; color: #fff !important; line-height:38px !important;}
