@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");@font-face {
    font-family: "Futura Condensed Extra Bold";
    src: local("Futura Condensed Extra Bold"),url(//waldi-viagens.local/wp-content/themes/BC%20TravelPress/assets/css/assets/fonts/FuturaCondensedExtraBold.ttf) format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Arial Rounded MT Bold";
    src: local("Arial Rounded MT Bold"),url(//waldi-viagens.local/wp-content/themes/BC%20TravelPress/assets/css/assets/fonts/ArialRoundedMTBold.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

:root {
    --font-main: "Josefin Sans",sans-serif;
    --color-green: #007c00;
    --color-sky-blue: #3fa7e8;
    --color-navy: #253c78;
    --color-red-orange: #ff3111;
    --color-white: #fff;
    --color-primary: var(--color-navy);
    --color-secondary: var(--color-red-orange);
    --color-accent: var(--color-sky-blue);
    --color-nature: var(--color-green);
    --color-bg-light: #f4f7f9;
    --color-text-main: #253c78;
    --color-text-light: #5a6b8c;
    --font-main: "Arial Rounded MT Bold","Arial Rounded",Arial,sans-serif;
    --container-width: 1200px;
    --border-radius: 12px;
    --shadow-soft: 0 10px 30px rgba(78,89,140,.1);
    --transition: all .3s ease-in-out
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-white);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-main);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px
}

h1 {
    font-size: 3.5rem
}

h2 {
    font-size: 2.5rem
}

h3 {
    font-size: 1.75rem
}

h4 {
    font-size: 1.25rem
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition)
}

a:hover {
    color: var(--color-secondary)
}

p {
    margin-bottom: 1.5rem;
    font-weight: 400
}

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

ul,ol {
    list-style: none
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px
}

.section-padding {
    padding: 80px 0
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.text-white {
    color: var(--color-white)
}

.text-primary {
    color: var(--color-primary)
}

.text-secondary {
    color: var(--color-secondary)
}

.d-flex {
    display: flex
}

.flex-column {
    flex-direction: column
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.align-center {
    align-items: center
}

.gap-20 {
    gap: 20px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    font-family: var(--font-main);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: .9rem
}

.button-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255,140,66,.4)
}

.button-primary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px)
}

.button-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary)
}

.button-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white)
}

.button-gradient {
    background: linear-gradient(135deg,var(--color-sandy) 0%,var(--color-pumpkin) 100%);
    color: var(--color-white)
}

input[type=text],input[type=email],input[type=tel],input[type=date],textarea,select {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    background-color: #fcfcfc;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    color: var(--color-text-main)
}

input:focus,textarea:focus,select:focus {
    outline: none;
    border-color: var(--color-secondary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(255,140,66,.1)
}

::placeholder {
    color: #aaa;
    opacity: 1
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid rgba(255,255,255,.15);
    transition: background-color .4s ease,padding .4s ease,box-shadow .4s ease
}

.site-header a,.site-header span,.site-header i {
    color: #ffffff;
}

.top-bar {
    height: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .5px
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: .9;
    transition: .2s
}

.contact-item:hover {
    opacity: 1;
    color: var(--color-secondary)
}

.sep {
    opacity: .3
}

.social-top-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgb(255 49 17);
    border: 1px dashed #ccc;
    color: #fff !important;
    padding: 3px 16px;
    border-radius: 50px
}

.social-top-icons span {
    opacity: .8
}

.social-top-icons a {
    font-size: .9rem;
    opacity: .9;
    transition: .2s
}

.social-top-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: var(--color-secondary)
}

.lang-switcher-box {
    display: flex;
    align-items: center;
    gap: 8px
}

.lang-label {
    font-size: .75rem;
    opacity: .8;
    text-transform: uppercase;
    font-weight: 700
}

.gtranslate-wrapper {
    display: flex;
    align-items: center;
    justify-content: left;
}

.gtranslate-wrapper img {
    opacity: .8;
    transition: .3s;
    margin: 0 3px !important;
    cursor: pointer;
    width: auto !important;
    height: auto !important
}

.gtranslate-wrapper img:hover {
    opacity: 1;
    transform: scale(1.1)
}

.main-header {
    height: 110px;
    display: flex;
    align-items: center;
    transition: height .4s ease
}

.main-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.site-logo img {
    max-height: 100px;
    width: auto;
    transition: .3s
}

.text-logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px
}

.desktop-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center
}

.main-menu {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none
}

.main-menu>li {
    position: relative;
    padding: 25px 0
}

.main-menu>li>a {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 5px 0;
    position: relative;
    transition: color .3s;
    display: flex;
    align-items: center;
    gap: 6px
}

.main-menu>li>a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width .3s cubic-bezier(.25,.8,.25,1)
}

.main-menu>li:hover>a:before {
    width: 100%
}

.main-menu>li.menu-item-has-children>a:after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: .65rem;
    opacity: .7;
    transition: transform .3s ease,color .3s ease;
    margin-top: 1px
}

.main-menu>li.menu-item-has-children:hover>a:after {
    transform: rotate(180deg);
    color: var(--color-secondary);
    opacity: 1
}

.main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: #fff;
    min-width: 240px;
    width: max-content;
    max-width: 280px;
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
    border-top: 3px solid var(--color-secondary);
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s cubic-bezier(.25,.8,.25,1);
    z-index: 1100;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary) #f0f0f0
}

.main-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.main-menu .sub-menu a {
    font-family: var(--font-body);
    color: var(--color-text-main) !important;
    display: block;
    padding: 12px 25px;
    font-size: .95rem;
    font-weight: 700;
    text-transform: capitalize;
    border-bottom: 1px solid #f9f9f9;
    transition: all .2s ease;
    white-space: normal
}

.main-menu .sub-menu a:last-child {
    border-bottom: none
}

.main-menu .sub-menu a:hover {
    background-color: #fafafa;
    color: var(--color-secondary) !important;
    padding-left: 30px
}

.main-menu .sub-menu a:before,.main-menu .sub-menu a:after {
    display: none
}

@media (min-width: 992px) {
    .main-menu>li:has(.sub-menu>li:nth-child(8)) .sub-menu {
        display:grid;
        grid-template-columns: 1fr 1fr;
        max-width: 500px;
        padding: 15px 0
    }

    .main-menu>li:has(.sub-menu>li:nth-child(16)) .sub-menu {
        grid-template-columns: 1fr 1fr 1fr;
        max-width: 750px
    }

    .main-menu>li:has(.sub-menu>li:nth-child(8)) .sub-menu li {
        border-right: 1px solid #f9f9f9;
        display: flex;
        align-items: stretch
    }

    .main-menu>li:has(.sub-menu>li:nth-child(8)) .sub-menu a {
        width: 100%;
        display: flex;
        align-items: center
    }
}

.main-menu>li.cols-2 .sub-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 500px
}

.main-menu>li.cols-3 .sub-menu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 750px
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px
}

.btn-book-header {
    padding: 8px 20px;
    font-size: .75rem;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: none;
    background-color: var(--color-green);
    border: none;
    transition: .3s;
    line-height: 1;
    height: auto;
    align-self: center
}

.btn-book-header:hover {
    background-color: var(--color-white);
    color: var(--color-secondary) !important;
    transform: translateY(-2px)
}

body.header-scrolled .site-header {
    background-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    border-bottom: none
}

body.header-scrolled .main-header {
    height: 100px
}

body.header-scrolled .site-logo img {
    max-height: 90px
}

.top-gallery-btn {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: rgb(245 236 12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.3);
    color: #ffffff !important;
    text-shadow: 1px 1px 5px rgb(0 0 0 / 78%);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 20px;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,.1)
}

.top-gallery-btn:hover {
    transform: translateY(-2px);
    background: rgb(255 255 255);
    border-color: rgba(255,255,255,.5);
    color: #000 !important
}

.top-gallery-btn i {
    font-size: 13px
}

.sidebar-info a.mobile-gallery-link {
    color: #fff;
    background: var(--color-primary);
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,.1)
}

.sidebar-info a i {
    margin-right: 8px;
    width: 20px;
    text-align: center
}

.header-mobile,.mobile-sidebar,.mobile-sidebar-overlay {
    display: none !important
}

@media (max-width: 991px) {
    .header-desktop {
        display:none !important
    }

    .header-mobile {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100px;
        z-index: 1000;
        background-color: var(--color-primary);
        box-shadow: 0 4px 15px rgba(0,0,0,.1);
        align-items: center;
        border-bottom: 1px solid rgba(255,255,255,.1)
    }

    .header-mobile .main-header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 20px
    }

    .header-mobile .site-logo img {
        max-height: 70px;
        width: auto
    }

    .header-mobile .text-logo {
        font-size: 1.2rem;
        color: #fff;
        font-weight: 800
    }

    .mobile-actions {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .btn-book-mobile {
        padding: 6px 16px;
        font-size: .75rem;
        border-radius: 50px;
        background-color: var(--color-secondary);
        color: #fff;
        text-transform: uppercase;
        font-weight: 700;
        border: none;
        box-shadow: 0 4px 10px rgba(0,0,0,.2)
    }

    .mobile-toggle {
        background: 0 0;
        border: none;
        font-size: 1.6rem;
        color: #fff;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center
    }

    .mobile-sidebar {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100%;
        background-color: #fff;
        z-index: 2000;
        transition: transform .4s cubic-bezier(.77,0,.175,1);
        box-shadow: -10px 0 30px rgba(0,0,0,.15)
    }

    .mobile-sidebar.active {
        transform: translateX(-320px)
    }

    .sidebar-header {
        background-color: var(--color-primary);
        color: #fff;
        padding: 20px;
        height: 70px;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .sidebar-title {
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 1.1rem
    }

    .close-sidebar {
        background: 0 0;
        border: none;
        color: #fff;
        font-size: 1.4rem;
        cursor: pointer;
        transition: .3s
    }

    .close-sidebar:hover {
        transform: rotate(90deg) scale(1.1);
        color: var(--color-secondary)
    }

    .sidebar-content {
        padding: 0;
        overflow-y: auto;
        flex-grow: 1;
        scrollbar-width: thin;
        scrollbar-color: #ddd transparent
    }

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

    .mobile-menu-list>li {
        border-bottom: 1px solid #f0f0f0;
        position: relative
    }

    .mobile-menu-list>li>a {
        display: block;
        padding: 16px 20px;
        color: var(--color-text-main);
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        transition: .2s
    }

    .mobile-menu-list>li>a:hover,.mobile-menu-list>li.current-menu-item>a {
        color: var(--color-primary);
        background-color: #fcfcfc;
        padding-left: 25px
    }

    .mobile-menu-list .sub-menu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
        background-color: #f9f9f9;
        box-shadow: inset 0 4px 8px rgba(0,0,0,.03)
    }

    .mobile-menu-list .sub-menu li a {
        padding: 12px 20px 12px 35px;
        font-size: .9rem;
        font-weight: 500;
        color: #666;
        border-bottom: 1px solid #f0f0f0
    }

    .mobile-menu-list .sub-menu li a:hover {
        color: var(--color-secondary);
        background-color: #fff
    }

    .submenu-toggle {
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 53px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #999;
        border-left: 1px solid #f5f5f5;
        transition: .3s
    }

    .submenu-toggle i {
        transition: transform .3s ease
    }

    .mobile-menu-list>li.submenu-open>.submenu-toggle {
        background-color: var(--color-primary);
        color: #fff
    }

    .mobile-menu-list>li.submenu-open>.submenu-toggle i {
        transform: rotate(180deg)
    }

    .sidebar-info {
        padding: 25px 20px;
        background: #fff
    }

    .sidebar-info p {
        margin-bottom: 12px;
        font-size: .9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px
    }

    .sidebar-info i {
        color: var(--color-secondary);
        width: 20px;
        text-align: center
    }

    .sidebar-info a {
        color: var(--color-text-light)
    }
.sidebar-socials a:nth-child(1) { background: #1877f2; } /* Facebook */
.sidebar-socials a:nth-child(2) { 
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4); 
} /* Instagram */
.sidebar-socials a:nth-child(3) { 
    background: linear-gradient(45deg, #000, #20c7c2, #FE2C55); 
} /* TikTok */
.sidebar-socials a:nth-child(4) { background: #ff0000; } /* YouTube */

/* hover */
.sidebar-socials a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
    .sidebar-socials {
        display: flex;
        gap: 5px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        justify-content: left;
        padding-left: 20px;
    }

    .sidebar-socials a {
        width: 40px;
        height: 40px;
        background: #f5f5f5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: .3s
    }

    .sidebar-socials a:hover {
        background: var(--color-secondary);
        color: #fff;
        transform: translateY(-3px)
    }

    .sidebar-lang {
        padding: 15px 20px 30px;
        text-align: left;
    }

    .sidebar-lang .small-title {
        display: block;
        font-weight: 700;
        margin-bottom: 10px;
        font-size: .8rem;
        color: #999;
        text-transform: uppercase
    }

    .mobile-sidebar-overlay {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.6);
        backdrop-filter: blur(3px);
        z-index: 1999;
        opacity: 0;
        visibility: hidden;
        transition: .3s
    }

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

    body {
        padding-top: 60px
    }

    body.home {
        padding-top: 0
    }
}

.site-footer {
    background-color: var(--color-primary);
    color: rgba(255,255,255,.8);
    position: relative;
    font-size: .95rem;
    overflow: hidden
}

.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(//waldi-viagens.local/wp-content/themes/BC%20TravelPress/assets/css/../img/footer-bg-texture.webp);
    background-size: cover;
    background-position: center;
    opacity: .05;
    pointer-events: none
}

.footer-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 60px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr 1.2fr;
    gap: 40px
}

.col-brand .brand-box {
    background-color: var(--wp--preset--color--light-green-cyan);
    color: var(--color-text-main);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    position: relative;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.footer-logo {
    border: 2px solid var(--color-text-main);
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 20px;
    max-width: 150px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    color: var(--color-text-main)
}

.brand-desc {
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500
}

.footer-socials {
    display: flex;
    gap: 10px
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition)
}

.footer-socials a:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-3px)
}

.footer-title {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-menu li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px
}

.footer-menu li:before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700
}

.footer-menu a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: .95rem
}

.footer-menu a:hover {
    color: var(--color-secondary);
    padding-left: 5px
}

.contact-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px
}

.contact-row .icon-wrap {
    font-size: 1.4rem;
    color: var(--color-secondary);
    margin-top: -2px
}

.contact-row .info-wrap {
    display: flex;
    flex-direction: column
}

.contact-row .label {
    font-size: .7rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: .5px
}

.contact-row .value {
    color: var(--color-white);
    font-size: .95rem;
    line-height: 1.4
}

.contact-row a.value:hover {
    color: var(--color-secondary)
}

.copyright-bar {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 25px 0;
    text-align: center;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    background-color: rgba(0,0,0,.1)
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns:1fr 1fr;
        gap: 30px
    }

    .dev-credit {
        width: 100%
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns:1fr;
        gap: 40px
    }

    .footer-content {
        padding-top: 40px
    }

    .col-brand .brand-box {
        text-align: center;
        padding: 30px 20px
    }

    .footer-socials {
        justify-content: center
    }
}

.hero-section {
    position: relative;
    height: 126vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom,rgba(17,24,30,.2) 0%,rgba(17,24,30,.4) 50%,rgba(17,24,30,.75) 100%)
}

.hero-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.hero-content {
    max-width: 900px;
    color: var(--color-white);
    animation: heroFadeInUp 1s cubic-bezier(.25,.8,.25,1) forwards;
    opacity: 0;
    transform: translateY(30px)
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: var(--font-main);
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-secondary);
    margin-bottom: 20px
}

.hero-tagline .line {
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
    display: inline-block
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--color-white);
    text-shadow: 0 10px 30px rgba(0,0,0,.3)
}

.hero-title .highlight {
    color: var(--color-accent);
    /* border: 1px #fff; */
    text-shadow: 1px 1px 2px black, 0 0 25px #03a9f4d6, 0 0 5px #00bcd4a6;
    font-weight: 300
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 45px;
    color: rgba(255,255,255,.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px
}

.hero-btn {
    padding: 16px 45px;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(255,140,66,.3)
}

.hero-btn-outline {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    padding: 16px 45px;
    background: #f5ec0c;
    text-shadow: 2px 2px 4px #000000;
}

.hero-btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white)
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block
}

@keyframes heroFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size:3.5rem
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment:scroll
    }

    .hero-tagline {
        font-size: .8rem;
        letter-spacing: 2px
    }

    .hero-title {
        font-size: 2.8rem
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px
    }

    .hero-btn,.hero-btn-outline {
        width: 100%;
        max-width: 100%
    }

    .hero-bg{
        background-position:90% center!important;
    }

    
}

.hero-section {
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    z-index: 0
}

.animate-zoom {
    animation: zoomEffect 25s linear infinite alternate;
    will-change: transform
}

@keyframes zoomEffect {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.1)
    }
}

.value-section {
    background-color: #5ff15f;
    position: relative;
    z-index: 10;
    overflow: hidden
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s cubic-bezier(.5,0,0,1)
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.value-card-premium {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
    border-bottom: 4px solid transparent;
    box-shadow: 0 10px 30px rgba(37,60,120,.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 1
}

.card-bg-icon {
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 8rem;
    color: var(--color-primary);
    opacity: .03;
    transition: all .4s ease;
    transform: rotate(-15deg);
    z-index: -1
}

.value-card-premium .icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(63,167,232,.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    transition: all .4s ease
}

.value-card-premium h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--color-primary);
    font-family: var(--font-heading);
    transition: color .3s
}

.value-card-premium p {
    font-size: .95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color .3s
}

.hover-indicator {
    margin-top: auto;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: .9rem;
    transition: all .3s
}

.value-card-premium:hover {
    transform: translateY(-10px);
    background: var(--color-primary);
    border-bottom-color: var(--color-secondary);
    box-shadow: 0 20px 50px rgba(37,60,120,.3)
}

.value-card-premium:hover .card-bg-icon {
    opacity: .1;
    transform: rotate(0deg) scale(1.1);
    color: #fff
}

.value-card-premium:hover .icon-box {
    background-color: var(--color-secondary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0,0,0,.2)
}

.value-card-premium:hover h3,.value-card-premium:hover p {
    color: #fff
}

.value-card-premium:hover .hover-indicator {
    background: #fff;
    color: var(--color-secondary);
    transform: translateX(10px)
}

.value-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: #fff;
    transform: rotate(-2deg) scale(1.05);
    margin-top: 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05)
}

.marquee-label {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: var(--color-secondary);
    color: #fff;
    padding: 5px 20px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 800;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,.2)
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 40s linear infinite
}

.marquee-content {
    display: flex;
    gap: 15px;
    padding-right: 15px
}

.marquee-content img {
    height: 180px;
    width: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: all .4s ease;
    cursor: pointer
}

.marquee-track:hover {
    animation-play-state: paused
}

.marquee-content img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    z-index: 2
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@media (max-width: 991px) {
    .value-card-premium {
        text-align:center;
        align-items: center
    }

    .hover-indicator {
        display: none
    }

    .value-marquee-wrapper {
        transform: rotate(0deg);
        margin-top: 50px;
        background: var(--color-sky-blue);
    }

    .marquee-content img {
        height: 120px;
        width: 200px
    }
}

.view-mobile {
    display: none
}

@media (max-width: 767px) {
    .view-desktop-tablet {
        display:none !important
    }

    .view-mobile {
        display: block !important;
        padding: 20px 5px;
    }
}

.tour-types-accordion {
    position: relative;
    height: 700px;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-primary)
}

.tour-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.tour-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .8s ease-in-out,transform 6s ease;
    transform: scale(1);
    z-index: 1
}

.tour-bg-layer.active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2
}

.tour-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,rgba(17,24,30,.6) 0%,rgba(17,24,30,.4) 50%,rgba(17,24,30,.9) 100%);
    z-index: 3;
    pointer-events: none
}

.tour-header-container {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none
}

.tour-section-header {
    text-align: center
}

.tour-subtitle {
    display: block;
    font-family: var(--font-main);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-secondary);
    margin-bottom: 10px
}

.tour-title {
    font-size: 2.5rem;
    color: var(--color-white);
    font-weight: 800;
    margin-bottom: 15px
}

.tour-line {
    width: 50px;
    height: 3px;
    background-color: var(--color-white);
    margin: 0 auto;
    opacity: .6
}

.tour-types-container {
    position: relative;
    z-index: 5;
    display: flex;
    height: 100%;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 120px
}

.tour-type-col {
    flex: 1;
    height: 100%;
    border-right: 1px solid rgba(255,255,255,.1);
    position: relative;
    transition: all .5s cubic-bezier(.25,1,.5,1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 30px 60px;
    background: 0 0
}

.tour-type-col:first-child {
    border-left: 1px solid rgba(255,255,255,.1)
}

.tour-type-col:hover,.tour-type-col.active {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(2px);
    flex-grow: 1.5
}

.col-inner {
    position: relative;
    transition: transform .4s ease
}

.tour-type-col:hover .col-inner,.tour-type-col.active .col-inner {
    transform: translateY(-20px)
}

.col-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255,255,255,.3);
    margin-bottom: 10px;
    font-family: var(--font-main)
}

.tour-type-col.active .col-num {
    color: var(--color-secondary);
    opacity: 1
}

.col-title {
    font-size: 1.5rem;
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 1px;
    transform-origin: left;
    transition: transform .4s
}

.tour-type-col.active .col-title {
    transform: scale(1.1)
}

.col-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .5s ease;
    transform: translateY(10px)
}

.tour-type-col.active .col-content {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 15px
}

.col-desc {
    color: rgba(255,255,255,.85);
    font-size: .95rem;
    line-height: 1.6
}

.col-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: 1px
}

.col-link:hover {
    color: var(--color-white)
}

@media (min-width: 768px) and (max-width:991px) {
    .tour-types-accordion {
        height:550px
    }

    .tour-types-container {
        padding-top: 100px
    }

    .tour-title {
        font-size: 2rem
    }

    .col-title {
        font-size: 1.2rem
    }

    .tour-type-col {
        padding: 0 20px 40px
    }

    .col-desc {
        font-size: .85rem
    }
}

@media (max-width: 767px) {
    .tour-types-section-wrapper {
        background-color:#f8f9fa
    }

    .full-height-slider .splide__track {
        height: 70vh;
        min-height: 500px
    }

    .mobile-tour-slide {
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: flex-end;
        height: 100%
    }

    .mobile-slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom,rgba(0,0,0,.1) 0%,rgba(0,0,0,.8) 100%);
        z-index: 1
    }

    .mobile-slide-content {
        position: relative;
        z-index: 2;
        padding-bottom: 50px;
        text-align: center;
        color: #fff
    }

    .mobile-slide-title {
        font-size: 2rem;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 15px;
        text-shadow: 0 2px 10px rgba(0,0,0,.5);
        color: var(--color-white)
    }

    .mobile-slide-desc {
        font-size: 1rem;
        opacity: .9;
        margin-bottom: 25px;
        padding: 0 20px
    }

    .splide__pagination {
        bottom: 20px
    }

    .splide__pagination__page.is-active {
        background: var(--color-secondary);
        transform: scale(1.3)
    }
}

.tours-section {
    background-color: var(--color-bg-light)
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.section-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
    margin: 0 auto 30px
}

.section-title .highlight {
    color: var(--color-secondary)
}

.tour-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,.03);
    height: 100%;
    display: flex;
    flex-direction: column
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(78,89,140,.15)
}

.tour-card-header {
    position: relative;
    height: 220px;
    overflow: hidden
}

.tour-img-link {
    display: block;
    width: 100%;
    height: 100%
}

.tour-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.tour-card:hover .tour-img-link img {
    transform: scale(1.1)
}

.tour-badge-dest {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    backdrop-filter: blur(4px)
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s
}

.wishlist-btn:hover {
    color: #e74c3c;
    transform: scale(1.1)
}

.tour-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    margin-bottom: 10px
}

.star-filled {
    color: var(--color-secondary)
}

.star-empty {
    color: #ddd
}

.rating-num {
    font-weight: 700;
    color: var(--color-text-main);
    margin-left: 5px
}

.tour-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4
}

.tour-title a {
    color: var(--color-primary);
    transition: .2s
}

.tour-title a:hover {
    color: var(--color-secondary)
}

.tour-meta {
    font-size: .85rem;
    color: var(--color-text-light);
    display: flex;
    gap: 15px;
    margin-bottom: 15px
}

.tour-divider {
    height: 1px;
    background: #eee;
    margin-bottom: 15px;
    margin-top: auto
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.tour-price {
    display: flex;
    flex-direction: column
}

.tour-price .label {
    font-size: .7rem;
    color: #999;
    text-transform: uppercase
}

.tour-price .amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary)
}

.button-link {
    font-size: .85rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: .5px
}

.button-link i {
    transition: transform .2s
}

.button-link:hover i {
    transform: translateX(4px)
}

.tours-action-wrapper {
    text-align: center;
    margin-top: 50px
}

.no-tours-msg {
    text-align: center;
    color: var(--color-text-light)
}

@media (min-width: 992px) {
    .tours-grid {
        display:grid !important;
        grid-template-columns: repeat(4,1fr);
        gap: 30px
    }

    .tours-grid-wrapper .splide__pagination {
        display: none
    }
}

@media (max-width: 1199px) and (min-width:992px) {
    .tours-grid {
        grid-template-columns:repeat(3,1fr)
    }
}

@media (max-width: 991px) {
    .tour-card {
        margin-bottom:10px
    }

    .splide__pagination {
        bottom: -30px
    }
}

.process-section {
    background: linear-gradient(180deg,#0b1015 0%,var(--color-green) 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
    z-index: 1
}

.process-bg-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle,rgba(63,167,232,.15) 0%,transparent 70%);
    z-index: -1;
    pointer-events: none
}

.process-section .section-subtitle {
    color: var(--color-accent);
    font-weight: 800;
    letter-spacing: 2px
}

.process-section .section-title {
    color: #fff;
    font-size: 2.5rem
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 80px;
    position: relative
}

.process-line-track {
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 4px;
    background: rgba(255,255,255,.1);
    z-index: 0;
    border-radius: 4px;
    overflow: hidden
}

.process-line-track:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent 0%,var(--color-secondary) 50%,transparent 100%);
    background-size: 200% 100%;
    animation: flowLine 3s linear infinite;
    opacity: .8
}

@keyframes flowLine {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

.process-step {
    position: relative;
    z-index: 2
}

.step-card {
    padding: 30px 20px;
    border-radius: 20px;
    transition: all .4s ease;
    background: 0 0;
    border: 1px solid transparent;
    text-align: center
}

.step-card:hover {
    background: rgba(255,255,255,.03);
    border-color: rgba(255,255,255,.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.2)
}

.step-icon-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center
}

.step-icon {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    transition: all .4s cubic-bezier(.68,-.55,.27,1.55);
    box-shadow: 0 10px 30px rgba(0,0,0,.3)
}

.step-card:hover .step-icon {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px rgba(255,49,17,.5)
}

.step-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    border: 4px solid #0b1015;
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
    z-index: 3
}

.step-badge-pulse {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--color-accent);
    z-index: 2;
    animation: pulseBadge 2s infinite
}

@keyframes pulseBadge {
    0% {
        transform: scale(1);
        opacity: .7
    }

    100% {
        transform: scale(2);
        opacity: 0
    }
}

.step-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-family: var(--font-heading);
    transition: color .3s
}

.step-card:hover .step-title {
    color: var(--color-secondary)
}

.step-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin: 0;
    transition: color .3s
}

.step-card:hover .step-desc {
    color: rgba(255,255,255,.95)
}

.process-action-wrapper {
    margin-top: 60px;
    text-align: center
}

.button.glow-effect {
    position: relative;
    overflow: hidden;
    padding-left: 40px;
    padding-right: 40px
}

.button.glow-effect:after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.4),transparent);
    transform: skewX(-25deg);
    animation: shineBtn 3s infinite
}

@keyframes shineBtn {
    0% {
        left: -100%
    }

    20% {
        left: 200%
    }

    100% {
        left: 200%
    }
}

@media (max-width: 991px) {
    .process-grid {
        grid-template-columns:1fr;
        gap: 50px
    }

    .process-line-track {
        display: none
    }

    .process-grid:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        background: linear-gradient(to bottom,transparent,rgba(255,255,255,.2),transparent);
        transform: translateX(-50%);
        z-index: 0
    }

    .step-card {
        background: rgba(255,255,255,.02);
        border: 1px solid rgba(255,255,255,.05)
    }
}

.gallery-section {
    background-color: var(--color-white)
}

.gallery-header {
    margin-bottom: 50px;
    text-align: center
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 350px;
    background-color: #f0f0f0;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,.05)
}

.gallery-link {
    display: block;
    width: 100%;
    height: 100%
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
    display: block
}

.gallery-item:hover img {
    transform: scale(1.1)
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,rgba(0,0,0,.8) 0%,rgba(0,0,0,.2) 50%,rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity .4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    z-index: 2
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform .4s ease
}

.gallery-item:hover .overlay-content {
    transform: translateY(0)
}

.gallery-icon {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    backdrop-filter: blur(4px);
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,.4);
    transition: background .3s
}

.gallery-icon:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary)
}

.gallery-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0
}

.gallery-footer-action {
    display: flex;
    flex-direction: column;
    align-items: center;   /* centra horizontal */
    justify-content: center;
    margin-top: 50px;
    text-align: center;
}
.instagram-btn {
    align-items: center;
    gap: 8px;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* contenedor */
.social-buttons {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

/* base */
.button-gallery {
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.tiktok-btn {
    background: linear-gradient(45deg, #000000, #22d6d0, #FE2C55);
}
.facebook-btn {
    background: #1877f2;
}

.youtube-btn {
    background: #ff0000;
}

.button-gallery:hover {
    transform: translateY(-2px);
    color:#fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
    .social-buttons {
        flex-direction: column;
        width: 100%;
    }
    .gallery-footer-action {
        /* max-width: 200px; */
        flex-direction: row;
        gap: 10px;
    }
    .button-gallery {
        width: 100%;
        /* display: flex; */
        /* justify-content: center; */
        /* max-width: 200px; */
        /* align-items: center; */
        /* text-align: center; */
    }
}
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns:repeat(2,1fr);
        gap: 20px
    }

    .gallery-item {
        height: 280px
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns:1fr;
        gap: 20px
    }

    .gallery-item {
        height: 300px
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top,rgba(0,0,0,.7) 0%,transparent 60%);
        align-items: flex-end;
        justify-content: flex-start;
        padding: 20px
    }

    .overlay-content {
        transform: translateY(0);
        text-align: left
    }

    .gallery-icon {
        display: none
    }

    .gallery-title {
        font-size: 1rem
    }
}

.blog-section {
    background-color: var(--color-bg-light)
}

.blog-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.03);
    border: 1px solid rgba(0,0,0,.02);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(78,89,140,.1)
}

.blog-card-header {
    position: relative;
    height: 220px;
    overflow: hidden
}

.blog-img-link {
    display: block;
    width: 100%;
    height: 100%
}

.blog-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.blog-card:hover .blog-img-link img {
    transform: scale(1.1)
}

.blog-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-white);
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    line-height: 1;
    min-width: 50px;
    z-index: 2
}

.blog-date-badge .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-primary)
}

.blog-date-badge .month {
    display: block;
    font-size: .7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-secondary);
    margin-top: 2px
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.blog-meta {
    font-size: .75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    gap: 15px
}

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

.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px
}

.blog-title a {
    color: var(--color-text-main);
    transition: .2s
}

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

.blog-excerpt {
    font-size: .9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 20px
}

.read-more-link {
    margin-top: auto;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .2s
}

.read-more-link:hover {
    color: var(--color-secondary);
    gap: 12px
}

.splide__list {
    display: flex !important;
    flex-wrap: nowrap !important;
    padding: 0;
    margin: 0;
    list-style: none
}

.splide__track {
    overflow: hidden !important;
    width: 100%
}

@media (max-width: 991px) {
    .splide__slide {
        width:100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important
    }

    .splide__track {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .blog-card {
        width: 100%;
        margin-bottom: 20px
    }
}

.splide {
    padding-bottom: 40px
}

.splide__pagination {
    bottom: 0 !important;
    width: 100%;
    justify-content: center;
    display: flex !important;
    z-index: 10
}

.splide__pagination__page {
    background: #d0d0d0 !important;
    border: none;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    opacity: 1 !important;
    transition: all .3s ease
}

.splide__pagination__page.is-active {
    background: var(--color-secondary) !important;
    transform: scale(1.4)
}

@media (min-width: 992px) {
    #tours-splide .splide__list,#value-slider .splide__list {
        display:grid !important;
        flex-wrap: wrap !important;
        grid-template-columns: repeat(4,1fr);
        gap: 30px
    }

    #tours-splide .splide__pagination,#value-slider .splide__pagination {
        display: none !important
    }

    #tours-splide,#value-slider {
        padding-bottom: 0 !important
    }
}

.faq-section {
    background-color: #2f323e;
    color: #fff;
    position: relative
}

.faq-section .section-title {
    color: #fff !important
}

.faq-section .section-subtitle {
    color: rgba(255,255,255,.6)
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.faq-item {
    background: var(--color-dusk-blue);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: var(--border-radius);
    transition: all .3s ease;
    overflow: hidden
}

.faq-item.active {
    border-color: var(--color-secondary);
    background: #1b242c;
    box-shadow: 0 10px 30px rgba(0,0,0,.3)
}

.faq-header {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--color-primary);
    transition: background-color .3s
}

.faq-question {
    font-size: .95rem;
    font-weight: 700;
    color: #f0f0f0;
    margin: 0;
    padding-right: 15px;
    line-height: 1.5;
    transition: color .3s
}

.faq-item.active .faq-question {
    color: var(--color-secondary)
}

.faq-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    background: rgba(255,255,255,.05);
    border-radius: 50%;
    transition: all .4s ease;
    flex-shrink: 0
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
    background: var(--color-secondary);
    color: #fff;
    box-shadow: 0 0 10px rgba(255,140,66,.4)
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(0,1,0,1);
    background-color: rgba(0,0,0,.1)
}

.faq-content {
    padding: 5px 25px 25px;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    font-size: .9rem
}

.faq-item.active .faq-body {
    max-height: 250px
}

@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns:1fr;
        gap: 20px
    }

    .faq-item {
        background: #1a2026
    }
}

.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
    overflow: hidden
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: Scroll;
    z-index: 0
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(17 24 30 / 56%);
    z-index: 1
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto
}

.cta-subtitle {
    display: block;
    font-size: .9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff
}

.cta-title .highlight {
    color: var(--color-accent);
    text-shadow: 1px 1px 2px black, 0 0 25px #03a9f4d6, 0 0 5px #00bcd4a6;
}

.cta-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,.9);
    margin-bottom: 40px
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

.cta-section .button-primary {
    padding: 15px 40px;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(255,140,66,.3)
}

.button-whatsapp {
    background-color: #25d366;
    color: #fff;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid #25d366
}

.button-whatsapp:hover {
    background-color: transparent;
    color: #25d366;
    transform: translateY(-3px)
}

@media (max-width: 768px) {
    .cta-bg {
        background-attachment:scroll
    }

    .cta-section {
        padding: 80px 0
    }

    .cta-title {
        font-size: 2.5rem
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px
    }

    .button {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
    }
}

@media (max-width: 991px) {
    #value-slider .splide__slide,#tours-splide .splide__slide {
        width:100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important
    }

    #value-slider .splide__track,#tours-splide .splide__track {
        padding-left: 0 !important;
        padding-right: 0 !important
    }
}

.page-hero {
    position: relative;
    height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17,24,30,.5);
    z-index: 1
}

.relative-z10 {
    position: relative;
    z-index: 10
}

.page-hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0,0,0,.3);
    margin-bottom: 15px
}

.text-secondary {
    color: var(--color-secondary)
}

.page-hero-breadcrumbs {
    color: rgba(255,255,255,.9);
    font-size: .95rem;
    font-weight: 600
}

.page-hero-breadcrumbs a {
    color: rgba(255,255,255,.9);
    transition: color .3s
}

.page-hero-breadcrumbs a:hover {
    color: var(--color-secondary);
    text-decoration: none
}

.page-hero-breadcrumbs .separator {
    margin: 0 8px;
    opacity: .6
}

@media (max-width: 768px) {
    .page-hero {
        height:300px
    }

    .page-hero-title {
        font-size: 2rem
    }
}

.page-hero {
    position: relative;
    overflow: hidden;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    z-index: 0;
    animation: heroPageZoom 25s linear infinite alternate;
    will-change: transform
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 31%);
    z-index: 1
}

.relative-z10 {
    position: relative;
    z-index: 10
}

@keyframes heroPageZoom {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.15)
    }
}

@media (max-width: 768px) {
    .page-hero {
        height:300px
    }
}

.about-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.reverse-layout {
    direction: rtl
}

.reverse-layout>* {
    direction: ltr
}

.about-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px
}

.quote-box {
    border-left: 4px solid var(--color-secondary);
    padding-left: 20px;
    margin-top: 30px;
    font-style: italic;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 0 12px 12px 0
}

.quote-box p {
    margin-bottom: 5px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem
}

.quote-box cite {
    font-size: .9rem;
    color: #777
}

.about-image-wrapper {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px
}

.reverse-layout .about-image-wrapper {
    padding-left: 0;
    padding-right: 30px;
    padding-bottom: 30px
}

.about-img-main {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    position: relative;
    z-index: 1
}

.about-img-main {
    width: 100%;
    height: 450px;
    object-fit: cover
}

.about-img-float {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 280px;
    border: 6px solid #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,.2)
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.exp-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--color-secondary);
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 25px rgba(233,196,106,.5);
    animation: floatBadge 4s ease-in-out infinite
}

.exp-badge .num {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1
}

.exp-badge .txt {
    font-size: .75rem;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 5px
}

@keyframes floatBadge {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.stats-section {
    background-color: var(--color-primary);
    padding: 60px 0;
    color: #fff;
    position: relative;
    overflow: hidden
}

.stats-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+");
    opacity: .3
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 15px
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px
}

.stat-label {
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .8
}

.values-section {
    background-color: #0b1015;
    color: #fff
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 50px
}

.value-card {
    background: #161d24;
    padding: 50px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,.05);
    text-align: center;
    transition: var(--transition)
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary)
}

.value-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 25px
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff
}

.value-card p {
    font-size: .95rem;
    color: rgba(255,255,255,.7);
    line-height: 1.6
}

.why-us-section {
    background: #f8f9fa
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 50px
}

.why-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.03);
    transition: var(--transition);
    border: 1px solid #eee
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,.08)
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(15,44,64,.05);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: .3s
}

.why-item:hover .why-icon {
    background: var(--color-primary);
    color: #fff
}

.why-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px
}

.why-item p {
    font-size: .9rem;
    color: #666;
    line-height: 1.5;
    margin: 0
}

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

.sustain-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-main);
    font-weight: 600
}

.sustain-list i {
    color: #2ecc71
}

.sustain-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: repeating-linear-gradient(45deg,var(--color-secondary),var(--color-secondary) 10px,transparent 10px,transparent 20px);
    z-index: 0;
    opacity: .2;
    border-radius: 50%
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 50px
}

.team-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    transition: var(--transition);
    text-align: center
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,.1)
}

.team-img {
    position: relative;
    height: 380px;
    overflow: hidden
}

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

.team-card:hover .team-img img {
    transform: scale(1.05)
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,.95);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom .3s ease
}

.team-card:hover .team-social {
    bottom: 0
}

.team-social a {
    color: var(--color-primary);
    font-size: 1.2rem
}

.team-social a:hover {
    color: var(--color-secondary)
}

.team-info {
    padding: 25px
}

.team-info h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--color-text-main)
}

.team-info .role {
    font-size: .85rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    font-weight: 700
}

.partners-section {
    padding: 50px 0;
    background: #fff;
    border-top: 1px solid #eee
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: .6
}

.partners-grid img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    transition: .3s
}

.partners-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1)
}

.partner-placeholder {
    font-weight: 900;
    font-size: 1.5rem;
    color: #ccc;
    text-transform: uppercase;
    transition: .3s
}

.partner-placeholder:hover {
    color: var(--color-primary)
}

@media (max-width: 991px) {
    .about-grid-2col {
        grid-template-columns:1fr;
        gap: 40px
    }

    .reverse-layout {
        direction: ltr
    }

    .reverse-layout .about-image-wrapper {
        padding-right: 0;
        padding-left: 0
    }

    .about-image-wrapper {
        margin-top: 30px
    }

    .about-img-float {
        display: none
    }

    .exp-badge {
        width: 100px;
        height: 100px;
        top: 10px;
        right: 10px
    }

    .exp-badge .num {
        font-size: 1.5rem
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 40px 20px
    }

    .values-grid {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .team-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns:1fr
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .partners-grid {
        flex-direction: column;
        gap: 30px
    }
}

.contact-section {
    background-color: #fff
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start
}

.contact-intro-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 40px
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px
}

.contact-detail-item .icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(15,44,64,.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: .3s
}

.contact-detail-item:hover .icon-box {
    background-color: var(--color-secondary);
    color: #fff;
    transform: translateY(-3px)
}

.contact-detail-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-primary)
}

.contact-detail-item p,.contact-detail-item a {
    font-size: .95rem;
    color: var(--color-text-light);
    line-height: 1.5;
    text-decoration: none;
    transition: color .2s
}

.contact-detail-item a:hover {
    color: var(--color-secondary)
}

.contact-socials h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase
}

.social-icons-row {
    display: flex;
    gap: 15px
}

.s-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-main);
    transition: all .3s
}

.s-icon:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff
}

.form-card-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.02)
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--color-primary);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px
}

.bc-form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.bc-form-row {
    display: flex;
    gap: 20px
}

.bc-form-group {
    display: flex;
    flex-direction: column
}

.half-width {
    width: 50%
}

.full-width {
    width: 100%
}

.bc-form-group label {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-main);
    text-transform: uppercase
}

.bc-form-group .required {
    color: #e74c3c
}

.bc-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: .95rem;
    color: #333;
    background-color: #f9f9f9;
    transition: all .3s ease;
    font-family: inherit
}

.bc-form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(233,196,106,.15)
}

.bc-submit-btn {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s;
    width: 100%
}

.bc-submit-btn:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233,196,106,.4)
}

div.wpcf7-response-output {
    border-radius: 8px;
    font-size: .9rem;
    padding: 15px;
    margin-top: 20px;
    border-width: 1px
}

.contact-map-section iframe {
    display: block;
    filter: grayscale(20%);
    transition: filter .3s
}

.contact-map-section iframe:hover {
    filter: grayscale(0%)
}

@media (max-width: 991px) {
    .contact-layout-grid {
        grid-template-columns:1fr;
        gap: 50px
    }

    .bc-form-row {
        flex-direction: column;
        gap: 20px
    }

    .half-width {
        width: 100%
    }

    .form-card-wrapper {
        padding: 25px
    }
}

.bc-captcha-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 8px
}

.bc-captcha-box img {
    border-radius: 4px;
    height: 45px;
    width: auto
}

.bc-captcha-box input {
    flex-grow: 1;
    margin: 0 !important
}

@media (max-width: 480px) {
    .bc-captcha-box {
        flex-direction:column;
        align-items: flex-start
    }

    .bc-captcha-box input {
        width: 100%
    }
}

.error-intro-section {
    background: #fff;
    padding-bottom: 40px
}

.error-grid-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: center
}

.error-visual {
    text-align: center;
    position: relative
}

.compass-anim {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    background: rgba(15,44,64,.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.compass-anim i {
    font-size: 8rem;
    color: #e0e0e0
}

.floating-404 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-primary);
    text-shadow: 3px 3px 0px #fff;
    animation: pulse404 3s infinite
}

@keyframes pulse404 {
    0% {
        transform: translate(-50%,-50%) scale(1)
    }

    50% {
        transform: translate(-50%,-50%) scale(1.1)
    }

    100% {
        transform: translate(-50%,-50%) scale(1)
    }
}

.error-subtitle {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px
}

.error-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1.2;
    margin-bottom: 20px
}

.error-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 90%
}

.error-search-box {
    margin-bottom: 30px;
    max-width: 100%
}

.search-form-404 {
    display: flex;
    gap: 10px
}

.search-field-404 {
    flex-grow: 1;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: .3s
}

.search-field-404:focus {
    border-color: var(--color-primary);
    outline: none
}

.search-submit-404 {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0 30px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s
}

.search-submit-404:hover {
    background: var(--color-secondary)
}

.error-quick-actions {
    display: flex;
    gap: 15px
}

.error-suggestions-section {
    background: #f9f9f9;
    padding: 80px 0;
    border-top: 1px solid #eee
}

.section-header.centered {
    text-align: center
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.tours-grid-404 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px
}

.suggestion-item .tour-card {
    height: 100%;
    background: #fff
}

.error-help-bar {
    background: var(--color-primary);
    padding: 25px 0;
    color: #fff
}

.help-flex {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.help-text {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px
}

.help-text i {
    font-size: 1.5rem;
    color: var(--color-secondary)
}

.help-link a {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .9rem;
    text-decoration: none;
    padding: 10px 25px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50px;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 10px
}

.help-link a:hover {
    background: #fff;
    color: var(--color-primary)
}

@media (max-width: 991px) {
    .error-grid-layout {
        grid-template-columns:1fr;
        text-align: center;
        gap: 40px
    }

    .error-visual {
        margin-bottom: 0
    }

    .error-desc {
        margin: 0 auto 30px
    }

    .error-quick-actions {
        justify-content: center
    }

    .tours-grid-404 {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .help-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center
    }
}

.archive-section {
    background-color: #f8f9fa
}

.archive-description {
    background: #fff;
    padding: 20px;
    border-left: 4px solid var(--color-secondary);
    border-radius: 4px;
    font-size: .95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 30px
}

.archive-description p:last-child {
    margin-bottom: 0
}

.archive-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid #eee;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,.02)
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    color: var(--color-primary)
}

.tour-search-form {
    display: flex;
    position: relative
}

.tour-search-form .search-field {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: .9rem
}

.tour-search-form .search-submit {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s
}

.tour-search-form .search-submit:hover {
    background: var(--color-secondary)
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.filter-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee
}

.filter-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.filter-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-light);
    font-size: .95rem;
    font-weight: 500;
    transition: .2s;
    text-decoration: none
}

.filter-list a:hover,.filter-list li.active a {
    color: var(--color-secondary);
    padding-left: 5px
}

.filter-list .count {
    background: #f0f0f0;
    font-size: .75rem;
    padding: 2px 8px;
    border-radius: 10px;
    color: #777
}

.promo-widget {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding: 40px 20px;
    border: none
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15,44,64,.7);
    z-index: 1
}

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

.promo-content h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff
}

.promo-content p {
    font-size: .9rem;
    margin-bottom: 20px;
    opacity: .9
}

.button-small {
    padding: 8px 20px;
    font-size: .85rem;
    background: #25d366;
    color: #fff;
    border-radius: 20px;
    display: inline-block
}

.archive-toolbar {
    margin-bottom: 30px
}

.result-count {
    font-size: .95rem;
    color: #666
}

.tours-grid-archive {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px
}

.no-results-box {
    text-align: center;
    padding: 60px;
    background: #fff;
    border-radius: var(--border-radius);
    border: 1px solid #eee
}

.no-results-box i {
    font-size: 4rem;
    color: #eee;
    margin-bottom: 20px
}

.archive-pagination {
    margin-top: 50px;
    text-align: center
}

.archive-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px
}

.archive-pagination .page-numbers {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: var(--color-text-main);
    font-weight: 700;
    transition: .3s;
    text-decoration: none
}

.archive-pagination .page-numbers.current,.archive-pagination .page-numbers:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary)
}

@media (max-width: 991px) {
    .archive-layout {
        grid-template-columns:1fr
    }

    .archive-sidebar {
        order: -1
    }

    .promo-widget {
        display: none
    }

    .tours-grid-archive {
        grid-template-columns: 1fr
    }
}

.archive-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    z-index: 10;
    height: fit-content
}

@media (max-width: 991px) {
    .archive-sidebar {
        position:relative;
        top: 0
    }
}

.small-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center
}

.small-post-item:last-child {
    margin-bottom: 0
}

.sp-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #eee
}

.sp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s
}

.sp-thumb:hover img {
    transform: scale(1.1)
}

.sp-info {
    flex-grow: 1
}

.sp-date {
    font-size: .75rem;
    color: var(--color-secondary);
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px
}

.sp-info h4 {
    font-size: .95rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 700
}

.sp-info h4 a {
    color: var(--color-text-main);
    transition: .2s;
    text-decoration: none
}

.sp-info h4 a:hover {
    color: var(--color-primary)
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.tag-link {
    background: #f0f0f0;
    color: #555;
    font-size: .8rem;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: .3s;
    font-weight: 600
}

.tag-link:hover {
    background: var(--color-primary);
    color: #fff
}

.blog-grid-archive {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px
}

.blog-grid-archive .splide__slide {
    width: auto !important;
    margin: 0 !important
}

.blog-grid-archive .blog-card {
    height: 100%
}

@media (max-width: 768px) {
    .blog-grid-archive {
        grid-template-columns:1fr
    }
}

.search-results-section {
    background-color: #f8f9fa
}

.search-toolbar {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0
}

.search-toolbar .result-count {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin: 0
}

.search-toolbar .highlight {
    color: var(--color-text-main);
    font-weight: 700
}

.search-mixed-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px 30px
}

.search-result-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column
}

.search-result-wrapper .tour-card,.search-result-wrapper .blog-card {
    height: 100%
}

.result-type-badge {
    margin-bottom: 8px;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 6px
}

.result-type-badge i {
    font-size: .9rem
}

.search-result-wrapper.is-tour .result-type-badge {
    color: var(--color-primary)
}

.search-result-wrapper.is-post .result-type-badge {
    color: var(--color-secondary)
}

.search-result-wrapper.is-page .result-type-badge {
    color: #999
}

.generic-search-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.02);
    transition: .3s
}

.generic-search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,.05);
    border-color: var(--color-secondary)
}

.generic-search-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.3
}

.generic-search-card h3 a {
    color: var(--color-text-main);
    text-decoration: none;
    transition: .2s
}

.generic-search-card h3 a:hover {
    color: var(--color-primary)
}

.generic-excerpt {
    font-size: .95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1
}

.small-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    border-bottom: 1px dashed #eee;
    padding-bottom: 15px
}

.small-post-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0
}

.sp-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative
}

.sp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s
}

.sp-thumb:hover img {
    transform: scale(1.1)
}

.sp-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.5rem
}

.sp-info {
    flex-grow: 1
}

.sp-info h4 {
    font-size: .9rem;
    line-height: 1.4;
    margin: 0 0 5px;
    font-weight: 700
}

.sp-info h4 a {
    color: var(--color-text-main);
    text-decoration: none;
    transition: .2s
}

.sp-info h4 a:hover {
    color: var(--color-secondary)
}

.sp-date {
    font-size: .75rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    display: block
}

.tour-price {
    font-size: .9rem;
    color: var(--color-primary);
    font-weight: 700
}

.help-widget {
    background-color: var(--color-primary);
    color: #fff;
    padding: 30px;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    margin-top: 30px
}

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

.help-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--color-secondary);
    display: inline-block
}

.help-widget h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 800
}

.help-widget p {
    color: rgba(255,255,255,.85);
    font-size: .95rem;
    margin-bottom: 25px;
    line-height: 1.5
}

.white-btn {
    border: 2px solid #fff !important;
    color: #fff !important;
    background: 0 0;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s
}

.white-btn:hover {
    background-color: #fff !important;
    color: var(--color-primary) !important
}

.help-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+");
    opacity: .3;
    z-index: 1
}

@media (max-width: 768px) {
    .search-mixed-grid {
        grid-template-columns:1fr;
        gap: 30px
    }

    .generic-search-card {
        padding: 20px
    }
}

.page-layout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start
}

.generic-article {
    background: #fff
}

.page-meta {
    font-size: .85rem;
    color: #999;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 30px
}

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

.page-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    height: fit-content
}

@media (max-width: 991px) {
    .page-layout-grid {
        grid-template-columns:1fr;
        gap: 40px
    }

    .page-sidebar {
        order: 2;
        position: static
    }

    .page-content-column {
        order: 1
    }
}

.single-post-section {
    background-color: #fff
}

.post-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-size: .9rem;
    color: #888
}

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

.meta-item a {
    color: #888;
    text-decoration: none
}

.meta-item a:hover {
    color: var(--color-primary)
}

.single-article .entry-content {
    font-size: 1.1rem
}

.post-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.post-tags a {
    display: inline-block;
    background: #f5f5f5;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: .85rem;
    text-decoration: none;
    margin-right: 5px;
    transition: .2s
}

.post-tags a:hover {
    background: var(--color-secondary);
    color: #fff
}

.post-share {
    display: flex;
    align-items: center;
    gap: 10px
}

.post-share span {
    font-weight: 700;
    font-size: .9rem;
    margin-right: 5px
}

.share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s
}

.share-btn:hover {
    transform: translateY(-3px)
}

.share-btn.fb {
    background: #3b5998
}

.share-btn.tw {
    background: #000
}

.share-btn.wa {
    background: #25d366
}

.author-bio-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 40px;
    display: flex;
    gap: 25px;
    align-items: center
}

.author-avatar img {
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.05)
}

.author-info h4 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 800
}

.author-info p {
    font-size: .95rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5
}

.author-link {
    font-size: .85rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase
}

.post-navigation-links {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px
}

.post-navigation-links a {
    color: var(--color-text-main);
    font-weight: 700;
    text-decoration: none;
    transition: .2s;
    max-width: 45%;
    display: flex;
    align-items: center;
    gap: 10px
}

.post-navigation-links a:hover {
    color: var(--color-primary)
}

.nav-prev {
    text-align: left
}

.nav-next {
    text-align: right;
    margin-left: auto
}

.related-posts-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px
}

.related-grid .blog-card {
    height: 100%
}

@media (max-width: 768px) {
    .author-bio-box {
        flex-direction:column;
        text-align: center
    }

    .related-grid {
        grid-template-columns: 1fr
    }

    .post-footer {
        flex-direction: column;
        align-items: flex-start
    }
}

.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0
}

.comments-title,.comment-reply-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--color-text-main)
}

.comments-title span {
    color: var(--color-secondary)
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px
}

.comment-list .comment {
    margin-bottom: 30px
}

.comment-body {
    display: flex;
    gap: 20px;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    padding: 25px;
    border-radius: var(--border-radius)
}

.comment-list .children {
    list-style: none;
    padding-left: 60px;
    margin-top: 20px;
    border-left: 2px solid #eee
}

.comment-author .avatar {
    border-radius: 50%;
    width: 60px;
    height: 60px
}

.comment-meta {
    margin-bottom: 10px;
    font-size: .85rem;
    color: #999
}

.comment-meta a {
    color: #999;
    text-decoration: none
}

.fn {
    font-style: normal;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-main);
    display: block
}

.says {
    display: none
}

.comment-content p {
    margin-bottom: 15px;
    font-size: .95rem;
    line-height: 1.6
}

.reply a {
    font-size: .8rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--color-secondary);
    padding: 5px 15px;
    border-radius: 20px;
    transition: .3s;
    display: inline-block
}

.reply a:hover {
    background: var(--color-secondary);
    color: #fff
}

.comment-respond {
    background: #f9f9f9;
    padding: 40px;
    border-radius: var(--border-radius)
}

.comment-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.comment-form-row {
    display: flex;
    gap: 20px;
    width: 100%
}

.comment-form-group {
    flex: 1;
    display: flex;
    flex-direction: column
}

.comment-form-group.full-width {
    width: 100%;
    flex: 100%
}

.comment-form label {
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: 8px;
    text-transform: uppercase
}

.bc-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff
}

.comment-form .button-primary {
    margin-top: 10px;
    padding: 12px 30px;
    cursor: pointer
}

@media (max-width: 768px) {
    .comment-body {
        flex-direction:column
    }

    .comment-list .children {
        padding-left: 20px
    }

    .comment-form-row {
        flex-direction: column;
        gap: 0
    }

    .comment-form-group {
        margin-bottom: 20px
    }
}

.travel-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(480px, 1fr));
    grid-auto-rows: 480px;
    gap: 20px;
    grid-auto-flow: dense;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-color: #e0e0e0;
    box-shadow: 0 4px 6px rgba(0,0,0,.05);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1),box-shadow .3s ease;
    isolation: isolate;
}

.mosaic-big {
    /* grid-column: span 2; */
    /* grid-row: span 2; */
}

.mosaic-wide {
    grid-column: span 2
}

.mosaic-tall {
    grid-row: span 2
}

.mosaic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,.2);
    z-index: 2
}

.mosaic-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative
}

.mosaic-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    animation: shimmer 2s infinite linear;
    background: linear-gradient(to right,#eff1f3 4%,#e2e2e2 25%,#eff1f3 36%);
    background-size: 1000px 100%
}

.mosaic-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .8s cubic-bezier(.25,.46,.45,.94);
    will-change: transform
}

.mosaic-item:hover .mosaic-bg {
    transform: scale(1.15) rotate(1deg)
}

.mosaic-top-ui {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
    z-index: 3
}

.ui-tag,.ui-badge {
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,.9);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: 1px solid rgba(255,255,255,.3);
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
    transition: background .3s ease
}

.ui-badge i {
    color: #ffb700;
    margin-right: 4px
}

.ui-tag {
    background: rgba(0,0,0,.7)
}

.mosaic-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    background: linear-gradient(to top,rgba(0,0,0,.9) 0%,rgba(0,0,0,.6) 50%,transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 3
}

.mosaic-text-content {
    flex: 1;
    transform: translateY(5px);
    transition: transform .3s ease
}

.mosaic-item:hover .mosaic-text-content {
    transform: translateY(0)
}

.mosaic-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,.3)
}

.mosaic-big .mosaic-title {
    font-size: 2rem
}

.mosaic-meta {
    color: rgba(255,255,255,.85);
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 8px
}

.mosaic-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all .3s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 4px 10px rgba(0,0,0,.3)
}

.mosaic-item:hover .mosaic-action-btn {
    opacity: 1;
    transform: translateX(0)
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0
    }

    100% {
        background-position: 1000px 0
    }
}

@media (max-width: 768px) {
    .travel-mosaic-grid {
        grid-template-columns:1fr;
        grid-auto-rows: 300px
    }

    .mosaic-big,.mosaic-wide,.mosaic-tall {
        grid-column: auto;
        grid-row: auto
    }

    .mosaic-action-btn {
        opacity: 1;
        transform: none;
        width: 35px;
        height: 35px
    }
}

.travel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px
}

.story-header {
    margin-bottom: 40px;
    text-align: center
}

.meta-pill-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap
}

.meta-pill {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s
}

.meta-pill.tour {
    background: var(--color-primary);
    color: var(--color-white);
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,.05)
}

.meta-pill.tour:hover {
    transform: translateY(-3px)
}

.meta-pill.date {
    background: #f5f5f5;
    color: #555
}

.story-content {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444
}

.gallery-title {
    color: var(--color-primary);
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.gallery-title .line {
    height: 1px;
    width: 50px;
    background: #ddd
}

.travel-strict-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-auto-rows: 250px;
    gap: 15px;
    grid-auto-flow: dense
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: #e0e0e0;
    width: 100%;
    height: 100%
}

.photo-big {
    grid-column: span 2;
    grid-row: span 2;
}



.photo-tall {
    /* grid-row: span 2; */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease
}

.item-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(.5);
    transition: transform .3s ease
}

.gallery-item:hover img {
    transform: scale(1.1)
}

.gallery-item:hover .item-overlay {
    opacity: 1
}

.gallery-item:hover .item-overlay i {
    transform: scale(1)
}

.story-footer {
    border-top: 1px solid #eee;
    padding-top: 40px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

.btn-back,.btn-book {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.btn-back {
    background: #f0f0f0;
    color: #555
}

.btn-back:hover {
    background: #e0e0e0;
    color: #333
}

.btn-book {
    background: var(--color-primary,#d32f2f);
    color: #fff
}

.btn-book:hover {
    background: #b71c1c;
    transform: translateY(-3px);
    color: #fff
}

@media (max-width: 992px) {
    .travel-strict-grid {
        grid-template-columns:repeat(2,1fr);
        grid-auto-rows: 200px
    }

    .photo-big {
        grid-column: span 2;
        grid-row: span 2
    }

    .photo-wide {
        grid-column: span 2
    }
}

@media (max-width: 576px) {
    .travel-strict-grid {
        display:grid;
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 10px
    }

    .photo-big,.photo-wide,.photo-tall {
        grid-column: auto !important;
        grid-row: auto !important
    }

    .photo-big {
        grid-row: span 1
    }
}

.video-testimonial-section {
    background-color: #f4f7f9;
    padding: 80px 0
}

.video-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(37,60,120,.15);
    border: 8px solid #fff
}

.testimonial-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    aspect-ratio: 16/9;
    object-fit: cover
}

.testimonial-quote {
    margin-top: 20px;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-main);
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--color-secondary)
}

.testimonial-author {
    margin-top: 30px
}

.testimonial-author h4 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    color: var(--color-primary)
}

.stars i {
    color: gold;
    font-size: .9rem
}

.trip-info {
    font-size: .85rem;
    color: var(--color-text-light);
    font-weight: 600;
    text-transform: uppercase
}

@media (max-width: 991px) {
    .video-grid {
        grid-template-columns:1fr;
        gap: 40px
    }

    .video-content {
        text-align: center
    }

    .testimonial-quote {
        text-align: left;
        margin: 20px auto
    }
}

.vertical-videos-section {
    padding: 80px 0;
    background-color: #fff
}

.vertical-video-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    max-width: 1000px;
    /* max-width: 800px; */
    margin: 50px auto 0;
}

.vertical-video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(37,60,120,.15);
    background: #000;
    transition: transform .3s ease
}

.vertical-video-card:hover {
    transform: translateY(-5px)
}

.vertical-video-card video {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover
}

.video-overlay-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,.9);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px
}

.video-overlay-label i {
    color: var(--color-secondary)
}



/* Cambio añadido a About-Us */
/* =========================
   ABOUT IMAGE HOVER SMOOTH PRO
   ========================= */

.about-image-wrapper{
    position: relative;
}

/* Imagen principal */
.about-img-main{
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
    border-radius: 14px;

    transition:
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s ease,
        filter 0.5s ease;
}

/* Imagen flotante */
.about-img-float{
    position: absolute;
    z-index: 3;

    transition:
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s ease,
        filter 0.5s ease;
}

/* Imagen interna */
.about-img-float img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* =========================
   ESTADO HOVER GLOBAL (suaviza todo)
   ========================= */

.about-image-wrapper:hover .about-img-main,
.about-image-wrapper:hover .about-img-float{
    transform: scale(0.96);
    filter: brightness(0.95);
}

/* =========================
   HOVER INDIVIDUAL (el que domina)
   ========================= */

.about-img-main:hover{
    z-index: 10;
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    filter: brightness(1);
}

.about-img-float:hover{
    z-index: 10;
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    filter: brightness(1);
}

/* Orden de las imágenes*/
/* =========================
   ABOUT IMAGE LAYOUT MÁS DINÁMICO
   ========================= */

.about-image-wrapper{
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* tarjeta 1: la rosada de tu esquema */
.about-img-main{
    position: relative;
    z-index: 2;
    width: 78%;
    max-width: 520px;
    border: 6px solid #fff;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    transform: rotate(-16deg) translate(-30px, 55px);

    transition:
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s ease,
        filter 0.45s ease;
}

/* tarjeta 2: la verde de tu esquema */
.about-img-float{
    position: absolute;
    top: -26px;
    right: 30px;
    z-index: 3;
    width: 54%;
    max-width: 320px;
    border: 6px solid #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.16);
    transform: rotate(0deg);

    transition:
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s ease,
        filter 0.45s ease;
}

.about-img-float img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* estado general al entrar al bloque */
.about-image-wrapper:hover .about-img-main,
.about-image-wrapper:hover .about-img-float{
    filter: brightness(0.96);
}

/* hover tarjeta principal */
.about-img-main:hover{
    z-index: 10;
    transform: rotate(-10deg) translate(-18px, 35px) scale(1.04);
    box-shadow: 0 34px 80px rgba(0,0,0,0.24);
    filter: brightness(1);
}

/* hover tarjeta flotante */
.about-img-float:hover{
    z-index: 11;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 34px 80px rgba(0,0,0,0.26);
    filter: brightness(1);
}

/* responsive */
@media (max-width: 991px){
    .about-image-wrapper{
        min-height: 470px;
    }

    .about-img-main{
        width: 82%;
        transform: rotate(-12deg) translate(-18px, 35px);
    }

    .about-img-float{
        width: 58%;
        top: 10px;
        right: 15px;
    }

    .about-img-main:hover{
        transform: rotate(-8deg) translate(-8px, 20px) scale(1.03);
    }
}

@media (max-width: 640px){
    .about-image-wrapper{
        min-height: 390px;
    }

    .about-img-main{
        width: 100%;
        transform: rotate(-1deg) translate(-11px, 21px);
        border-width: 4px;
    }

    .about-img-float{
        width: 62%;
        top: 0;
        right: 8px;
        border-width: 4px;
    }

    .about-img-main:hover{
        transform: rotate(-6deg) translate(-2px, 14px) scale(1.02);
    }
}
.gtranslate_wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 8px;
}

.gtranslate_wrapper a {
    display: inline-flex !important;
}

.gtranslate_wrapper img {
    width: 20px !important;
    height: auto !important;
    display: block !important;
}

#google_translate_element2 {
    display: none !important;
}
#Whatsapp-0-channel .chaty-icon {
    animation: pulseWhatsapp 1.5s infinite;
}

@keyframes pulseWhatsapp {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px #25d366);
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 12px #25d366);
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px #25d366);
    }
}