/* WExplorers - Custom Styles */
/* Based on Routehaven Theme for WExplorers.in */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Fasthand&display=swap');

:root {
 --primary-color: #142850;
 --black-color: #000000;
 --white-color: #ffffff;
 --gold-color: #c8a064;
 --gold-muted: #b4a064;
 --light-bg: #f0f4f8;
 --dark-bg: #142850;
 --text-color: #4a4a4a;
 --heading-color: #142850;
 --font-main: 'Plus Jakarta Sans', sans-serif;
 --font-hand: 'Fasthand', cursive;
}

* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.7;
 color: var(--text-color);
 overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
 color: var(--heading-color);
 font-weight: 700;
 line-height: 1.3;
}

a {
 text-decoration: none;
 color: inherit;
 transition: all 0.3s ease;
}

a:hover {
 color: var(--primary-color);
}

img {
 max-width: 100%;
 height: auto;
}

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

.container {
 max-width: 1320px;
 margin: 0 auto;
 padding: 0 30px;
}

/* ======= Header ======= */
.single-slider-wrapper {
 position: relative;
}

.slider-area .container {
 position: relative;
 z-index: 3;
}

.header-area {
 position: relative;
}

.header-menu-area {
 background: var(--white-color);
 padding: 10px 0;
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.align-items-center {
 align-items: center;
}

.logo img {
 max-height: 120px;
 max-width: 100%;
 height: auto;
}

.sticky-logo {
 display: none;
}

.sticky-header .sticky-logo {
 display: inline-block;
}

.sticky-header .standard-logo {
 display: none;
}

/* Always use sticky-logo since header is always stuck */
.header-menu-area .sticky-logo {
 display: inline-block;
}

.header-menu-area .standard-logo {
 display: none;
}

/* ======= Navigation ======= */
.main-menu ul {
 display: flex;
 gap: 30px;
}

.main-menu ul li a {
 font-weight: 500;
 font-size: 15px;
 color: var(--heading-color);
 padding: 10px 0;
 position: relative;
 display: inline-flex;
 align-items: center;
}

.main-menu ul li a:after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background: var(--primary-color);
 transition: all 0.3s ease;
}

.main-menu ul li.active a:after,
.main-menu ul li a:hover:after {
 width: 100%;
}

.main-menu ul li.active a {
 color: var(--primary-color);
}

/* === Header Button === */
.header-btn {
 margin-left: 30px;
}
.header-btn .theme-btn {
 display: inline-block;
 padding: 14px 36px;
 border-radius: 8px;
 font-weight: 700;
 font-size: 16px;
 cursor: pointer;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
 background: #8a6e30;
 color: var(--white-color);
 border: none;
}
.header-btn .theme-btn:after {
 display: none;
}
.header-btn .theme-btn:hover {
 box-shadow: 0 4px 20px rgba(200,160,100,0.4);
 transform: translateY(-2px);
}
.header-btn .theme-btn a {
 color: var(--white-color);
 position: relative;
 z-index: 2;
 text-decoration: none;
}

/* Base theme-btn for other pages — Enquire Now hover style */
.theme-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #8a6e30;
    color: var(--white-color);
    border: none;
}
.theme-btn a,
.theme-btn span {
    color: var(--white-color);
    position: relative;
    z-index: 2;
}
.theme-btn:hover {
    box-shadow: 0 4px 20px rgba(200,160,100,0.4);
    transform: translateY(-2px);
}
.theme-btn:hover a,
.theme-btn:hover span {
    color: var(--white-color);
}

.theme-btn.style-2 {
    background: #8a6e30;
}
.theme-btn.style-2:hover {
    box-shadow: 0 4px 20px rgba(200,160,100,0.4);
}

.theme-btn.gold-blue {
    background: #8a6e30;
}
.theme-btn.gold-blue:hover {
    box-shadow: 0 4px 20px rgba(200,160,100,0.4);
}

/* ======= Mobile Menu ======= */
.menu-sidebar-area,
.body-overlay {
 display: none;
}

.mobile-menu-bar a {
 font-size: 24px;
 color: var(--heading-color);
}

.menu-sidebar-area {
 position: fixed;
 top: 0;
 right: -400px;
 width: 360px;
 height: 100%;
 background: var(--white-color);
 z-index: 9999;
 transition: all 0.4s ease;
 box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}

.menu-sidebar-area.active {
 right: 0;
}

.menu-sidebar-wrapper {
 padding: 20px 30px;
}

.menu-sidebar-close {
 text-align: right;
 margin-bottom: 10px;
}

.menu-sidebar-close-btn {
 background: none;
 border: none;
 font-size: 24px;
 cursor: pointer;
 color: var(--heading-color);
}

.menu-sidebar-logo {
 margin-bottom: 10px;
}

.menu-sidebar-logo img {
 max-height: 80px;
}

.mobile-nav-menu ul {
 flex-direction: column;
 gap: 0;
}

.mobile-nav-menu ul li {
 border-bottom: 1px solid #eee;
}

.mobile-nav-menu ul li a {
 display: block;
 padding: 12px 0;
 font-size: 16px;
}

.menu-sidebar-content-inner {
 margin-top: 10px;
}

.menu-sidebar-title {
 font-size: 18px;
 margin-bottom: 20px;
 color: var(--heading-color);
}

.header-contact-info span {
 display: block;
 margin-bottom: 12px;
 font-size: 14px;
 color: var(--text-color);
}

.header-contact-info span i {
 margin-right: 10px;
 color: var(--primary-color);
 width: 20px;
}

.social-profile {
 margin-top: 20px;
 display: flex;
 gap: 16px; /* Increased from 12px for better tap targets */
}

.social-profile a {
 width: 48px; /* Increased from 40px for better tap targets */
 height: 48px; /* Increased from 40px for better tap targets */
 display: flex;
 align-items: center;
 justify-content: center;
 border-radius: 50%;
 border: 1px solid #ddd;
 color: var(--heading-color);
 font-size: 16px;
 transition: all 0.3s ease;
}

.social-profile a:hover {
 background: var(--primary-color);
 border-color: var(--primary-color);
 color: var(--white-color);
}

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

.body-overlay.active {
 opacity: 1;
 visibility: visible;
}

/* ======= Hero Slider ======= */
.slider-area {
 position: relative;
 overflow: hidden;
 margin-top: 80px;
}

.slider-wrapper {
 position: relative;
 height: 85vh;
 min-height: 600px;
 max-height: 800px;
}

.single-slider-wrapper {
 position: absolute;
 inset: 0;
 opacity: 0;
 visibility: hidden;
 transition: opacity 0.8s ease, visibility 0.8s ease;
 z-index: 0;
}

.single-slider-wrapper.active {
 opacity: 1;
 visibility: visible;
 z-index: 1;
}

.single-slider {
 height: 85vh;
 min-height: 600px;
 max-height: 800px;
 display: flex;
 align-items: center;
 position: relative;
 overflow: hidden;
}

.single-slider:before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, rgba(0,0,0,0.23) 0%, rgba(0,0,0,0.08) 100%);
 z-index: 1;
}

/* Background image layer — zoom only the image, not the text */
.slider-bg {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-size: cover;
 background-position: center;
 transition: transform 8s ease;
}
/* Shift second hero image up */
.slide-item:nth-child(2) .slider-bg {
 background-position: center calc(50% - 15px);
}

/* Hero slider feature text inside image */
.slider-features {
 margin-top: 18px;
 display: flex;
 flex-direction: column;
 gap: 6px;
}

.slider-feature {
 display: flex;
 align-items: center;
 gap: 8px;
}

.slider-feature i {
 font-size: 13px;
 color: var(--gold-color);
 flex-shrink: 0;
}

.slider-feature span {
 font-size: 12px;
 color: rgba(255,255,255,0.9);
 line-height: 1.4;
}

.slider-content-wrapper {
 position: relative;
 z-index: 2;
}

.slider-short-title {
 display: inline-block;
 font-size: 16px;
 font-weight: 600;
 color: var(--gold-color);
 text-transform: uppercase;
 letter-spacing: 2px;
 margin-bottom: 15px;
 font-family: var(--font-hand);
 font-size: 26px;
 text-transform: none;
 letter-spacing: normal;
}

.slider-title {
 font-size: 60px;
 font-weight: 700;
 color: var(--white-color);
 margin-bottom: 20px;
 line-height: 1.2;
}

.slider-short-desc {
 font-size: 18px;
 color: rgba(255,255,255,0.9);
 margin-bottom: 30px;
 max-width: 500px;
}

/* ======= Section Styles ======= */
section {
 padding: 100px 0;
}

.section-title {
 margin-bottom: 50px;
}

.sec-content {
 max-width: 700px;
}

.short-title {
 display: inline-block;
 font-size: 18px;
 font-weight: 600;
 color: var(--primary-color);
 margin-bottom: 10px;
 position: relative;
 padding-left: 50px;
}

.short-title:before {
 content: '';
 position: absolute;
 left: 0;
 top: 50%;
 width: 35px;
 height: 2px;
 background: var(--primary-color);
}

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

.bottom-shape {
 margin-bottom: 20px;
}

/* Cursive short-title for section headings (e.g. "Destination" label) */
.short-title.seperated-sub-title {
 font-family: "Fasthand", sans-serif;
 font-size: 26px;
 font-weight: 400;
 padding-left: 0;
 line-height: 150%;
}

.short-title.seperated-sub-title:before {
 display: none;
}

.sec-desc .desc {
 font-size: 16px;
 color: var(--text-color);
 line-height: 1.8;
}

/* ======= About Section ======= */
.about-us-image-wrapper-2 {
 position: relative;
}

.about-us-image-wrapper-2 .main-img {
 border-radius: 10px;
 overflow: hidden;
}

.about-us-image-wrapper-2 .sub-img {
 position: absolute;
 bottom: -30px;
 right: -30px;
 width: 200px;
 border-radius: 10px;
 overflow: hidden;
 border: 5px solid var(--white-color);
 box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.link-card {
 position: absolute;
 background: var(--white-color);
 padding: 15px 20px;
 border-radius: 8px;
 box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.link-card.style-2 {
 top: 30px;
 left: -30px;
}

.link-card.style-1 {
 bottom: 80px;
 left: -20px;
 display: flex;
 align-items: center;
 gap: 12px;
}

.link-card .title {
 font-size: 16px;
 margin-bottom: 5px;
}

.link-card .location-inner {
 display: flex;
 align-items: center;
 gap: 5px;
}

.link-card .location-inner .address {
 font-size: 13px;
 color: var(--text-color);
}

.link-card .link-up {
 font-size: 13px;
 color: var(--primary-color);
 font-weight: 600;
}

.video-btn a {
 width: 50px;
 height: 50px;
 display: flex;
 align-items: center;
 justify-content: center;
 background: var(--primary-color);
 border-radius: 50%;
 color: var(--white-color);
 font-size: 18px;
}

.info-card {
 display: flex;
 gap: 15px;
 margin-bottom: 25px;
}

.info-card .icon-wrapper {
 flex-shrink: 0;
}

.info-card .icon-wrapper img,
.info-card .icon-wrapper i {
 width: 50px;
 height: 50px;
 object-fit: contain;
}
.info-card .icon-wrapper i {
 font-size: 30px;
 color: var(--primary-color, #142850);
 display: flex;
 align-items: center;
 justify-content: center;
 background: #f0f4ff;
 border-radius: 12px;
}

.info-card .title {
 font-size: 18px;
 font-weight: 600;
 margin-bottom: 8px;
}

.info-card .desc {
 font-size: 14px;
 color: var(--text-color);
 line-height: 1.7;
 min-height: 3em;
}

.meta-wrapper {
 display: flex;
 align-items: center;
 gap: 30px;
 margin-top: 30px;
}

.meta-user {
 display: flex;
 align-items: center;
}

.meta-user .image-inner {
 width: 45px;
 height: 45px;
 border-radius: 50%;
 overflow: hidden;
 border: 3px solid var(--white-color);
 margin-left: -10px;
}

.meta-user .image-inner:first-child {
 margin-left: 0;
}

.meta-user .image-inner img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.meta-user a.image-inner {
 background: var(--primary-color);
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--white-color);
 font-size: 14px;
}

.counter-wrapper {
 text-align: center;
}

.counter-inner {
 font-size: 28px;
 font-weight: 700;
 color: var(--heading-color);
}

.customers {
 font-size: 14px;
 color: var(--text-color);
 text-transform: uppercase;
}

/* ======= Destination Cards (RouteHaven style) ======= */
.location-card {
 position: relative;
 border-radius: 16px;
 overflow: hidden;
 margin: 10px;
}

.location-card .image-wrapper {
 position: relative;
}

.location-card .image-wrapper .image-inner {
 display: block;
 z-index: 2;
 overflow: hidden;
}

.location-card .image-wrapper img {
 width: 100%;
 height: 370px;
 object-fit: cover;
 transition: all 0.5s ease-out;
}

.location-card .rating {
 position: absolute;
 top: 15px;
 left: 15px;
 z-index: 4;
}

.location-card .rating .ratting-inner {
 background: var(--white-color);
 padding: 5px 12px;
 border-radius: 20px;
 display: flex;
 align-items: center;
 gap: 5px;
 font-size: 13px;
}

.location-card .rating .ratting-inner i {
 color: #ffc107;
}

.content-title {
 margin-bottom: 0;
 line-height: 0;
}

.content-title a {
 font-family: "Plus Jakarta Sans", sans-serif;
 color: #041126;
 font-size: 20px;
 font-weight: 700;
 line-height: 140%;
 text-decoration: none;
 background: linear-gradient(to right, #041126 50%, #041126 50%, #142850);
 background-size: 200%;
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 transition: 0.5s ease-out;
}

.content-title a:hover {
 background-position: -100%;
}

/* Name box — absolute over image bottom */
.location-card .content-wrapper {
 visibility: visible;
 position: absolute;
 bottom: 15px;
 left: 50%;
 transform: translateX(-50%);
 width: fit-content;
 white-space: nowrap;
 border-radius: 16px;
 background-color: #ffffff;
 z-index: 5;
}

.location-card .content-wrapper .content-inner {
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 6px 14px;
 opacity: 1;
}

@media (max-width: 1400px) {
 .location-card .content-wrapper .content-inner {
 gap: 0;
 }
}

.content-title {
 width: auto;
}

.location-card .content-wrapper .content-inner {
 justify-content: center;
}

@media (max-width: 1400px) {
 .location-card .content-wrapper .content-inner .content-title {
 width: auto;
 }
}

/* Blue circle arrow button — hidden */
.location-card .content-wrapper .content-inner .icon {
 display: none;
}

.location-card .content-wrapper .content-inner .icon:before {
 position: absolute;
 width: 0;
 height: 100%;
 left: 0;
 top: 0;
 background-color: #041126;
 content: "";
 transition: all 0.5s ease-out;
}

.location-card .content-wrapper .content-inner .icon:hover:before {
 width: 100%;
}

.location-card .content-wrapper .content-inner .icon i {
 color: #ffffff;
 font-size: 20px;
 transition: all 0.5s ease-out;
 position: relative;
 z-index: 10;
}

.location-card .content-wrapper .content-inner .icon:hover i {
 transform: rotate(45deg) !important;
}

/* Subtle hover effect */
.location-card:hover {
 transform: scale(1.03);
 box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.location-card {
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 992px) {
 .location-card {
 margin-right: 0;
 }
}

/* ======= Why Choose Us ======= */
.why-choose-us-area {
 background: var(--light-bg);
}

.why-choose-us-area .image-wrapper img {
 width: 100%;
 border-radius: 10px;
}

/* ======= Footer ======= */
.footer {
 background: #0a0a23;
 color: rgba(255,255,255,0.8);
}

.footer-sec {
 padding: 80px 0 40px;
}

.footer-widget {
 margin-bottom: 30px;
}

/* Desktop: push Destinations & Quick Links headings down to align with tagline, shift right */
@media (min-width: 992px) {
 .footer .row > div:nth-child(2) .footer-widget,
 .footer .row > div:nth-child(3) .footer-widget {
 padding-top: 95px;
 padding-left: 190px;
 }
}

.footer-logo img {
 max-height: 140px;
}

.footer-widget-title {
 font-size: 20px;
 font-weight: 700;
 color: var(--white-color);
 margin-bottom: 25px;
 position: relative;
 padding-bottom: 15px;
}

.footer-widget-title:after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 40px;
 height: 2px;
 background: var(--primary-color);
}

.footer-widget-contact .desc {
 font-size: 14px;
 line-height: 1.8;
 margin-bottom: 20px;
 color: rgba(255,255,255,0.78);
}

.footer-contact {
 display: flex;
 align-items: center;
 gap: 12px;
 margin-bottom: 12px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--gold-color);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-text a {
 color: rgba(255,255,255,0.85);
}

.contact-text a:hover {
    color: var(--gold-color);
}

.footer-widget ul.menu li {
 margin-bottom: 10px;
}

.footer-widget ul.menu li a {
 color: rgba(255,255,255,0.78);
 font-size: 14px;
}

.footer-widget ul.menu li a:hover {
    color: var(--gold-color);
 padding-left: 5px;
}

.footer .social-profile a {
 border-color: rgba(255,255,255,0.2);
 color: rgba(255,255,255,0.7);
}

.footer .social-profile a:hover {
    background: var(--gold-color);
    border-color: var(--gold-color);
 color: var(--white-color);
}

.divider {
 height: 1px;
 background: rgba(255,255,255,0.1);
 margin: 30px 0;
}

.footer-bottom-area {
 padding: 20px 0;
 border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-wrapper {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 gap: 10px;
}

.copyright-text p {
 font-size: 14px;
 color: rgba(255,255,255,0.7);
}

.copyright-text p a {
 font-size: 14px;
 color: rgba(255,255,255,0.7);
 text-decoration: none;
 position: relative;
}

.copyright-text p a::after {
 content: '';
 position: absolute;
 bottom: -2px;
 left: 0;
 width: 0;
 height: 1px;
 background: var(--primary-color);
 transition: width 0.3s ease;
}

.copyright-text p a:hover {
    color: var(--gold-color);
}

.copyright-text p a:hover::after {
 width: 100%;
}

.footer-bottom-menu ul {
 display: flex;
 justify-content: center;
 gap: 20px;
}

.footer-bottom-menu ul li a {
 font-size: 14px;
 color: rgba(255,255,255,0.7);
}

.footer-bottom-menu ul li a:hover {
    color: var(--gold-color);
}

/* ======= Page Header / Breadcrumb ======= */
.page-breadcrumb-area {
 background-color: var(--primary-color);
 padding: 120px 0 80px;
 text-align: center;
 margin-top: 80px;
}

.page-breadcrumb-area h1 {
 font-size: 42px;
 color: var(--white-color);
 margin-bottom: 10px;
}

.breadcrumb {
 display: flex;
 justify-content: center;
 gap: 8px;
 font-size: 15px;
}

.breadcrumb a {
 color: rgba(255,255,255,0.7);
}

.breadcrumb span {
 color: var(--white-color);
}

/* ======= Blog Page ======= */
.blog-area {
 padding: 80px 0;
}

.blog-card {
 border-radius: 10px;
 overflow: hidden;
 box-shadow: 0 5px 20px rgba(0,0,0,0.06);
 transition: all 0.3s ease;
 margin-bottom: 30px;
}

.blog-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-card .image-wrapper {
 overflow: hidden;
}

.blog-card .image-wrapper img {
 width: 100%;
 height: 250px;
 object-fit: cover;
 transition: all 0.5s ease;
}

.blog-card:hover .image-wrapper img {
 transform: scale(1.05);
}

.blog-card .content-wrapper {
 padding: 25px;
}

.blog-meta {
 display: flex;
 gap: 15px;
 margin-bottom: 10px;
 font-size: 14px;
 color: var(--text-color);
}

.blog-meta i {
 margin-right: 5px;
 color: var(--primary-color);
}

.blog-card .content-title {
 font-size: 20px;
 margin-bottom: 12px;
}

.blog-card .desc {
 font-size: 14px;
 color: var(--text-color);
 margin-bottom: 15px;
}

.read-more {
 color: var(--primary-color);
 font-weight: 600;
 font-size: 14px;
}

.read-more i {
 margin-left: 5px;
 transition: all 0.3s ease;
}

.read-more:hover i {
 margin-left: 10px;
}

/* ======= Contact Page ======= */
.contact-info-area {
 padding: 80px 0;
}

.contact-info-card {
 text-align: center;
 padding: 40px 30px;
 border-radius: 10px;
 box-shadow: 0 5px 20px rgba(0,0,0,0.06);
 margin-bottom: 30px;
 transition: all 0.3s ease;
}

.contact-info-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-card .icon {
 width: 70px;
 height: 70px;
 display: flex;
 align-items: center;
 justify-content: center;
 background: rgba(59, 113, 254, 0.1);
 border-radius: 50%;
 margin: 0 auto 20px;
 font-size: 28px;
 color: var(--primary-color);
}

.contact-info-card h4 {
 font-size: 20px;
 margin-bottom: 10px;
}

.contact-info-card p {
 font-size: 14px;
 color: var(--text-color);
}

.contact-form-wrapper {
 background: var(--light-bg);
 padding: 50px;
 border-radius: 10px;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
 width: 100%;
 padding: 14px 20px;
 border: 1px solid #ddd;
 border-radius: 6px;
 font-size: 15px;
 font-family: var(--font-main);
 transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
 border-color: var(--primary-color);
 outline: none;
 box-shadow: 0 0 0 3px rgba(59, 113, 254, 0.1);
}

.contact-form textarea {
 height: 150px;
 resize: vertical;
}

/* ======= Destination Page ======= */
.destination-grid {
 padding: 80px 0;
}

/* ======= Grid System ======= */
.col-6 { width: 50%; }
.col-12 { width: 100%; }
@media (min-width: 768px) {
 .col-md-6 { width: 50%; }
 .col-md-12 { width: 100%; }
}
@media (min-width: 992px) {
 .col-lg-2 { width: 16.666%; }
 .col-lg-3 { width: 25%; }
 .col-lg-4 { width: 33.333%; }
 .col-lg-5 { width: 41.666%; }
 .col-lg-6 { width: 50%; }
 .col-lg-10 { width: 83.333%; }
}
@media (min-width: 1200px) {
 .col-xl-2 { width: 16.666%; }
 .col-xl-3 { width: 25%; }
 .col-xl-4 { width: 33.333%; }
 .col-xl-5 { width: 41.666%; }
 .col-xl-10 { width: 83.333%; }
}
@media (min-width: 1400px) {
 .col-xxl-3 { width: 25%; }
 .col-xxl-4 { width: 33.333%; }
 .col-xxl-5 { width: 41.666%; }
 .col-xl-2 { width: 16.666%; }
 .col-xl-3 { width: 25%; }
 .col-xl-4 { width: 33.333%; }
 .col-xl-5 { width: 41.666%; }
 .col-xl-10 { width: 83.333%; }
}

[class*="col-"] {
 padding: 0 20px;
}

.row {
 margin: 0 -20px;
}

.d-flex { display: flex; }
.justify-content-end { justify-content: flex-end; }
.justify-content-center { justify-content: center; }
.align-items-end { align-items: flex-end; }
.text-end { text-align: right; }
.text-center { text-align: center; }
.d-inline-block { display: inline-block; }
.d-lg-none { display: none; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.order-xl-1 { order: 1; }
.order-xl-2 { order: 2; }

.p-0 { padding: 0; }
.m-0 { margin: 0; }
.w-100 { width: 100%; }

.py-md-100 { padding-top: 100px; padding-bottom: 100px; }
.py-sm-80 { padding-top: 80px; padding-bottom: 80px; }
.pb-md-100 { padding-bottom: 100px; }
.pb-sm-80 { padding-bottom: 80px; }

/* ======= Slider Navigation (Simple) ======= */
.slider-nav {
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 width: 50px;
 height: 50px;
 background: rgba(255,255,255,0.2);
 color: var(--white-color);
 border: none;
 border-radius: 50%;
 font-size: 20px;
 cursor: pointer;
 z-index: 10;
 transition: all 0.3s ease;
}

.slider-nav:hover {
 background: var(--primary-color);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
 position: absolute;
 bottom: 30px;
 left: 50%;
 transform: translateX(-50%);
 display: flex;
 gap: 8px;
 z-index: 10;
}

.slider-dots button {
 width: 14px;
 height: 14px;
 border-radius: 50%;
 border: none;
 background: rgba(255,255,255,0.4);
 cursor: pointer;
 transition: all 0.3s ease;
 position: relative;
}
.slider-dots button::before {
 content: '';
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 44px;
 height: 44px;
}

.slider-dots button.active {
 background: var(--white-color);
}

/* ======= Responsive ======= */
@media (max-width: 1199px) {
 .title { font-size: 36px; }
 .slider-title { font-size: 48px; }
 .link-card.style-2 { left: 10px; }
}

@media (max-width: 991px) {
 .main-menu { display: none; }
 .menu-sidebar-area,
 .body-overlay {
 display: block;
 }
 .d-lg-none { display: block; }
 .slider-title { font-size: 36px; }
 .single-slider { height: 70vh; min-height: 500px; }
 .slider-wrapper { height: 70vh; min-height: 500px; max-height: 800px; }
 .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-10 { width: 100%; }
 .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-10 { width: 100%; }
 .footer-widget-menu-wrapper { flex-direction: column; gap: 20px; }
 .order-xl-1 { order: 1; }
 .order-xl-2 { order: 2; }
 .about-us-image-wrapper-2 { margin-top: 50px; }
 .link-card.style-2 { left: 10px; }
 .link-card.style-1 { left: 10px; }
 .page-breadcrumb-area { margin-top: 70px; padding: 100px 0 60px; }
 .page-breadcrumb-area h1 { font-size: 32px; }
 .contact-form-wrapper { padding: 30px; }
 .why-choose-us-area .col-lg-4 { width: 50%; }
}

@media (max-width: 767px) {
 .slider-area { margin-top: 65px; }
 .col-md-6 { width: 100%; }
 .col-xxl-3, .col-xxl-4, .col-xxl-5 { width: 100%; }
 .slider-title { font-size: 28px; }
 .single-slider { min-height: 400px; }
 .slider-wrapper { min-height: 400px; }
 .title { font-size: 28px; }
 .meta-wrapper { flex-wrap: wrap; }
 section { padding: 60px 0; }
 .footer-sec { padding: 60px 0 20px; }
 .header-btn { display: none; }
 .slider-nav { display: none; }
 .logo img { max-height: 50px; }
 .container { padding: 0 20px; }
 .slider-content-wrapper { padding: 0 20px; }
 .info-card .desc { min-height: 0; }
 .why-choose-us-area .col-lg-4 { width: 100%; }
 .location-card .image-wrapper img { height: 220px; }
}

/* Mobile sidebar — fit on very narrow screens */
@media (max-width: 400px) {
 .menu-sidebar-area { width: 85vw; right: -85vw; }
}

/* ======= Visual Effects ======= */

/* Smooth page scroll */
html {
 scroll-behavior: smooth;
}

/* Fade-in on scroll using Intersection Observer class */
.reveal {
 opacity: 0;
 transform: translateY(30px);
 transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
 opacity: 1;
 transform: translateY(0);
}

/* Section entrance animation */
section {
 animation: sectionFadeIn 0.8s ease both;
}

@media (prefers-reduced-motion: reduce) {
 section {
 animation: none;
 }
}

@keyframes sectionFadeIn {
 from { opacity: 0; transform: translateY(20px); }
 to { opacity: 1; transform: translateY(0); }
}

/* Blog card hover */
.blog-card {
 transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.blog-card:hover {
 transform: translateY(-6px);
 box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.blog-card .image-wrapper {
 overflow: hidden;
}
.blog-card .image-wrapper img {
 transition: transform 0.5s ease;
}
.blog-card:hover .image-wrapper img {
 transform: scale(1.08);
}

/* Hero slider — slow ken burns (background image only, text stays static) */
.slider-area:hover .slider-bg {
 transform: scale(1.03);
}

/* Button glow on hover */
/* (Unified in .theme-btn section above — no longer separate) */

/* Social icon bounce */
.social-profile a {
 transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.social-profile a:hover {
 transform: translateY(-3px) scale(1.1);
}

/* Star rating subtle pulse */
.rating .ratting-inner span i {
 animation: starPulse 2s ease-in-out infinite;
}
@keyframes starPulse {
 0%, 100% { opacity: 1; transform: scale(1); }
 50% { opacity: 0.85; transform: scale(1.1); }
}

/* Info card hover lift */
.info-card {
 transition: transform 0.4s ease;
}
.info-card:hover {
 transform: translateY(-4px);
}

/* Link card hover */
.link-card {
 transition: transform 0.3s ease;
}
.link-card:hover {
 transform: translateY(-3px);
}

/* Counter number animation */
.counter {
 display: inline-block;
}

/* Footer link hover */
.footer-bottom-menu ul li a {
 position: relative;
}
.footer-bottom-menu ul li a::after {
 content: '';
 position: absolute;
 bottom: -2px;
 left: 0;
 width: 0;
 height: 1px;
 background: var(--primary-color);
 transition: width 0.3s ease;
}
.footer-bottom-menu ul li a:hover::after {
 width: 100%;
}

/* ======= Popular Destination Carousel ======= */
.carousel-outer-wrapper {
 position: relative;
 margin: 0 10px;
}

.destination-carousel {
 overflow: visible;
 width: 100%;
 margin-top: 40px;
 position: relative;
}

.carousel-track-wrapper {
 overflow: hidden;
}

.carousel-track {
 display: flex;
 gap: 24px;
 transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
 will-change: transform;
}

.carousel-card {
 flex: 0 0 calc((100% - 72px) / 4);
 min-width: 0;
}

/* Tablet: 3 cards */
@media (max-width: 1199px) {
 .carousel-card {
 flex: 0 0 calc((100% - 48px) / 3);
 }
}

/* Small tablet: 2 cards */
@media (max-width: 767px) {
 .carousel-card {
 flex: 0 0 calc((100% - 24px) / 2);
 }
}

/* Mobile: 1 card */
@media (max-width: 576px) {
 .carousel-card {
 flex: 0 0 100%;
 }
 section { padding: 40px 0; }
 .page-breadcrumb-area { padding: 80px 0 40px; }
 .page-breadcrumb-area h1 { font-size: 26px; }
 .slider-title { font-size: 24px; }
 .single-slider { min-height: 350px; }
 .slider-wrapper { min-height: 350px; }
 .title { font-size: 22px; }
 .stat-pill { font-size: 13px; }
}

/* Carousel arrow buttons */
.carousel-arrow {
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 width: 48px;
 height: 48px;
 border-radius: 50%;
 background: #ffffff;
 border: none;
 box-shadow: 0 3px 12px rgba(0,0,0,0.12);
 cursor: pointer;
 z-index: 10;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 18px;
 color: var(--heading-color);
 transition: all 0.3s ease;
 outline: none;
}

.carousel-arrow:hover {
 background: var(--primary-color);
 color: #ffffff;
 box-shadow: 0 4px 16px rgba(59, 113, 254, 0.4);
 transform: translateY(-50%) scale(1.05);
}

.carousel-arrow:active {
 transform: translateY(-50%) scale(0.95);
}

.carousel-arrow-prev {
 left: -24px;
}

.carousel-arrow-next {
 right: -24px;
}

/* Hide arrows on smaller screens */
@media (max-width: 992px) {
 .carousel-arrow {
 display: none;
 }
}

/* ======= Nav Dropdown ======= */
.main-menu ul li.menu-item-has-children {
 position: relative;
}

.main-menu ul li.menu-item-has-children > a {
 gap: 6px;
}

.main-menu ul li.menu-item-has-children > a i {
 font-size: 12px;
 transition: transform 0.2s ease;
 position: relative;
 top: 3px;
}

.main-menu ul li.menu-item-has-children:hover > a i {
 transform: rotate(180deg);
}

.main-menu .sub-menu {
 position: absolute;
 top: 100%;
 left: 0;
 min-width: 223px;
 background: #fff;
 box-shadow: 0 10px 40px rgba(0,0,0,0.1);
 border-radius: 8px;
 padding: 8px 0;
 display: block;
 gap: 0;
 opacity: 0;
 visibility: hidden;
 transform: translateY(8px);
 transition: all 0.3s ease;
 z-index: 999;
}

.main-menu ul li.menu-item-has-children:hover > .sub-menu {
 opacity: 1;
 visibility: visible;
 transform: translateY(0);
}

.main-menu .sub-menu li {
 display: block;
}

.main-menu .sub-menu li a {
 display: block;
 padding: 10px 24px;
 font-size: 14px;
 color: var(--heading-color);
 border-left: 3px solid transparent;
 transition: all 0.2s ease;
}

.main-menu .sub-menu li a:hover {
 color: var(--primary-color);
 border-left-color: var(--primary-color);
 background: rgba(59, 113, 254, 0.04);
}

.main-menu .sub-menu li a:after {
 display: none;
}

/* Nested sub-menu (depth-2) */
.main-menu .sub-menu .sub-menu-depth-2 {
 top: 0;
 left: 100%;
 margin-left: 4px;
 opacity: 0;
 visibility: hidden;
 transform: translateY(4px);
 transition: all 0.3s ease;
}
.main-menu .sub-menu li.menu-item-has-children > a i {
 font-size: 12px;
 margin-left: 6px;
 float: right;
 margin-top: 4px;
}
.main-menu .sub-menu li.menu-item-has-children:hover > .sub-menu-depth-2 {
 opacity: 1;
 visibility: visible;
 transform: translateY(0);
}
@media (max-width: 991px) {
 .main-menu .sub-menu .sub-menu-depth-2 {
 left: 20px;
 top: 100%;
 margin-left: 0;
 }
}

/* Mobile dropdown */
.mobile-nav-menu ul li.menu-item-has-children > a {
 display: flex;
 align-items: center;
 justify-content: space-between;
}

.mobile-nav-menu ul li.menu-item-has-children > a i {
 transition: transform 0.3s ease;
}

.mobile-nav-menu ul li.menu-item-has-children > a.open i {
 transform: rotate(180deg);
}

.mobile-nav-menu .sub-menu {
 display: none;
 padding-left: 16px;
 background: rgba(0,0,0,0.02);
}

.mobile-nav-menu .sub-menu.open {
 display: block;
}

.mobile-nav-menu .sub-menu li a {
 font-size: 14px;
 padding: 10px 0;
 border-bottom: none;
}

/* ======= Package / Tour Page ======= */
.package-section {
 padding: 80px 0;
}

.package-section:nth-child(even) {
 background: var(--light-bg);
}

.package-card {
 background: #fff;
 border-radius: 12px;
 overflow: hidden;
 box-shadow: 0 5px 25px rgba(0,0,0,0.06);
 transition: all 0.3s ease;
}

.package-card:hover {
 transform: translateY(-4px);
 box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.package-card .image-wrapper {
 height: 320px;
 overflow: hidden;
}

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

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

.package-card .content-wrapper {
 padding: 35px;
}

.package-badge {
 display: inline-block;
 padding: 5px 16px;
 border-radius: 20px;
 font-size: 12px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 1.5px;
 margin-bottom: 12px;
}

.package-badge.classic {
 background: rgba(59, 113, 254, 0.1);
 color: var(--primary-color);
}

.package-badge.premium {
 background: rgba(200, 160, 100, 0.12);
 color: var(--gold-color);
}

.package-card .package-title {
 font-size: 26px;
 margin-bottom: 6px;
}

.package-card .package-subtitle {
 font-size: 14px;
 color: var(--text-color);
 margin-bottom: 20px;
}

.package-card .package-price {
 font-size: 28px;
 font-weight: 700;
 color: var(--primary-color);
 margin-bottom: 4px;
}

.package-card .package-price-note {
 font-size: 13px;
 color: var(--text-color);
 margin-bottom: 20px;
}

.package-card .package-desc {
 font-size: 15px;
 color: var(--text-color);
 line-height: 1.7;
 margin-bottom: 20px;
}

.package-features {
 list-style: none;
 padding: 0;
 margin: 0 0 25px;
}

.package-features li {
 padding: 8px 0;
 font-size: 14px;
 color: var(--text-color);
 display: flex;
 align-items: flex-start;
 gap: 10px;
 border-bottom: 1px solid #f0f0f0;
}

.package-features li:last-child {
 border-bottom: none;
}

.package-features li i {
 margin-top: 3px;
 flex-shrink: 0;
 font-size: 14px;
}

.package-features li .fa-check {
 color: #22c55e;
}

.package-features li .fa-xmark {
 color: #ef4444;
}

/* Package comparison table */
.comparison-section {
 padding: 80px 0;
}

.comparison-table {
 width: 100%;
 border-collapse: collapse;
 border-radius: 10px;
 overflow: hidden;
 box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.comparison-table thead {
 background: var(--heading-color);
 color: #fff;
}

.comparison-table th {
 padding: 16px 20px;
 font-size: 15px;
 font-weight: 600;
 text-align: left;
}

.comparison-table th:first-child {
 width: 40%;
}

.comparison-table th:nth-child(2) {
 background: var(--primary-color);
}

.comparison-table th:nth-child(3) {
 background: var(--gold-color);
}

.comparison-table td {
 padding: 14px 20px;
 font-size: 14px;
 color: var(--text-color);
 border-bottom: 1px solid #eee;
}

.comparison-table tr:last-child td {
 border-bottom: none;
}

.comparison-table tbody tr:hover {
 background: rgba(59, 113, 254, 0.03);
}

.comparison-table td:first-child {
 font-weight: 600;
 color: var(--heading-color);
}

.comparison-table .check {
 color: #22c55e;
 font-size: 16px;
}

.comparison-table .cross {
 color: #ef4444;
 font-size: 16px;
}

/* Intro stat pills */
.intro-stats {
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
 margin-top: 20px;
}

.stat-pill {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 8px 18px;
 background: rgba(59, 113, 254, 0.07);
 border-radius: 30px;
 font-size: 13px;
 color: var(--heading-color);
 font-weight: 500;
}

.stat-pill i {
 color: var(--primary-color);
 font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
 .package-card .image-wrapper {
 height: 240px;
 }
 .package-card .content-wrapper {
 padding: 25px;
 }
 .comparison-table {
 font-size: 13px;
 }
 .comparison-table th,
 .comparison-table td {
 padding: 12px 14px;
 }
}

@media (max-width: 767px) {
 .package-card .image-wrapper {
 height: 200px;
 }
 .package-card .package-title {
 font-size: 22px;
 }
 .intro-stats {
 gap: 8px;
 }
 .stat-pill {
 font-size: 12px;
 padding: 6px 14px;
 }
}