/* =========================================================
 1️⃣ FUENTE LOCAL Y TIPOGRAFÍA GLOBAL
========================================================= */
@font-face {
    font-family: "Baumans";
    src: url("../fonts/Baumans-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

html, body {
    font-family: "Baumans", sans-serif !important;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.6;
    font-size: 16px;
    background-color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto !important;
    height: auto;
    min-height: 100vh;
    scroll-padding-top: 100px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Baumans", sans-serif !important;
    font-weight: 700;
    color: #1A1A1A;
    margin-top: 0;
}

p {
    font-family: "Baumans", sans-serif !important;
    font-weight: 400;
    color: #333;
    margin-bottom: 1rem;
}

a {
    font-family: "Baumans", sans-serif !important;
    font-weight: 500;
    color: #F48534;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #28B5A4;
}

button, .btn, .btn-custom {
    font-family: "Baumans", sans-serif !important;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.display-4 {
    font-family: "Baumans", sans-serif !important;
    color: #fff;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.2;
}

/* =========================================================
 2️⃣ HEADER SUPERIOR (TOP BAR)
========================================================= */
.top-bar {
    background-color: #F48534;
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
    position: relative;
    z-index: 998;
    transition: all 0.3s ease;
}

.top-bar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 115px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-left a[href^="tel"],
.top-bar-left a[href^="mailto"] {
    font-weight: 400 !important;
}

.top-bar-left a[href^="tel"] i.fa-phone {
    font-size: 10px;
    -webkit-text-stroke: 0.3px currentColor;
    color: transparent;
    -webkit-text-fill-color: white;
}

.top-bar-left a {
    color: #fff;
    margin-right: 15px;
    transition: color 0.3s;
}

.top-bar-left a:hover {
    color: #FBDAC2;
}

.top-bar i {
    margin-right: 4px;
}

.top-bar .separator {
    margin: 0 5px;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
}

.top-bar .lang-switch {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-bar .lang-switch a {
    display: flex;
    align-items: center;
    color: #fff !important;
    text-decoration: none;
    margin-right: 0;
    transition: all 0.3s ease;
}

.top-bar .lang-switch .lang-text {
    color: #fff;
    font-weight: 600 !important;
    transition: color 0.3s ease;
}

.top-bar .lang-switch .flag {
    width: 18px;
    margin-right: 5px;
    transition: opacity 0.3s ease;
}

.top-bar .lang-switch a:hover {
    color: #fff !important;
}

.top-bar .lang-switch a:hover .lang-text {
    color: #FBDAC2 !important;
}

.top-bar .lang-switch a:hover .flag {
    opacity: 0.8;
}

/* =========================================================
 3️⃣ MAIN HEADER (LOGO + NAVBAR)
========================================================= */
.main-header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    /*background-color: #F48534; *//* Esto asegura que el fondo detrás del logo sea naranja como en la Top Bar */
    background: transparent !important;
    transition: all 0.3s ease;
}

.main-header {
    /*background-color: #ffffff;*/
    /*background-color: rgba(255, 255, 255, 1); *//* Usa blanco sólido para que el brand resalte */
    background-color: rgba(255, 255, 255, 0.45) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 999;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;

    /* ✅ Esto elimina cualquier residuo de color del wrapper */
    /*margin-top: 0;*/
}

.main-header .container-fluid {
    padding-left: 115px;
    padding-right: 115px;
}

.navbar {
    padding: 10px 0;
    transition: padding 0.3s ease;
}

.navbar .logo {
    height: 55px;
    transition: height 0.3s ease;
}

.navbar-nav .nav-link {
    font-family: "Baumans", sans-serif !important;
    color: #1A1A1A !important;
    font-weight: 600;
    font-size: 16px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    text-transform: none;
    transition: color 0.3s ease;
}

/* ========================================
   🎨 ENLACES ACTIVOS - DESKTOP
======================================== */

/* 🟢 Hover en enlaces normales */
.navbar-nav .nav-link:hover {
    color: #F48534 !important;
}

/* 🟢 Enlaces activos SIN dropdown (Home, Biking Tours, Blog, Contact, etc.) */
.nav-item.active-link > .nav-link {
    color: #F48534 !important;
}

/* =========================================================
 4️⃣ DROPDOWN MENU
========================================================= */
.dropdown-menu {
    border-radius: 0 !important;
    border: 1px solid #e0e0e0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    /*min-width: 200px !important;*/

    min-width: 170px !important;
    width: 170px !important;
}

.dropdown-item {
    font-family: "Baumans", sans-serif !important;
    color: #333333 !important;
    background-color: #ffffff !important;
    /*padding: 10px 15px;*/
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 12px 10px !important;
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
}

.dropdown-item:last-child {
    border-bottom: none !important;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
    background-color: #F48534 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ========================================
   🎨 SUBMENU ITEMS ACTIVOS - DESKTOP
======================================== */

/* Item de dropdown activo en desktop */
.dropdown-menu .dropdown-item.active {
    background-color: #F48534 !important;
    color: #ffffff !important;
}

.dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nav-link.dropdown-toggle::after {
    display: none !important;
}

.nav-link.dropdown-toggle {
    position: relative;
    padding-right: 25px !important;
}

.nav-link.dropdown-toggle i.fa-chevron-down {
    font-size: 11px;
    margin-left: 6px;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #1A1A1A;
}

/* 🟢 Hover y estado activo de dropdowns (Other Tours, About Us) */
.nav-item.dropdown:hover > .nav-link.dropdown-toggle,
.nav-item.dropdown .nav-link.dropdown-toggle[aria-expanded="true"],
.nav-item.dropdown.active-link > .nav-link.dropdown-toggle {
    color: #F48534 !important;
}

.nav-item.dropdown:hover > .nav-link.dropdown-toggle i.fa-chevron-down,
.nav-item.dropdown .nav-link.dropdown-toggle[aria-expanded="true"] i.fa-chevron-down,
.nav-item.dropdown.active-link > .nav-link.dropdown-toggle i.fa-chevron-down {
    color: #F48534 !important;
}

/* =========================================================
 5️⃣ BOTÓN PERSONALIZADO
========================================================= */
/*.btn-custom {
    background-color: #F48534;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    border-radius: 0.3rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}*/

.btn-custom {
    background-color: #F48534;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    border-radius: 0.3rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-custom:hover {
    background-color: #28B5A4;
    color: white;
    transform: scale(1.05);
}

/* =========================================================
 6️⃣ BUSCADOR EN HEADER
========================================================= */
.search-item {
    position: relative;
}

.search-toggle i {
    font-size: 18px;
    color: #1A1A1A;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-toggle:hover i,
.search-toggle.active i {
    color: #F48534;
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 8px 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 10px;
    min-width: 280px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.search-box.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.search-box .search-icon-active {
    color: #F48534;
    font-size: 16px;
    margin-right: 8px;
}

.search-box input {
    border: none;
    outline: none;
    font-family: "Baumans", sans-serif;
    font-size: 14px;
    width: 100%;
    flex: 1;
    padding: 5px;
    color: #333;
}

.search-box input::placeholder {
    color: #999;
}

.search-box .close-search {
    background: none;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    margin-left: 8px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.2s ease;
    line-height: 1;
}

.search-box .close-search:hover {
    color: #F48534;
    transform: scale(1.1);
}

/* =========================================================
 7️⃣ HERO SECTION
========================================================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 95vh;
    min-height: 600px;
    overflow: hidden;
    /*z-index: 1;*/

    /* ✅ Cambiamos el z-index a 0 para que el header esté encima */
    z-index: 0;
    /* ✅ Forzamos que ignore cualquier empuje superior */
    margin-top: 0 !important;
    top: 0;
}

.hero-section .video-container {
    background-color: #585858;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*z-index: 1;*/
    z-index: -1; /* ✅ El video se queda al fondo del todo */
    overflow: hidden;
}

.hero-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.hero-section .overlay-content {
    position: absolute;
    z-index: 3;
    color: white;
    text-align: left;
    top: 50%;
    left: 41%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
}*/

/*.hero-section .overlay-content h1 {
    color: white;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}*/

.hero-section .overlay-content {
    position: absolute;
    z-index: 3;
    color: white;
    text-align: left;
    top: 50%;
    left: 41%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-section .overlay-content h1 {
    color: white;
    /* Tamaño fluido que se ajusta automáticamente entre 1.5rem y 4rem */
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    /* Evita que el texto se desborde */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 4;
    background: #000000;
    border-radius: 50%;
    box-shadow: 0 4px 5px rgba(0,0,0,0.2);
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-logo img {
    width: 95%;
    height: 95%;
    object-fit: contain;
}

@media (max-width: 991px) {
    .hero-section .overlay-content {
        left: 50%;
        text-align: center;
    }
}

/* =========================================================
 8️⃣ EFECTO STICKY
========================================================= */
.main-header.sticky-target.is-sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
}

.main-header.sticky-target.is-sticky .navbar {
    padding: 5px 0;
}

.main-header.sticky-target.is-sticky .logo {
    height: 50px;
}

#content {
    position: relative;
    z-index: 1;
}

/* =========================================================
 9️⃣ SIDEBAR MÓVIL
========================================================= */
/*.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 15px rgba(0,0,0,0.1);
    overflow-y: auto;
}*/

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    z-index: 10000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 15px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-menu-content {
    padding: 20px;
    position: relative;
}

/*.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 36px;
    color: #333;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.3s ease;
}*/

/*.close-btn:hover {
    color: #F48534;
}*/

.close-btn {
    position: fixed;
    top: 15px;
    right: auto;
    left: 240px; /* Ajustar según el ancho del sidebar (280px - 40px) */
    background: #F48534 !important;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    color: #fff !important;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: all 0.3s ease;
    z-index: 10002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.close-btn:hover {
    background: #28B5A4 !important;
    transform: rotate(90deg);
    color: #fff !important;
}

/* Cuando el sidebar no está activo, ocultar el botón */
.mobile-sidebar:not(.active) .close-btn {
    display: none;
}

.mobile-nav {
    margin-top: 50px;
}

.mobile-nav .navbar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav .navbar-nav > li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    color: #333 !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* ========================================
   🎨 ENLACES ACTIVOS - MÓVIL
======================================== */

/* Hover en enlaces móviles */
.mobile-nav .nav-link:hover {
    color: #F48534 !important;
}

/* 🟢 Enlaces activos en móvil SIN dropdown */
.mobile-sidebar .nav-item.active-link > .nav-link {
    color: #F48534 !important;
}

/* 🟢 Enlaces activos en móvil CON dropdown */
.mobile-sidebar .nav-item.dropdown-mobile.active-link > .nav-link.dropdown-toggle-mobile {
    color: #F48534 !important;
}

/* 🟢 Ícono del dropdown móvil cuando está activo */
.mobile-sidebar .nav-item.dropdown-mobile.active-link > .nav-link.dropdown-toggle-mobile i.fa-chevron-down {
    color: #F48534 !important;
}

.dropdown-mobile {
    position: relative;
}

.dropdown-toggle-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.dropdown-toggle-mobile i {
    font-size: 12px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.dropdown-mobile.active .dropdown-toggle-mobile i {
    transform: rotate(180deg);
}

.dropdown-menu-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background-color: #f8f8f8;
    transition: max-height 0.3s ease;
}

.dropdown-mobile.active .dropdown-menu-mobile {
    max-height: 300px;
}

.dropdown-menu-mobile li {
    border-bottom: 1px solid #e0e0e0;
}

.dropdown-menu-mobile li:last-child {
    border-bottom: none;
}

.dropdown-menu-mobile .dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #555 !important;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu-mobile .dropdown-item:hover {
    background-color: #F48534;
    color: #fff !important;
    padding-left: 25px;
}

/* ========================================
   🎨 SUBMENU ITEMS ACTIVOS - MÓVIL
======================================== */

/* Item de dropdown activo en móvil */
.dropdown-menu-mobile li.active-child .dropdown-item,
.mobile-sidebar .dropdown-menu-mobile li.active-child .dropdown-item {
    background-color: #F48534 !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.sidebar-languages {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.sidebar-languages .lang-link {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.sidebar-languages .lang-link:last-child {
    border-bottom: none;
}

.sidebar-languages .lang-link:hover {
    color: #F48534;
    padding-left: 15px;
}

.sidebar-languages .flag {
    width: 20px;
    margin-right: 10px;
}

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

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

/* =========================================================
 🔟 RESPONSIVE MEDIA QUERIES CONSOLIDADOS
========================================================= */

/* TABLET Y MÓVIL (< 992px) */
@media (max-width: 991px) {
    /* Header */
    .main-header-wrapper {
        position: relative;
    }

    .main-header {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .top-bar .container-fluid,
    .main-header .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Hero Section */
    .hero-section .overlay-content h1 {
        font-size: 2.5rem;
    }

    .hero-logo {
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }

    .hero-logo img {
        width: 40px;
        height: 40px;
    }

    /* Ocultar menú desktop */
    .navbar-collapse:not(.mobile-sidebar) {
        display: none !important;
    }

    /* Sidebar móvil */
    .mobile-sidebar {
        width: 85%;
        max-width: 320px;
    }
}

/* MÓVIL (< 768px) */
@media (max-width: 768px) {
    .search-box {
        right: -20px;
        min-width: 250px;
    }
}

/* DESKTOP (≥ 992px) */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
    }

    /* Ocultar sidebar en desktop */
    .mobile-sidebar,
    .sidebar-overlay {
        display: none !important;
    }

    /* Asegurar menú desktop visible */
    .navbar-collapse.d-none.d-lg-flex {
        display: flex !important;
    }
}

/* ======================================================= */
/* FOOTER SECTION */
/* ======================================================= */

.site-footer {
    background-color: #5A4B14;
    color: #f0f0f0;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    padding-top: 50px;
}

.site-footer .col-md-3 p {
    color: #ffffff !important;
}

.footer-wrap-main {
    padding-bottom: 20px;
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    color: #F8E7AD;
    margin-bottom: 25px;
    position: relative;
}

.widget-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #f47b20;
    margin-top: 8px;
}

.site-footer .list-unstyled li {
    margin-bottom: 10px;
}

.site-footer .list-unstyled i.fa {
    color: #f47b20;
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.site-footer .list-unstyled a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .list-unstyled a:hover {
    color: #f47b20;
}

.social-networks li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.social-networks li a {
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #796628;
    color: #ffffff;
    border-radius: 50%;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease;
}

.social-networks li a:hover {
    background: #f47b20;
    color: #ffffff;
}

.footer-b {
    background-color: #4A3E11;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    margin-top: 20px !important;
    border-top: 1px solid #796628 !important;
}

.site-info a {
    color: #f47b20;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-info a:hover {
    color: #ffffff;
}

.payments-showcase span {
    color: #f0f0f0;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff9447 0%, #ff7b29 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 148, 71, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #28B5A4 0%, #28B5A4 100%);
    box-shadow: 0 6px 20px rgba(255, 148, 71, 0.4);
}

.whatsapp-icon-link {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-icon-link:hover {
    transform: scale(1.1);
}

.whatsapp-icon-container {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-img-icon {
    width: 65%;
    height: 65%;
}

.scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
}

@media (min-width: 768px) {
    .site-footer .col-md-3.text-center {
        text-align: left !important;
        align-items: flex-start !important;
    }

    .site-footer .col-md-3.text-center .widget-title::after {
        margin-left: 0 !important;
        margin-right: auto !important;
    }
}


/* =========================================================
 ESTILOS ADICIONALES PARA MENÚ DE 3 NIVELES
 Agregar al final de tu archivo CSS existente
========================================================= */

/* ========================================
   🖥️ DESKTOP - TERCER NIVEL DE MENÚ
======================================== */

/* Contenedor del submenu nivel 2 con hijos */
.dropdown-submenu {
    position: relative;
}

/* Ícono de flecha para items con sub-submenú */
.dropdown-submenu.has-children > .dropdown-item {
    position: relative;
    padding-right: 35px !important;
}

.dropdown-submenu.has-children > .dropdown-item i.fa-chevron-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #333333;
    transition: color 0.3s ease;
}

.dropdown-submenu.has-children > .dropdown-item:hover i.fa-chevron-right {
    color: #ffffff;
}

/* Menú de tercer nivel */
.submenu-level-3 {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    opacity: 0;
    margin-left: 0 !important;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-10px);
}

.dropdown-submenu.show .submenu-level-3 {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* Items del tercer nivel mantienen el mismo estilo */
.submenu-level-3 .dropdown-item {
    font-family: "Baumans", sans-serif !important;
    color: #333333 !important;
    background-color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 12px 5px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
}

.submenu-level-3 .dropdown-item:last-child {
    border-bottom: none !important;
}

.submenu-level-3 .dropdown-item:hover,
.submenu-level-3 .dropdown-item:focus,
.submenu-level-3 .dropdown-item.active {
    background-color: #F48534 !important;
    color: #ffffff !important;
}

/* ========================================
   📱 MÓVIL - TERCER NIVEL DE MENÚ
======================================== */

/* Contenedor del submenu móvil nivel 2 */
.submenu-item {
    position: relative;
}

.submenu-item.has-submenu > .dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.submenu-item.has-submenu > .dropdown-item i.fa-chevron-down {
    font-size: 11px;
    margin-left: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.submenu-item.active > .dropdown-item i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Menú de tercer nivel móvil */
.dropdown-submenu-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background-color: #f0f0f0;
    transition: max-height 0.3s ease;
}

.submenu-item.active .dropdown-submenu-mobile {
    max-height: 400px;
}

.dropdown-submenu-mobile li {
    border-bottom: 1px solid #e0e0e0;
}

.dropdown-submenu-mobile li:last-child {
    border-bottom: none;
}

/* Items del tercer nivel móvil */
.dropdown-submenu-mobile .dropdown-subitem {
    display: block;
    padding: 12px 20px 12px 35px !important;
    color: #555 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #f0f0f0 !important;
}

.dropdown-submenu-mobile .dropdown-subitem:hover {
    background-color: #F48534 !important;
    color: #fff !important;
    padding-left: 40px !important;
}

/* Estado activo del tercer nivel móvil */
.dropdown-submenu-mobile li.active-grandchild .dropdown-subitem {
    background-color: #F48534 !important;
    color: #fff !important;
    font-weight: 600 !important;
}

/* ========================================
   🎨 ESTADOS ACTIVOS ADICIONALES
======================================== */

/* Item nivel 2 activo cuando su hijo (nivel 3) está activo */
.submenu-item.active-child > .dropdown-item {
    background-color: #F48534 !important;
    color: #fff !important;
}

/* Asegurar que los íconos cambien de color correctamente */
.dropdown-item:hover i,
.dropdown-item.active i {
    color: inherit !important;
}

/* ========================================
   📐 RESPONSIVE AJUSTES
======================================== */

@media (max-width: 991px) {
    /* En móvil, asegurar que los submenús se oculten correctamente */
    .dropdown-submenu-mobile {
        padding-left: 15px;
    }

    .submenu-item:not(.active) .dropdown-submenu-mobile {
        display: none;
    }
}

@media (min-width: 992px) {
    /* En desktop, asegurar que el tercer nivel se posicione correctamente */
    .dropdown-submenu {
        position: relative;
    }

    /* Ajustar posición si el menú se sale de la pantalla */
    .dropdown-submenu:last-child .submenu-level-3 {
        left: auto;
        right: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}


/* =========================================================
   SOLUCIÓN GLOBAL: PADRES RESALTADOS (ABOUT US Y SUBMENÚS)
   ========================================================= */

/* 1. NIVEL SUPERIOR: "About Us" se pone blanco cuando su menú está abierto */
.nav-item.dropdown:hover > .nav-link.dropdown-toggle {
    background-color: #F48534 !important; /* Fondo naranja */
    color: #ffffff !important;           /* Texto blanco */
}

/* 2. NIVEL SUBMENÚ: "Our Staff" se pone blanco cuando su submenú está abierto */
.dropdown-submenu:hover > .dropdown-item {
    background-color: #F48534 !important; /* Fondo naranja */
    color: #ffffff !important;           /* Texto blanco */
}

/* 3. ICONOS: Flechitas blancas cuando el padre está en hover */
.nav-item.dropdown:hover > .nav-link.dropdown-toggle i,
.dropdown-submenu:hover > .dropdown-item i {
    color: #ffffff !important;
}

/* 4. ESTADO ACTIVO (Sin Mouse): Naranja sobre fondo blanco */
/* Esto es para cuando ya estás en la página pero el mouse no está encima */
.nav-item.active-link > .nav-link,
.active-child > .dropdown-item,
.dropdown-item.active {
    color: #F48534 !important;
    background-color: transparent !important;
}

/* 5. RESET: Evitar que otros ítems se pongan blancos por error */
.nav-link, .dropdown-item {
    transition: all 0.2s ease;
}


/* =========================================================
   📱 ESTILOS ADICIONALES PARA MENÚ MÓVIL CON SEPARACIÓN
   (Agregar al final del archivo CSS)
========================================================= */

/* Wrapper para items con dropdown */
.mobile-nav-item-wrapper,
.mobile-submenu-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

/* Link principal (clickeable para navegar) */
.nav-link-mobile-main,
.dropdown-item-mobile-main {
    flex: 1;
    padding: 15px 10px;
    color: #333 !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-item-mobile-main {
    padding: 12px 20px;
    font-size: 15px;
}

.nav-link-mobile-main:hover,
.dropdown-item-mobile-main:hover {
    color: #F48534 !important;
}

/* Botón toggle (solo para expandir/colapsar) */
.mobile-dropdown-toggle,
.mobile-submenu-toggle {
    background: none;
    border: none;
    padding: 15px 15px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-submenu-toggle {
    padding: 12px 15px;
}

.mobile-dropdown-toggle:hover,
.mobile-submenu-toggle:hover {
    color: #F48534;
}

.mobile-dropdown-toggle i,
.mobile-submenu-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Rotar ícono cuando está activo */
.nav-item.dropdown-mobile.active .mobile-dropdown-toggle i,
.submenu-item.has-submenu.active .mobile-submenu-toggle i {
    transform: rotate(180deg);
}

/* Estados activos */
.mobile-sidebar .nav-item.active-link > .mobile-nav-item-wrapper .nav-link-mobile-main {
    color: #F48534 !important;
}

.mobile-sidebar .submenu-item.active-child > .mobile-submenu-item-wrapper .dropdown-item-mobile-main {
    color: #F48534 !important;
}

/* Ajustar el close button para que esté visible */
.mobile-sidebar .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 36px;
    color: #333;
    cursor: pointer;
    z-index: 10002;
    padding: 5px 10px;
    line-height: 1;
}

.mobile-sidebar .close-btn:hover {
    color: #F48534;
}

/* Asegurar z-index correcto para el sidebar */
.mobile-sidebar {
    z-index: 10000 !important;
}

.sidebar-overlay {
    z-index: 9999 !important;
}


/* =========================================================
   📱 HOVER PARA ITEMS CON SUBMENÚS EN MÓVIL (VERSIÓN LIMPIA)
========================================================= */

/* ✅ FONDO BASE: Todos los items del segundo nivel tienen fondo gris claro */
.dropdown-menu-mobile {
    background-color: #f8f8f8;
}

.dropdown-menu-mobile li {
    background-color: #f8f8f8;
}

.dropdown-menu-mobile .dropdown-item {
    background-color: #f8f8f8 !important;
    color: #555 !important;
    padding: 12px 20px;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

/* Items con submenu (Our Team, Our Staff) */
.mobile-submenu-item-wrapper {
    background-color: #f8f8f8 !important;
    border-bottom: 1px solid #e0e0e0;
}

.dropdown-item-mobile-main {
    color: #555 !important;
}

.mobile-submenu-toggle {
    color: #666 !important;
}

/* ✅ HOVER: Fondo naranja con texto BLANCO */
.dropdown-menu-mobile .dropdown-item:hover {
    background-color: #F48534 !important;
    color: #ffffff !important;
    padding-left: 25px !important;
}

.mobile-submenu-item-wrapper:hover {
    background-color: #F48534 !important;
}

.mobile-submenu-item-wrapper:hover .dropdown-item-mobile-main {
    color: #ffffff !important;
}

.mobile-submenu-item-wrapper:hover .mobile-submenu-toggle {
    color: #ffffff !important;
}

.mobile-submenu-item-wrapper:hover .mobile-submenu-toggle i {
    color: #ffffff !important;
}

/* ✅ ESTADO ACTIVO (cuando está expandido) - SIN cambiar fondo */
.submenu-item.has-submenu.active > .mobile-submenu-item-wrapper {
    background-color: #f8f8f8 !important;
}

.submenu-item.has-submenu.active > .mobile-submenu-item-wrapper .dropdown-item-mobile-main {
    color: #F48534 !important;
}

.submenu-item.has-submenu.active > .mobile-submenu-item-wrapper .mobile-submenu-toggle i {
    color: #F48534 !important;
}

/* ✅ HOVER en items del tercer nivel */
.dropdown-submenu-mobile .dropdown-subitem {
    background-color: #f0f0f0 !important;
    color: #555 !important;
    padding: 12px 20px 12px 35px !important;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.dropdown-submenu-mobile .dropdown-subitem:hover {
    background-color: #F48534 !important;
    color: #ffffff !important;
    padding-left: 40px !important;
}

/* ✅ HOVER en items del nivel 1 (Other Tours, About Us) */
.mobile-nav-item-wrapper:hover .nav-link-mobile-main {
    color: #F48534 !important;
}

.mobile-nav-item-wrapper:hover .mobile-dropdown-toggle {
    color: #F48534 !important;
}

/* Limpiar cualquier conflicto */
.submenu-item.has-submenu {
    background-color: transparent;
}

.dropdown-menu-mobile .submenu-item {
    background-color: transparent;
}

/* ✅ RESET FORZADO para eliminar conflictos */
.mobile-submenu-item-wrapper,
.dropdown-menu-mobile .dropdown-item,
.dropdown-menu-mobile li {
    background-color: #f8f8f8 !important;
}

.mobile-submenu-item-wrapper:hover,
.dropdown-menu-mobile .dropdown-item:hover {
    background-color: #F48534 !important;
}

.mobile-submenu-item-wrapper:hover * {
    color: #ffffff !important;
}

.dropdown-menu-mobile .dropdown-item:hover {
    color: #ffffff !important;
}