:root {
    --color-primary: #000;
    --color-secondary: #00aed6;
    --color-accent: #fa9d1c;
    --color-accent-hover: #d68315;
    --color-bg-body: #fff;
    --color-bg-card: #f8f9fa;
    --color-text: #2d2d2d;
    --color-text-light: #666;
    --color-white: #fff;
    --color-overlay: rgba(0,0,0,.75);
    --font-heading: "Montserrat",sans-serif;
    --font-body: "Open Sans",sans-serif;
    --container-width: 1280px;
    --ease-out-expo: cubic-bezier(.19,1,.22,1)
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    transition: all .3s var(--ease-out-expo);
    text-decoration: none
}

.tour-hero-slider-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 850px;
    width: 100%;
    overflow: hidden;
    color: #fff;
    margin-top: -80px
}

.tour-hero-splide,.tour-hero-splide .splide__track,.tour-hero-splide .splide__list,.tour-hero-splide .splide__slide {
    height: 100%
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease
}

.splide__slide.is-active .hero-slide-bg {
    transform: scale(1.1)
}

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

.tour-hero-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 2;
    padding-bottom: 80px
}

.tour-hero-content {
    max-width: 900px;
    width: 100%
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(.2,1,.3,1) forwards .2s
}

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

.tour-breadcrumb-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(5px);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.2);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--font-body)
}

.tour-breadcrumb-glass a {
    color: rgba(255,255,255,.9);
    text-decoration: none;
    transition: color .3s
}

.tour-breadcrumb-glass a:hover {
    color: var(--color-accent)
}

.tour-breadcrumb-glass .sep {
    color: rgba(255,255,255,.4);
    font-size: .6rem
}

.tour-breadcrumb-glass .current-dest {
    color: #fff;
    font-weight: 700
}

.tour-title-display {
    font-size: clamp(2.5rem,5vw,4.5rem);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,.5)
}

.tour-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px
}

.meta-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 500
}

.meta-badge i {
    font-size: 1.1rem;
    color: rgba(255,255,255,.9)
}

.meta-badge .text-gold {
    color: gold
}

.scroll-down-mouse {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,.7);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    opacity: .8;
    transition: opacity .3s
}

.scroll-down-mouse:hover {
    opacity: 1
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    margin-top: 6px;
    animation: mouseScroll 2s infinite cubic-bezier(.15,.41,.69,.94)
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        transform: translateY(15px)
    }
}

.tour-action-bar {
    background: var(--color-overlay);
    padding: 30px 0
}

.action-bar-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px
}

.action-column {
    flex: 1;
    display: flex;
    justify-content: center
}

.action-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center
}

.action-label {
    font-size: .95rem;
    color: var(--color-white);
    font-weight: 500
}

.action-divider {
    width: 1px;
    height: 60px;
    background: #e0e0e0
}

.btn-action {
    display: inline-flex;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 6px rgba(0,0,0,.1)
}

.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,.15)
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    border: 2px solid #25d366
}

.btn-whatsapp:hover {
    background-color: #1ebd57;
    border-color: #1ebd57;
    color: #fff
}

.btn-download {
    background-color: var(--color-accent);
    color: #fff;
    border: 2px solid var(--color-accent)
}

.btn-download:hover {
    background-color: #d68315;
    border-color: #d68315;
    color: #fff
}

.btn-outline {
    border: 2px solid var(--color-accent);
    background: 0 0;
    color: var(--color-accent)
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: #fff
}

.tour-overview-section {
    padding: 60px 0;
    background-color: #d6831514
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative
}

.overview-content .section-title {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--color-secondary);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    display: inline-block
}

.tour-specs-card {
    background-color: var(--color-white);
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,.03);
    overflow: hidden;
    position: sticky;
    top: 250px;
    z-index: 10
}

.specs-header {
    background-color: #fcfcfc;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee
}

.specs-subtitle {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
    letter-spacing: 1px
}

.specs-price .amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    margin: 0 4px;
    line-height: 1
}

.specs-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 15px;
    background-color: #fff
}

.spec-row {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.spec-icon {
    font-size: 1.2rem;
    color: var(--color-secondary);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px
}

.spec-info {
    display: flex;
    flex-direction: column;
    font-size: .8rem;
    line-height: 1.3;
    color: var(--color-text-light)
}

.spec-info strong {
    color: #333;
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
    margin-bottom: 2px
}

.spec-info span {
    font-size: .85rem;
    font-weight: 500;
    color: #555;
    text-transform: none
}

.specs-footer {
    padding: 0 20px 20px;
    background-color: #fff
}

.button-specs-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--color-secondary);
    color: #fff;
    padding: 14px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    font-size: .85rem;
    transition: all .3s ease;
    text-decoration: none
}

.button-specs-contact:hover {
    background-color: var(--color-accent);
    color: #fff
}

.overview-text-wrapper {
    position: relative;
    overflow: hidden;
    transition: max-height .6s cubic-bezier(.25,1,.5,1)
}

.overview-text-wrapper.is-collapsed {
    max-height: 350px
}

.overview-text-inner {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    padding-bottom: 10px;
    text-align: justify
}

.overview-text-inner p {
    margin-bottom: 15px
}

.fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom,rgba(255,255,255,0),var(--color-bg-body));
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease
}

.overview-text-wrapper.is-collapsed .fade-overlay {
    opacity: 1
}

.btn-read-more {
    background: 0 0;
    border: none;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    padding: 10px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .3s
}

.btn-read-more:hover {
    color: var(--color-primary);
    text-decoration: underline
}

.btn-read-more i {
    font-size: .8rem;
    transition: transform .4s ease
}

.btn-read-more.active i {
    transform: rotate(180deg)
}

.tour-tabs-nav {
    display: none
}

.mobile-tab-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #eee;
    padding: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
    cursor: pointer;
    text-transform: uppercase;
    transition: background .3s
}

.mobile-tab-trigger span i {
    color: var(--color-secondary);
    margin-right: 10px;
    width: 20px;
    text-align: center
}

.mobile-tab-trigger .arrow {
    font-size: .8rem;
    color: #ccc;
    transition: transform .3s
}

.mobile-tab-trigger.active {
    background-color: #f9f9f9;
    color: var(--color-accent)
}

.mobile-tab-trigger.active .arrow {
    transform: rotate(180deg);
    color: var(--color-accent)
}

.tour-section-content {
    display: none;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #eee
}

.desktop-only {
    display: none
}

@media (min-width: 992px) {
    .tour-tabs-nav {
        display:block;
        background: #d6831514;
        border-bottom: 1px solid #e0e0e0;
        box-shadow: 0 4px 12px rgba(0,0,0,.05);
        height: 70px;
        position: sticky;
        top: 0;
        z-index: 100
    }

    .tabs-container {
        height: 100%;
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 20px
    }

    .tour-tabs-list {
        display: flex;
        width: 100%;
        justify-content: center;
        margin: 0;
        padding: 0;
        list-style: none;
        height: 100%
    }

    .tab-item {
        flex: 1;
        height: 100%;
        display: flex;
        justify-content: center;
        text-align: center
    }

    .tab-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        height: 100%;
        color: var(--color-text-light);
        font-weight: 700;
        font-size: .9rem;
        font-family: var(--font-heading);
        text-transform: uppercase;
        text-decoration: none;
        position: relative;
        transition: all .3s ease;
        border-bottom: 3px solid transparent
    }

    .tab-link i {
        font-size: 1.1rem;
        color: #999;
        transition: color .3s ease
    }

    .tab-link:hover,.tab-link.active {
        color: var(--color-accent);
        background-color: rgba(0,0,0,.02);
        border-bottom-color: var(--color-accent)
    }

    .tab-link:hover i,.tab-link.active i {
        color: var(--color-accent)
    }

    .mobile-tab-trigger {
        display: none
    }

    .tour-section-content {
        display: block !important;
        border-bottom: none;
        padding: 60px 0
    }

    .desktop-only {
        display: block;
        font-size: 1.8rem;
        margin-bottom: 30px;
        color: var(--color-secondary);
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 15px
    }
}

.tour-tabs-cta {
    display: none
}

.tour-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .3s ease
}

.tour-modal-overlay.is-visible {
    display: flex;
    opacity: 1
}

.tour-modal-container {
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,.3);
    position: relative;
    padding: 40px;
    transform: translateY(20px);
    transition: transform .3s ease
}

.tour-modal-overlay.is-visible .tour-modal-container {
    transform: translateY(0)
}

.modal-close-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    background: 0 0;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #333;
    cursor: pointer;
    transition: color .2s
}

.modal-close-icon:hover {
    color: var(--color-accent)
}

.bc-modal-form .modal-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--color-primary)
}

.form-row-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px
}

.form-row-full {
    margin-bottom: 15px
}

.bc-modal-form label {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #444
}

.bc-modal-form .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: .95rem;
    transition: border-color .3s
}

.bc-modal-form .form-control:focus {
    border-color: var(--color-accent);
    outline: none
}

.button-submit-modal {
    background-color: #ff6b6b;
    color: #fff;
    width: 100%;
    min-width: 200px;
    margin-top: 10px;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer
}

.button-submit-modal:hover {
    background-color: #e55a5a;
    transform: translateY(-2px)
}

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

.captcha-img img {
    border-radius: 3px;
    display: block
}

.captcha-input {
    flex-grow: 1
}

.tour-content-body {
    padding: 60px 0;
    background-color: #d6831514;
    min-height: 800px
}

.tour-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 60px;
    align-items: start
}

.tour-main-content {
    width: 100%
}

.tour-tab-pane {
    display: none;
    animation: fadeInPane .5s ease
}

.tour-tab-pane.active {
    display: block
}

@keyframes fadeInPane {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

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

.tour-sidebar {
    position: sticky;
    top: 80px;
    z-index: 90
}

@media (max-width: 992px) {
    .tour-title-display {
        font-size:2.5rem
    }

    .tour-hero-price {
        width: 100%;
        transform: none
    }

    .action-bar-wrapper {
        flex-direction: column;
        gap: 30px
    }

    .action-divider {
        display: none
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .tour-specs-card {
        position: static;
        order: 2;
        margin-top: 20px
    }

    .tour-layout-grid {
        grid-template-columns: 100%;
        gap: 40px
    }

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

    .tour-tab-pane {
        display: none;
        animation: none
    }
}

@media (max-width: 768px) {
    .tour-hero-container {
        align-items:center;
        text-align: center;
        padding-bottom: 100px
    }

    .tour-breadcrumb-glass {
        margin-bottom: 15px
    }

    .tour-meta-badges {
        justify-content: center
    }

    .tour-modal-container {
        padding: 25px;
        width: 95%
    }

    .form-row-2-col {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .map-actions {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px
    }

    .map-info-text {
        flex-direction: column;
        gap: 5px
    }

    .button-outline-dark {
        width: 100%;
        display: flex;
        justify-content: center
    }

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

    .addons-content-body h3,.addons-content-body h4 {
        border-left: none;
        padding-left: 0;
        text-align: center;
        color: var(--color-accent)
    }
}

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

    .spec-row.full-width {
        border-top: none;
        padding-top: 0;
        margin-top: 0
    }

    .captcha-wrapper {
        flex-direction: column;
        align-items: stretch
    }

    .captcha-img {
        display: flex;
        justify-content: center;
        background: #fff;
        padding: 5px
    }
}

.booking-widget-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    overflow: hidden;
    transition: transform .3s ease,box-shadow .3s ease
}

.booking-widget-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,.12)
}

.widget-header {
    background: #fff;
    padding: 30px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center
}

.widget-header h3 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin: 0 0 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700
}

.widget-price {
    padding-top: 20px;
    line-height: 1
}

.widget-price .from {
    display: block;
    font-size: .7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px
}

.widget-price .amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: -.5px
}

.widget-body {
    padding: 30px;
    background: #fff
}

.bc-booking-form .form-group {
    margin-bottom: 20px;
    position: relative
}

.bc-booking-form label {
    display: block;
    font-family: var(--font-body);
    font-size: .7rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px
}

.input-icon-wrapper {
    position: relative
}

.input-icon-wrapper .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-secondary);
    font-size: 1rem;
    z-index: 2;
    transition: color .3s ease
}

.bc-booking-form .form-control {
    width: 100%;
    padding: 14px 14px 14px 45px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--color-text);
    transition: all .3s ease
}

.bc-booking-form .form-control:focus {
    background-color: #fff;
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 4px 10px rgba(0,0,0,.03)
}

.bc-booking-form .form-control:focus+.input-icon,.input-icon-wrapper:focus-within .input-icon {
    color: var(--color-primary)
}

.pax-selector {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden
}

.pax-btn {
    width: 50px;
    height: 48px;
    background: 0 0;
    border: none;
    font-weight: 400;
    background-color: var(--color-accent);
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--color-white);
    transition: background .2s,color .2s
}

.pax-btn:hover {
    background: #eef0f2;
    color: var(--color-primary)
}

.pax-selector input {
    flex-grow: 1;
    text-align: center;
    border: none;
    background: 0 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    height: 48px;
    pointer-events: none;
    -moz-appearance: textfield
}

.iti {
    width: 100%;
    display: block
}

.iti__flag-container {
    border-radius: 4px 0 0 4px;
    z-index: 10
}

#booking-phone {
    padding-left: 95px !important;
    background-color: #f9f9f9;
    border-color: #e0e0e0;
    height: 48px;
    width: 100%
}

#booking-phone:focus {
    background-color: #fff;
    border-color: var(--color-primary)
}

.booking-summary {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin: 25px 0
}

.summary-row {
    font-size: .9rem;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-secondary);
    padding-top: 10px;
    border-top: 1px dashed #e0e0e0
}

.summary-total .total-amount {
    color: var(--color-accent);
    font-size: 1.5rem;
    font-weight: 800
}

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

.btn-book-now {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    letter-spacing: 1px;
    background-color: var(--color-secondary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,.1)
}

.btn-book-now:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.15)
}

.wetravel-button {
    width: 100%
}

.wetravel-button .wtrvl-checkout_button {
    width: 100% !important;
    display: block !important;
    text-align: center;
    box-sizing: border-box
}

.wetravel-button .wtrvl-checkout_button:hover {
    filter: brightness(.92);
    transform: translateY(-2px)
}

.button-whatsapp-outline {
    background: #fff;
    border: 1px solid #25d366;
    color: #25d366;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.button-whatsapp-outline i {
    font-size: 1.2rem
}

.button-whatsapp-outline:hover {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37,211,102,.2)
}

.widget-footer {
    padding: 15px;
    text-align: center;
    background: #fafafa;
    border-top: 1px solid #f0f0f0
}

.widget-footer p {
    margin: 0;
    font-size: .75rem;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.widget-footer i {
    color: #ccc
}

.itinerary-timeline-wrapper {
    position: relative;
    padding: 20px 0
}

.timeline-item {
    display: flex;
    position: relative;
    padding-bottom: 40px
}

.timeline-item.last-item {
    padding-bottom: 0
}

.timeline-marker-col {
    width: 60px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 25px;
    position: relative
}

.day-circle {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,.15)
}

.day-line {
    position: absolute;
    top: 45px;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-image: linear-gradient(to bottom,#ccc 50%,transparent 50%);
    background-size: 2px 10px;
    background-repeat: repeat-y;
    z-index: 1
}

.last-item .day-line {
    display: none
}

.timeline-content-col {
    flex-grow: 1;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,.03);
    transition: transform .3s ease
}

.timeline-item:hover .timeline-content-col {
    transform: translateX(5px);
    border-color: #e0e0e0
}

.itinerary-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    cursor: default
}

.item-title {
    font-size: 1.1rem;
    margin: 0;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 700
}

.mobile-day-badge,.accordion-icon {
    display: none
}

.description-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7
}

.description-text p {
    margin-bottom: 15px
}

.day-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(100px,1fr));
    gap: 10px;
    margin-top: 20px
}

.day-photo {
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    display: block
}

.day-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s
}

.day-photo:hover img {
    transform: scale(1.1)
}

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

.day-photo:hover .zoom-icon {
    opacity: 1
}

@media (max-width: 992px) {
    .itinerary-timeline-wrapper {
        padding:0
    }

    .timeline-item {
        display: block;
        padding-bottom: 0;
        margin-bottom: 15px
    }

    .timeline-marker-col {
        display: none
    }

    .timeline-content-col {
        padding: 0;
        border: 1px solid #e0e0e0;
        box-shadow: none;
        overflow: hidden
    }

    .timeline-item:hover .timeline-content-col {
        transform: none
    }

    .itinerary-header {
        margin-bottom: 0;
        padding: 15px 20px;
        background: #fcfcfc;
        cursor: pointer;
        justify-content: space-between;
        transition: background .3s
    }

    .itinerary-header:hover {
        background: #f5f5f5
    }

    .mobile-day-badge {
        min-width: 55px;
        display: inline-block;
        background: var(--color-secondary);
        color: #fff;
        font-size: .7rem;
        padding: 15px 10px;
        border-radius: 4px;
        margin-right: 15px;
        font-weight: 700;
        text-transform: uppercase
    }

    .item-title {
        font-size: .95rem;
        flex-grow: 1
    }

    .accordion-icon {
        display: block;
        color: #ccc;
        transition: transform .3s
    }

    .itinerary-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s cubic-bezier(.25,1,.5,1);
        background: #fff
    }

    .description-text,.day-gallery-grid {
        padding: 20px;
        border-top: 1px dashed #eee
    }

    .day-gallery-grid {
        padding-top: 0;
        margin-top: 0
    }

    .timeline-item.active .accordion-icon {
        transform: rotate(180deg);
        color: var(--color-accent)
    }

    .timeline-item.active .itinerary-header {
        background: #fff;
        border-bottom: 1px solid #eee
    }

    .timeline-item.active .mobile-day-badge {
        background: var(--color-accent)
    }
}

.day-gallery-wrapper {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed #eee
}

.day-gallery-splide {
    padding: 0 10px
}

.day-gallery-splide .splide__slide {
    border-radius: 6px;
    overflow: hidden;
    height: 100px;
    cursor: pointer;
    position: relative
}

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

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

.day-photo-link:hover img {
    transform: scale(1.1)
}

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

.day-photo-link:hover .zoom-overlay {
    opacity: 1
}

.zoom-overlay i {
    color: #fff;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,.3)
}

.day-gallery-splide .splide__arrow {
    background: #fff;
    opacity: .9;
    width: 2rem;
    height: 2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
    transition: all .3s
}

.day-gallery-splide .splide__arrow:hover {
    background: var(--color-primary);
    opacity: 1
}

.day-gallery-splide .splide__arrow svg {
    fill: var(--color-primary);
    height: 1rem;
    width: 1rem
}

.day-gallery-splide .splide__arrow:hover svg {
    fill: #fff
}

@media (max-width: 992px) {
    .day-gallery-wrapper {
        padding:0 20px 20px;
        border-top: none;
        margin-top: 10px
    }

    .day-gallery-splide .splide__arrow {
        display: none
    }
}

.inclusiones-wrapper {
    padding: 10px 0
}

.inclusions-grid {
    display: grid;
    gap: 40px;
    align-items: stretch
}

.inclusion-card {
    border-radius: 12px;
    padding: 35px;
    transition: transform .3s ease,box-shadow .3s ease;
    height: 100%
}

.card-included {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 30px rgba(0,0,0,.03);
    border-top: 4px solid #25d366
}

.card-excluded {
    background-color: #f8f9fa;
    border: 1px solid #f0f0f0;
    border-top: 4px solid #e0e0e0
}

.inclusion-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,.06)
}

.inclusion-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 20px
}

.inclusion-card h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--color-primary)
}

.inclusion-card .icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem
}

.card-included .icon-box {
    background-color: rgba(37,211,102,.1);
    color: #25d366
}

.card-excluded .icon-box {
    background-color: rgb(255 176 176/21%);
    color: #dc3545
}

.inclusion-card .card-body {
    font-size: .95rem;
    color: #555;
    line-height: 1.6
}

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

.inclusion-card ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start
}

.inclusion-card ul li:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: .9rem
}

.list-checked ul li:before {
    content: "\f00c";
    color: #25d366
}

.list-crossed ul li:before {
    content: "\f00d";
    color: #dc3545;
    opacity: .7
}

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

    .inclusion-card {
        padding: 25px
    }
}

.tour-map-wrapper {
    padding: 10px 0
}

.map-preview-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    position: relative;
    background-color: #f9f9f9;
    transition: transform .3s ease,box-shadow .3s ease
}

.map-preview-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.1)
}

.map-link {
    display: block;
    position: relative;
    cursor: zoom-in
}

.map-link img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s ease
}

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

.zoom-btn {
    background-color: rgba(255,255,255,.95);
    color: var(--color-primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
    transform: translateY(20px);
    transition: transform .3s ease;
    display: flex;
    align-items: center;
    gap: 10px
}

.map-link:hover .map-overlay {
    opacity: 1
}

.map-link:hover .zoom-btn {
    transform: translateY(0)
}

.map-link:hover img {
    transform: scale(1.03)
}

.map-actions {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    padding: 20px 30px;
    border-radius: 8px;
    border: 1px dashed #d0d0d0
}

.map-info-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-weight: 600
}

.map-info-text i {
    font-size: 1.5rem;
    color: #dc3545
}

.button-outline-dark {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .85rem;
    text-decoration: none;
    transition: all .3s ease
}

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

.tips-wrapper {
    padding: 10px 0
}

.tips-intro-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #f0f7ff;
    border-left: 4px solid var(--color-secondary);
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 30px
}

.tip-icon-large {
    font-size: 2rem;
    color: var(--color-secondary);
    opacity: .8
}

.tip-intro-text h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 700
}

.tip-intro-text p {
    margin: 0;
    font-size: .9rem;
    color: #555
}

.tips-content-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #444
}

.tips-content-body h3,.tips-content-body h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-primary);
    font-weight: 700
}

.tips-content-body p {
    margin-bottom: 20px
}

.tips-content-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0
}

.tips-content-body ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px
}

.tips-content-body ul li:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f0eb";
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--color-accent);
    font-size: 1.1rem
}

.tips-content-body ol {
    counter-reset: tip-counter;
    list-style: none;
    padding: 0
}

.tips-content-body ol li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px
}

.tips-content-body ol li:before {
    counter-increment: tip-counter;
    content: counter(tip-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center
}

@media (max-width: 768px) {
    .tips-intro-card {
        flex-direction:column;
        text-align: center;
        gap: 10px
    }
}

.addons-wrapper {
    padding: 10px 0
}

.addons-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee
}

.header-icon {
    width: 50px;
    height: 50px;
    background-color: #fff8e1;
    color: var(--color-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0
}

.header-text h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary)
}

.header-text p {
    margin: 0;
    font-size: .9rem;
    color: #666
}

.addons-content-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #444
}

.addons-content-body h3,.addons-content-body h4 {
    color: var(--color-primary);
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
    border-left: 3px solid var(--color-accent);
    padding-left: 15px
}

.addons-content-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0
}

.addons-content-body ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    background-color: #fafafa;
    padding: 12px 12px 12px 40px;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
    transition: background .3s
}

.addons-content-body ul li:hover {
    background-color: #fff;
    border-color: var(--color-accent)
}

.addons-content-body ul li:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\2b";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent);
    font-size: 1.1rem
}

.addons-footer-note {
    margin-top: 30px;
    color: #999;
    font-style: italic;
    border-top: 1px dashed #eee;
    padding-top: 15px
}

.equipaje-wrapper {
    padding: 10px 0
}

.equipaje-intro {
    margin-bottom: 30px;
    font-size: 1rem;
    color: #555;
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 6px;
    border-left: 3px solid var(--color-primary)
}

.equipaje-intro i {
    margin-right: 10px;
    color: var(--color-primary)
}

.equipaje-group-section {
    margin-bottom: 40px
}

.group-title {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    display: inline-block
}

.equipaje-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 15px
}

.equipaje-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all .3s ease
}

.equipaje-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    transform: translateY(-2px)
}

.eq-image-wrapper {
    width: 45px;
    height: 45px;
    background-color: #f4f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid #eee
}

.eq-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px
}

.eq-image-wrapper i {
    color: #999;
    font-size: 1rem
}

.equipaje-item:hover .eq-image-wrapper {
    border-color: var(--color-accent);
    background-color: #fff
}

.eq-content h4 {
    margin: 0;
    font-size: .9rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2
}

.eq-desc {
    display: block;
    font-size: .75rem;
    color: #888;
    margin-top: 3px;
    line-height: 1.3
}

.equipaje-notes-box {
    border: 1px solid #ffeeba;
    background-color: #fff3cd;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px
}

.notes-header {
    background-color: #ffecb5;
    padding: 10px 20px;
    font-weight: 700;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    text-transform: uppercase
}

.notes-body {
    padding: 20px;
    color: #856404;
    font-size: .95rem;
    line-height: 1.6
}

.tour-reviews-section {
    padding: 80px 0;
    background-color: #d6831514;
    border-top: 1px solid #eef0f2
}

.reviews-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto
}

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

.reviews-header .section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-primary);
    margin: 0 0 15px;
    font-weight: 800
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34e0a1;
    font-size: 1.5rem;
    position: relative;
    margin-top: 15px
}

.title-divider:before,.title-divider:after {
    content: "";
    height: 1px;
    width: 60px;
    background-color: #ddd;
    margin: 0 15px
}

.reviews-widget-wrapper {
    max-width: 100%;
    margin: 0 auto
}

.ti-widget-container {
    font-family: var(--font-body) !important
}

@media (max-width: 768px) {
    .tour-reviews-section {
        padding:60px 0
    }

    .reviews-header .section-title {
        font-size: 1.8rem
    }
}

.related-tours-section {
    padding: 80px 0;
    background-color: #d6831514
}

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

.section-header-center .subtitle {
    display: block;
    font-size: .85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px
}

.section-header-center .section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-primary);
    margin: 0 0 15px;
    font-weight: 800
}

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

.related-tours-wrapper {
    position: relative;
    padding: 0 40px
}

.related-tours-splide .splide__track {
    padding-bottom: 40px;
    overflow: hidden;
    padding-left: 10px;
    padding-right: 10px
}

.related-tours-splide .splide__arrow--prev {
    left: -1rem
}

.related-tours-splide .splide__arrow--next {
    right: -1rem
}

.related-tours-splide .splide__slide {
    height: auto;
    display: flex
}

.related-tours-splide .splide__slide>div,.related-tours-splide .splide__slide .tour-card {
    width: 100%
}

.related-tours-splide .splide__arrow {
    background: #fff;
    width: 3rem;
    height: 3rem;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
    opacity: 1;
    transition: all .3s ease
}

.related-tours-splide .splide__arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary)
}

.related-tours-splide .splide__arrow svg {
    fill: var(--color-primary);
    height: 1.2rem;
    width: 1.2rem
}

.related-tours-splide .splide__arrow:hover svg {
    fill: #fff
}

.related-tours-splide .splide__pagination {
    bottom: 0
}

.related-tours-splide .splide__pagination__page.is-active {
    background: var(--color-accent);
    transform: scale(1.2)
}

@media (max-width: 1200px) {
    .related-tours-splide .splide__arrow {
        display:none
    }

    .related-tours-wrapper {
        padding: 0
    }
}

.tour-faq-section {
    padding: 80px 0;
    background-color: #d6831514;
    border-top: 1px solid #f0f0f0
}

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

.faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all .3s ease
}

.faq-item:hover {
    border-color: #ccc;
    box-shadow: 0 5px 15px rgba(0,0,0,.03)
}

.faq-item.active {
    border-color: var(--color-accent);
    background-color: #fffcf5
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #fcfcfc;
    transition: background .3s
}

.faq-item.active .faq-question {
    background-color: transparent
}

.faq-question h4 {
    margin: 0;
    font-size: .95rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.4;
    padding-right: 15px
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #999;
    transition: transform .3s ease,color .3s ease;
    flex-shrink: 0
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-accent)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.25,1,.5,1)
}

.faq-answer-inner {
    padding: 0 20px 20px;
    font-size: .95rem;
    color: #666;
    line-height: 1.6
}

.faq-answer-inner p:last-child {
    margin-bottom: 0
}

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

.tabs-sticky {
    background: var(--color-primary)!important
}
.tripadvisor-widget {
    /* background: #fff; */
    margin-top: 20px;
    /* border: 1px solid #eef0f2; */
    border-radius: 8px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, .08); */
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.ti-header.ti-header-grid.source-Tripadvisor {
    display: none;
}