/* 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: #3B71FE;
    --black-color: #000000;
    --white-color: #ffffff;
    --gold-color: #dd9933;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a2e;
    --text-color: #666;
    --heading-color: #1a1a2e;
    --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;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* ======= 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: 18px 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.header-menu-area.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
    animation: slideDown 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

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

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

.logo img {
    max-height: 60px;
}

.sticky-logo {
    display: none;
}

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

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

.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-btn {
    margin-left: 30px;
}

.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: var(--black-color);
    color: var(--white-color);
}

.theme-btn a {
    color: var(--white-color);
}

.theme-btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-color);
    transition: all 0.4s ease;
    z-index: 1;
}

.theme-btn:hover:after {
    left: 0;
}

.theme-btn a,
.theme-btn span {
    position: relative;
    z-index: 2;
}

.theme-btn:hover a {
    color: var(--white-color);
}

.theme-btn.style-2 {
    background: var(--primary-color);
}

.theme-btn.style-2:after {
    background: var(--black-color);
}

/* ======= Mobile Menu ======= */
.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: 40px 30px;
}

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

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

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

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

.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: 30px;
}

.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: 12px;
}

.social-profile a {
    width: 40px;
    height: 40px;
    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;
}

.slider-wrapper {
    position: relative;
}

.single-slider-wrapper {
    position: relative;
}

.single-slider {
    height: 85vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

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

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

.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 {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

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

.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 ======= */
.location-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    margin: 10px;
}

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

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

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

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

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

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

.location-card .content-wrapper {
    padding: 20px;
}

.content-title {
    font-size: 18px;
    margin-bottom: 0;
}

.content-title a {
    color: var(--heading-color);
}

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

.content-wrapper .icon {
    float: right;
    color: var(--primary-color);
    font-size: 18px;
}

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

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

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

.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(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

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

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

.footer-widget-menu-wrapper {
    display: flex;
    gap: 40px;
}

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

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

.footer-widget ul.menu li a:hover {
    color: var(--primary-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(--primary-color);
    border-color: var(--primary-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;
    justify-content: space-between;
    align-items: center;
}

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

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

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

.footer-bottom-menu ul li a:hover {
    color: var(--primary-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-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%; }
.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%; }
.col-md-6 { width: 50%; }
.col-md-12 { width: 100%; }
.col-6 { width: 50%; }
.col-12 { width: 100%; }
.col-xxl-3 { width: 25%; }
.col-xxl-4 { width: 33.333%; }
.col-xxl-5 { width: 41.666%; }

[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; }
.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: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.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; }
    .slider-title { font-size: 36px; }
    .single-slider { height: 70vh; min-height: 500px; }
    .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; }
}

@media (max-width: 767px) {
    .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; }
    .title { font-size: 28px; }
    .meta-wrapper { flex-wrap: wrap; }
    section { padding: 60px 0; }
    .footer-sec { padding: 60px 0 20px; }
    .footer-bottom-wrapper { flex-direction: column; text-align: center; gap: 10px; }
    .footer-bottom-menu ul { justify-content: center; }
    .d-lg-none { display: block; }
}

/* ======= 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;
}
@keyframes sectionFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Destination card hover — image zoom & shadow lift */
.location-card {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}
.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.location-card .image-wrapper {
    overflow: hidden;
}
.location-card .image-wrapper img {
    transition: transform 0.5s ease;
}
.location-card:hover .image-wrapper img {
    transform: scale(1.08);
}

/* 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 */
.single-slider {
    transition: transform 8s ease;
}
.slider-area:hover .single-slider {
    transform: scale(1.03);
}

/* Button glow on hover */
.theme-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,113,254,0.3);
}
.theme-btn.style-2:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

/* Location card content link arrow slide */
.location-card .content-inner .icon {
    transition: transform 0.3s ease;
}
.location-card:hover .content-inner .icon {
    transform: translateX(5px);
}

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