html,
body,
button,
input,
select,
textarea {
    font-family: 'Manrope', sans-serif;
}

/* FUENTE GLOBAL SITIO */
html,
body,
body *:not(i):not(.fa):not(.fas):not(.far):not(.fab):not(.bi) {
    font-family: 'Manrope', sans-serif !important;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.packages-grid .slider-card-item {
    width: 100%;
    min-width: 0;
}

.packages-grid .slider-card-item>.h-100,
.packages-grid .slider-card-item a,
.packages-grid .slider-card-item .deal-card {
    height: 100%;
}

@media (max-width: 1199.98px) {
    .packages-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .packages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --brand: #464797;
    --brand-dark: #272880;
    --brand-accent: #31339b;
    --text-main: #243042;
    --text-soft: #6b778c;
    --line-soft: #e7edf4;
    --surface-soft: #f5f8fc;
    --white: #ffffff;
}

/* ===== ALERTA SUPERIOR ===== */
.top-alert {
    background: #464797;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    padding: 7px 0;
}

/* ===== HEADER ===== */
.booking-header-wrap {
    background: #464797;
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    margin-bottom: 18px;
    position: relative;
    z-index: 20;
}

.booking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 10px 0;
}

.booking-brand {
    display: flex;
    align-items: center;
    height: 100%;
}

.booking-brand .logo-img {
    height: 46px;
    width: auto;
    display: block;
}

.booking-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #eef2f7;
    font-size: 13px;
}

.booking-contact,
.booking-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.booking-contact a,
.booking-links a {
    color: var(--text-soft);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.booking-contact a:hover,
.booking-links a:hover {
    color: var(--brand);
}

.booking-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    gap: 0;
    color: inherit;
    font-size: 0;
    font-weight: 400;
}

.booking-brand:hover {
    color: inherit;
}

.booking-brand .logo-desktop,
.booking-brand .logo-mobile {
    width: auto;
    object-fit: contain;
}

.booking-main-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-width: 0;
    flex: 1;
    height: 100%;
}

.booking-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.booking-nav a {
    position: relative;
    color: var(--text-soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 8px 0;
    margin: 0;
    transition: color 0.2s ease;
}

.booking-nav a:hover,
.booking-nav a.active {
    color: #ddddddd5;
}

.booking-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--brand);
    transition: width 0.2s ease;
}

.booking-nav a:hover::after,
.booking-nav a.active::after {
    width: 100%;
}

.booking-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.btn-login-header,
.btn-promo-header {
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-login-header {
    border: 1.5px solid var(--brand-accent);
    color: var(--brand-accent);
    background: #fff;
}

.btn-login-header:hover {
    background: #fff4ea;
    color: var(--brand-accent);
}

.btn-promo-header {
    border: 1px solid var(--brand-accent);
    background: var(--brand-accent);
    color: #fff;
}

.btn-promo-header:hover {
    background: #464797;
    color: #fff;
}

/* ===== BUSCADOR ===== */

.travel-search-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.travel-tab {
    height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid #d8e0ec;
    background: #fff;
    color: #64748b;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.travel-tab.disabled-tab {
    opacity: 0.5;
}

.travel-tab.disabled-tab.is-active {
    background: #fff !important;
    color: #6b7280 !important;
    border-color: #e5e7eb !important;
}

.travel-tab:hover,
.travel-tab.is-active {
    border-color: #4a3db8;
    color: #4a3db8;
    background: #fff;
}

.travel-search-panels,
.travel-search-panel-shell {
    margin: 0;
    padding: 0;
}

.travel-panel {
    display: none;
    margin: 0;
    padding: 0;
}

.travel-panel.is-active {
    display: block;
}

.travel-search-form {
    margin: 0;
}

.travel-search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.9fr 0.9fr 140px;
    gap: 12px;
    align-items: end;
}

.travel-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
}

.travel-field label {
    margin: 0;
    color: #1f2a44;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
}

.travel-field .form-control,
.travel-field .form-select,
.country-autocomplete-wrap .form-control {
    height: 48px;
    border-radius: 14px;
    border: 1px solid #cfd8e6;
    background: #fff;
    box-shadow: none;
    padding: 0 16px;
    font-size: 15px;
    color: #1f2a44;
}

.travel-field .form-control:focus,
.travel-field .form-select:focus,
.country-autocomplete-wrap .form-control:focus {
    border-color: #4a3db8;
    box-shadow: 0 0 0 3px rgba(74, 61, 184, 0.08);
}

.country-autocomplete-wrap {
    position: relative;
}

.country-toggle-btn {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #64748b;
    padding: 0;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.travel-submit-wrap {
    display: flex;
    align-items: end;
    margin: 0;
}

.travel-submit-btn {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: #4a33b5;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease;
}

.travel-submit-btn:hover {
    background: #3f2b9c;
    color: #fff;
}

@media (max-width: 1199.98px) {
    .travel-search-grid {
        grid-template-columns: 1fr 1fr;
    }

    .travel-submit-wrap {
        grid-column: span 2;
    }
}

@media (max-width: 767.98px) {
    .travel-search-box {
        padding: 14px 0 16px;
    }

    .travel-search-tabs {
        gap: 10px;
        margin-bottom: 12px;
    }

    .travel-tab {
        height: 40px;
        padding: 0 18px;
        font-size: 14px;
    }

    .travel-search-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .travel-submit-wrap {
        grid-column: auto;
    }

    .travel-submit-btn {
        width: 100%;
    }
}

/* ===== AJUSTE DE GRID POR PANEL ===== */

/* Base */
.travel-search-grid {
    display: grid;
    gap: 12px;
    align-items: end;
}

.travel-submit-wrap {
    display: flex;
    align-items: end;
}

.travel-submit-btn {
    width: 100%;
    height: 48px;
}

/* VUELOS: 6 bloques en una sola fila */
.travel-panel[data-panel="flights"] .travel-search-grid {
    grid-template-columns: 1fr 1fr 1fr 0.9fr 0.9fr 0.95fr 160px;
}

.travel-panel[data-panel="flights"] .travel-submit-wrap {
    grid-column: auto;
}

/* HOTELES: 5 bloques + botón */
.travel-panel[data-panel="hotels"] .travel-search-grid {
    grid-template-columns: 1.2fr 1fr 1fr 0.9fr 0.9fr 160px;
}

.travel-panel[data-panel="hotels"] .travel-submit-wrap {
    grid-column: auto;
}

/* PAQUETES: 4 bloques + botón */
.travel-panel[data-panel="packages"] .travel-search-grid {
    grid-template-columns: 1.15fr 1.15fr 1fr 0.9fr 160px;
}

.travel-panel[data-panel="packages"] .travel-submit-wrap {
    grid-column: auto;
}

/* OFERTAS: 2 bloques + botón */
.travel-panel[data-panel="offers"] .travel-search-grid {
    grid-template-columns: 1fr 1.4fr 180px;
}

.travel-panel[data-panel="offers"] .travel-submit-wrap {
    grid-column: auto;
}

/* ACTIVIDADES: 3 bloques + botón */
.travel-panel[data-panel="activities"] .travel-search-grid {
    grid-template-columns: 1.4fr 1fr 0.9fr 180px;
}

.travel-panel[data-panel="activities"] .travel-submit-wrap {
    grid-column: auto;
}

/* AUTOS: 3 bloques + botón */
.travel-panel[data-panel="cars"] .travel-search-grid {
    grid-template-columns: 1.3fr 1fr 1fr 180px;
}

.travel-panel[data-panel="cars"] .travel-submit-wrap {
    grid-column: auto;
}

/* Labels más compactos */
.travel-field label {
    margin-bottom: 4px;
}

/* ===== TABLET ===== */
@media (max-width: 1199.98px) {

    .travel-panel[data-panel="flights"] .travel-search-grid,
    .travel-panel[data-panel="hotels"] .travel-search-grid,
    .travel-panel[data-panel="packages"] .travel-search-grid,
    .travel-panel[data-panel="offers"] .travel-search-grid,
    .travel-panel[data-panel="activities"] .travel-search-grid,
    .travel-panel[data-panel="cars"] .travel-search-grid {
        grid-template-columns: 1fr 1fr;
    }

    .travel-panel[data-panel="flights"] .travel-submit-wrap,
    .travel-panel[data-panel="hotels"] .travel-submit-wrap,
    .travel-panel[data-panel="packages"] .travel-submit-wrap,
    .travel-panel[data-panel="offers"] .travel-submit-wrap,
    .travel-panel[data-panel="activities"] .travel-submit-wrap,
    .travel-panel[data-panel="cars"] .travel-submit-wrap {
        grid-column: span 2;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 767.98px) {

    .travel-panel[data-panel="flights"] .travel-search-grid,
    .travel-panel[data-panel="hotels"] .travel-search-grid,
    .travel-panel[data-panel="packages"] .travel-search-grid,
    .travel-panel[data-panel="offers"] .travel-search-grid,
    .travel-panel[data-panel="activities"] .travel-search-grid,
    .travel-panel[data-panel="cars"] .travel-search-grid {
        grid-template-columns: 1fr;
    }

    .travel-panel[data-panel="flights"] .travel-submit-wrap,
    .travel-panel[data-panel="hotels"] .travel-submit-wrap,
    .travel-panel[data-panel="packages"] .travel-submit-wrap,
    .travel-panel[data-panel="offers"] .travel-submit-wrap,
    .travel-panel[data-panel="activities"] .travel-submit-wrap,
    .travel-panel[data-panel="cars"] .travel-submit-wrap {
        grid-column: auto;
    }
}

/* =========================================
   MOBILE FIXES - HOME / HEADER / SEARCH
========================================= */
@media (max-width: 767.98px) {

    /* ===== HEADER ===== */
    .booking-header-wrap {
        margin-bottom: 20px;
    }

    .booking-header {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px 16px 10px;
    }

    .booking-brand {
        justify-content: flex-start;
    }

    .booking-brand .logo-img,
    .booking-brand img {
        height: 38px;
        max-width: 170px;
        width: auto;
    }

    .booking-main-right {
        display: flex;
        padding-top: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        width: 100%;
    }

    /* ===== SEARCH BOX ===== */
    .travel-search-box {
        padding: 14px 0 16px;
    }

    .travel-search-tabs,
    .travel-search-panels {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .travel-search-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 12px;
    }

    .travel-tab {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        height: 42px;
        padding: 0 14px;
        border-radius: 999px;
        font-size: 14px;
        justify-content: center;
    }

    .travel-tab span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .travel-search-panel-shell {
        width: 100%;
    }

    .travel-panel {
        padding: 0;
    }

    .travel-panel.is-active {
        display: block;
    }

    .travel-search-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .travel-field {
        gap: 5px;
    }

    .travel-field label {
        font-size: 13px;
        line-height: 1.15;
        margin: 0;
    }

    .travel-field .form-control,
    .travel-field .form-select,
    .country-autocomplete-wrap .form-control {
        height: 46px;
        border-radius: 14px;
        font-size: 15px;
        padding: 0 14px;
    }

    .travel-submit-wrap {
        grid-column: auto !important;
    }

    .travel-submit-btn {
        width: 100%;
        height: 48px;
        border-radius: 14px;
        font-size: 15px;
    }

    /* ===== HERO ===== */
    .hero-section,
    .promo-hero,
    .hero-slider-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-slide,
    .promo-slide,
    .hero-card {
        border-radius: 24px;
        min-height: auto;
    }

    /* ===== FLOATING ASSISTANT ===== */
    .travel-assistant-floating,
    .assistant-floating-btn {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        max-width: none;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .booking-header-wrap .booking-header {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        grid-template-areas:
            "brand actions"
            "nav nav";
        align-items: start !important;
        column-gap: 12px !important;
        row-gap: 22px !important;
        padding: 16px 16px 16px !important;
    }

    .booking-header-wrap .booking-brand {
        grid-area: brand !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        padding: 0 !important;
        min-width: 0 !important;
    }

    .booking-header-wrap .booking-brand .logo-img,
    .booking-header-wrap .booking-brand img {
        display: block !important;
        height: 62px !important;
        width: auto !important;
        max-width: 170px !important;
        object-fit: contain !important;
    }

    .booking-header-wrap .booking-main-right {
        display: contents !important;
    }

    .booking-header-wrap .booking-actions {
        grid-area: actions !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        margin: 0 !important;
        width: auto !important;
    }

    .booking-header-wrap .btn-promo-header {
        width: auto !important;
        min-width: 116px !important;
        height: 38px !important;
        padding: 0 16px !important;
        border-radius: 999px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
    }

    .booking-header-wrap .booking-nav {
        grid-area: nav !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 10px 14px !important;
        width: 100% !important;
        margin: 6px 0 0 0 !important;
        padding: 0 !important;
    }

    .booking-header-wrap .booking-nav a {
        left: 6px;
        display: inline-flex !important;
        align-items: flex-start !important;
        font-size: 15px !important;
        line-height: 1.2 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

.booking-brand {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2px;
}

.booking-brand .logo-img,
.booking-brand img {
    height: 46px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    display: block;
}

/* ===== SWITCH DEFINITIVO DE LOGO ===== */
.booking-brand {
    position: relative;
}

.booking-brand .logo-desktop,
.booking-brand .logo-mobile {
    width: auto !important;
    object-fit: contain !important;
}

/* Desktop */
.booking-brand .logo-desktop {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    height: 64px !important;
    max-width: 190px !important;
}

.booking-brand .logo-mobile {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
    height: 0 !important;
    max-width: 0 !important;
    overflow: hidden !important;
}

/* Mobile */
@media (max-width: 767.98px) {

    /* Si usás logo mobile */
    .booking-header-wrap .booking-brand .logo-mobile {
        display: block !important;
        height: 56px !important;
        width: auto !important;
        max-width: 210px !important;
        object-fit: contain !important;
    }

    .booking-header-wrap .booking-actions .logo-mobile {
        grid-area: actions !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        margin: 0 !important;
    }

    .booking-header-wrap .btn-promo-header .logo-mobile {
        height: 40px !important;
        min-width: 118px !important;
        padding: 0 16px !important;
        font-size: 13px !important;
        border-radius: 999px !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 767.98px) {
    .booking-header-wrap .booking-brand img {
        height: 58px !important;
        max-width: 220px !important;
        width: auto !important;
        object-fit: contain !important;
    }
}

@media (max-width: 767.98px) {
    .booking-header-wrap .booking-header {
        align-items: center !important;
    }

    .booking-header-wrap .booking-actions {
        align-items: center !important;
    }
}

/* ===== CONTENCION REAL DEL BUSCADOR ===== */
.travel-search-box {
    background: #f6f9fc;
    border-top: 1px solid #edf2f7;
    padding: 16px 0 18px;
    overflow: hidden;
}

.travel-search-tabs,
.travel-search-panels {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.travel-search-panel-shell {
    width: 100%;
    box-sizing: border-box;
}

/* Para que ningún input empuje de más */
.travel-search-grid,
.travel-search-grid>* {
    min-width: 0;
}

#beneficios .row>[class*="col-"] {
    display: flex;
}

#beneficios .row>[class*="col-"] {
    display: flex;
}

.featured-tour-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #dbe4ef;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(28, 55, 90, 0.06);
}

.featured-tour-card__image {
    height: 210px;
    overflow: hidden;
    background: #eef3f8;
}

.featured-tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-tour-card__body {
    padding: 18px 18px 16px;
    min-height: 108px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.featured-tour-card__meta {
    display: block;
    margin-bottom: 12px;
    color: #95a0bd;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.featured-tour-card__title {
    margin: 0;
    color: #1f3a5a;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.35em * 2);
}

.featured-tour-card__price {
    margin-top: auto;
    padding: 18px;
    border-top: 1px solid #e6edf5;
    background: #fff;
}

.featured-tour-card__price span {
    display: block;
    margin-bottom: 10px;
    color: #7a8ba3;
    font-size: 14px;
    line-height: 1.2;
}

.featured-tour-card__price strong {
    display: block;
    margin-bottom: 10px;
    color: #1f3a5a;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
}

.featured-tour-card__price small {
    display: block;
    color: #7b8ca5;
    font-size: 13px;
    line-height: 1.45;
}

.featured-tour-card__footer {
    padding: 16px 18px;
    border-top: 1px solid #e6edf5;
    background: #faf7f4;
}

.featured-tour-card__footer span {
    color: #464797;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.featured-tour-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .featured-tour-card__image {
        height: 190px;
    }

    .featured-tour-card__body {
        min-height: 100px;
        padding: 16px;
    }

    .featured-tour-card__title {
        font-size: 17px;
    }

    .featured-tour-card__price {
        padding: 16px;
    }

    .featured-tour-card__footer {
        padding: 14px 16px;
    }
}

/* ===== FILA PRINCIPAL ===== */

.booking-brand {
    font-size: 2.1rem;
    font-weight: 800;
    color: #464797;
    text-decoration: none;
    white-space: nowrap;
}

.booking-brand:hover {
    color: #464797;
}

.booking-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.booking-nav a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding-bottom: 8px;
    transition: color .2s ease;
}

.booking-nav a:hover {
    color: #ff6b00;
}

.booking-nav a.active {
    color: #5356ff;
}

.booking-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: #464797;
    transition: width .22s ease;
}

.booking-nav a:hover::after,
.booking-nav a.active::after {
    width: 100%;
}

.booking-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-login-header {
    border: 1.5px solid #ff6b00;
    color: #ff6b00;
    background: #fff;
    border-radius: 999px;
    padding: 11px 22px;
    font-weight: 700;
    text-decoration: none;
}

.btn-login-header:hover {
    background: #fff3eb;
    color: #ff6b00;
}

.btn-promo-header {
    background: #ff6b00;
    color: #fff;
    border-radius: 999px;
    padding: 11px 22px;
    font-weight: 700;
    border: none;
    text-decoration: none;
}

.btn-promo-header:hover {
    background: #eb6200;
    color: #fff;
}

/* ===== BLOQUE BUSCADOR ===== */
.booking-search-shell {
    background: #f7f9fc;
    border: 1px solid #e8eef6;
    margin-bottom: 8px;
    border-radius: 24px;
    padding: 18px;
    margin: 6px 0 22px;
}

/* ===== TABS ===== */
.booking-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.booking-tab {
    background: transparent;
    border: 1px solid transparent;
    color: #6f7d92;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    transition: all .2s ease;
}

.booking-tab:hover {
    background: #eef4fb;
    color: #464797;
}

.booking-tab.active {
    background: #ffffff;
    border-color: #dce7f3;
    color: #464797;
    box-shadow: 0 4px 12px rgba(25, 40, 72, 0.06);
}

/* ===== FORMULARIO ===== */
.booking-form {
    background: #ffffff;
    border: 1px solid #e8eef6;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.booking-input-icon {
    position: relative;
}

.booking-input-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #667085;
    z-index: 3;
    font-size: 14px;
}

.booking-control {
    min-height: 56px;
    border-radius: 14px;
    border: 1px solid #dbe5f0;
    box-shadow: none;
    font-size: 1rem;
    color: #4b5563;
    padding-left: 44px;
    background: #fff;
}

.booking-control-select {
    padding-left: 16px;
}

.booking-control-passengers {
    padding-left: 40px;
    text-align: center;
}

.booking-control:focus,
.booking-control-passengers:focus,
.booking-control-select:focus {
    border-color: #464797;
    box-shadow: 0 0 0 0.2rem rgba(45, 143, 226, 0.10);
}

/* ===== BOTON BUSCAR ===== */
.booking-btn-search {
    min-height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff6b00, #e45700);
    color: #fff;
    border: none;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.18);
}

.booking-btn-search:hover {
    color: #fff;
    background: linear-gradient(135deg, #f26400, #d94f00);
}

/* ===== FILA INFERIOR ===== */
.booking-bottom-row {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #edf2f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.booking-extra-options .form-check-label {
    color: #667085;
    font-weight: 600;
}

.booking-ai-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #667085;
    font-weight: 700;
}

.booking-ai-toggle .form-switch .form-check-input {
    width: 42px;
    height: 22px;
}

/* ===== NOTA ===== */
.booking-subnote {
    margin-top: 12px;
    color: #7a8799;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .booking-top-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-main-row {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .booking-nav {
        justify-content: flex-start;
        gap: 16px;
    }

    .booking-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .booking-actions .btn-login-header,
    .booking-actions .btn-promo-header {
        width: 100%;
        text-align: center;
    }

    .booking-search-shell {
        padding: 14px;
    }

    .booking-form {
        padding: 14px;
    }

    .booking-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.00), rgba(255, 255, 255, 0.04));
}

.hero-header .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(5px);
    font-weight: 700;
    margin-bottom: 26px;
}

.hero-header h1 {
    color: #ffffff !important;
    font-size: 4rem;
    line-height: 1.05;
    font-weight: 800;
    max-width: 650px;
    margin-bottom: 22px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-header p {
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: 1.35rem;
    line-height: 1.6;
    max-width: 650px;
    margin-bottom: 0;
}

/* ===== SEARCH BOX ===== */
.hero-search-box {
    position: relative;
    z-index: 5;
    margin-top: -95px;
}

.search-panel {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(18, 60, 137, 0.12);
    padding: 28px 26px 24px;
    border: 1px solid #eef3f9;
}

.search-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.search-tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 20px;
    border-radius: 999px;
    background: #f0f4f8;
    color: #17325c;
    font-weight: 700;
    text-decoration: none;
    border: 0;
}

.search-tab.active {
    background: linear-gradient(90deg, #44a3ea, #2d78c7);
    color: #fff;
}

.search-panel label {
    font-size: 0.9rem;
    font-weight: 800;
    color: #6e7b8f;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.search-panel .form-control,
.search-panel .form-select {
    border-radius: 18px;
    border: 1px solid #dbe6f2;
    min-height: 58px;
    font-size: 1.05rem;
    color: #5f6f85;
    box-shadow: none;
}

.search-panel .form-control:focus,
.search-panel .form-select:focus {
    border-color: #49a7ea;
    box-shadow: 0 0 0 0.2rem rgba(73, 167, 234, 0.12);
}

.search-panel .btn-search {
    min-height: 56px;
    border-radius: 18px;
    font-size: 1.15rem;
    font-weight: 800;
    background: linear-gradient(90deg, #44a3ea, #2d78c7);
    border: none;
}

.search-options {
    margin-top: 16px;
    color: #16325c;
    font-size: 1rem;
}

.search-note {
    margin-top: 14px;
    color: #6d7a8e;
    font-size: 0.98rem;
}

/* ===== GENERAL ===== */
body {
    background: #eef7fd;
}

.section-soft {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(19, 60, 137, 0.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .navbar {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .hero-header {
        padding: 60px 0 150px;
    }

    .hero-header h1 {
        font-size: 2.5rem;
        max-width: 100%;
    }

    .hero-header p {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .hero-search-box {
        margin-top: -70px;
    }

    .search-panel {
        padding: 20px;
        border-radius: 22px;
    }
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/* ===== BLOQUES COMERCIALES HOME ===== */
.home-commercial-blocks {
    background: #eef5fb;
    padding-top: 10px;
}

.booking-header-wrap {
    margin-bottom: 28px;
    border-bottom: 1px solid #e9eef5;
}

/* ===== BANNER ===== */
.promo-slider-section {
    position: relative;
    margin-top: 40px;
    margin-bottom: 70px;
}

.promo-carousel-card {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
    background: #464797;
}

.promo-slide {
    position: relative;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 42px;
}

.promo-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(139, 37, 255, 0.432) 0%, rgba(255, 132, 110, 0.185) 45%, rgba(99, 31, 57, 0.199) 100%);
}

.promo-slide-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    color: #fff;
}

.promo-badge {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    margin-bottom: 18px;
}

.promo-slide-content h2 {
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 14px;
    color: #fff;
}

.promo-slide-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
}

.promo-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: #ff7300;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.promo-cta-btn:hover {
    background: #464797;
    color: #fff;
}

.promo-carousel-control {
    width: 56px;
}

.promo-carousel-indicators {
    margin-bottom: 18px;
}

.promo-carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
}

.promo-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: -20px;
    position: relative;
    z-index: 5;
    padding: 0 28px;
}

.promo-feature-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border-radius: 22px;
    padding: 22px 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.promo-feature-card h5 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e293b;
}

.promo-feature-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

.promo-feature-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
    background: #ebebeb;
    color: #464797;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

@media (max-width: 991px) {
    .promo-slide {
        min-height: 320px;
        padding: 32px 24px;
    }

    .promo-slide-content h2 {
        font-size: 2.2rem;
    }

    .promo-slide-content p {
        font-size: 1rem;
    }

    .promo-feature-cards {
        grid-template-columns: 1fr;
        margin-top: 18px;
        padding: 0;
    }
}

@media (max-width: 576px) {
    .promo-slide {
        min-height: 290px;
        padding: 26px 18px;
    }

    .promo-slide-content h2 {
        font-size: 1.8rem;
    }

    .promo-slide-content p {
        font-size: 0.95rem;
    }

    .promo-cta-btn {
        width: 100%;
    }
}

.mini-benefit-card {
    background: #fff;
    border: 1px solid #e7eef7;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(21, 35, 64, 0.08);
    padding: 22px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    height: 100%;
}

.mini-benefit-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: #f2e8ff;
    color: #464797;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.mini-benefit-card h5 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #24255c;
}

.mini-benefit-card p {
    margin: 0;
    font-size: .94rem;
    color: #6b7a90;
    line-height: 1.5;
}

/* ===== TITULOS DE SECCION ===== */
.section-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    color: #464797;
    margin-bottom: 8px;
}

.section-title-main {
    font-size: 2rem;
    font-weight: 800;
    color: #243b53;
}

/* ===== CARDS DE OFERTAS ===== */
.deal-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #dbe4ef;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(28, 55, 90, 0.06);
}

@media (max-width: 767.98px) {
    .travel-deals-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .section-kicker {
        font-size: 12px;
        letter-spacing: 0.08em;
    }

    .section-title-main {
        font-size: 22px;
        line-height: 1.2;
        margin-top: 6px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .deal-card {
        border-radius: 22px;
    }

    .deal-card-image {
        height: 185px;
    }

    .deal-date-badge {
        left: 14px;
        right: 14px;
        bottom: 12px;
        min-height: 36px;
        padding: 8px 12px;
        font-size: 11px;
        gap: 6px;
    }

    .deal-date-badge i {
        font-size: 11px;
    }

    .deal-card-body {
        padding: 16px 16px 14px;
    }

    .deal-card-chips {
        gap: 8px;
        margin-bottom: 12px;
    }

    .deal-chip {
        min-height: 30px;
        padding: 6px 10px;
        font-size: 11px;
    }

    .deal-card-body h4 {
        font-size: 17px;
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .deal-card-body p {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .deal-meta,
    .deal-hotel-inline,
    .deal-meta-separator {
        font-size: 11px;
        line-height: 1.4;
    }

    .deal-card-price {
        padding: 16px;
    }

    .deal-card-price span {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .deal-card-price strong {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .deal-card-price small {
        font-size: 12px;
        line-height: 1.45;
    }

    .deal-card-footer {
        padding: 13px 16px;
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .travel-deals-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-heading-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 18px !important;
    }

    .section-heading-wrap>div {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .section-kicker {
        display: block;
        margin-bottom: 8px;
        text-align: center;
    }

    .section-title-main {
        margin: 0;
        text-align: center;
        font-size: 22px;
        line-height: 1.22;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        justify-content: center;
    }

    .packages-grid .slider-card-item {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
}

.deal-card-image {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #eef3f8;
}

.deal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.deal-date-badge {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #d8e2ee;
    color: #243b5a;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: 0 8px 20px rgba(20, 40, 80, 0.10);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 2;
}

.deal-date-badge i {
    color: #4d59ff;
    font-size: 12px;
    flex: 0 0 auto;
}

.deal-card-body {
    flex: 1 1 auto;
    padding: 18px 18px 16px;
}

.deal-card-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
    min-height: 32px;
}

.deal-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef2f7;
    color: #617694;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.deal-card-body h4 {
    margin: 0 0 10px;
    color: #223b5b;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.deal-card-body p {
    margin: 0 0 8px;
    color: #5f7392;
    font-size: 16px;
    line-height: 1.35;
}

.deal-transport-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px;
    min-height: 38px;
}

.deal-meta,
.deal-hotel-inline,
.deal-meta-separator {
    font-size: 12px;
    line-height: 1.45;
}

.deal-meta {
    color: #7a89a3;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.deal-hotel-inline {
    color: #392bff;
    font-weight: 800;
}

.deal-meta-separator {
    color: #7a89a3;
    font-weight: 700;
}

.deal-card-price {
    padding: 18px 18px 16px;
    border-top: 1px solid #e6edf5;
    background: #ffffff;
}

.deal-card-price span {
    display: block;
    margin-bottom: 8px;
    color: #7a8ba3;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.deal-card-price strong {
    display: block;
    margin-bottom: 8px;
    color: #223b5b;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.deal-card-price small {
    display: block;
    color: #7b8ca5;
    font-size: 13px;
    line-height: 1.5;
}

.deal-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-top: 1px solid #e6edf5;
    background: #faf7f4;
    color: #5768ff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.deal-card-footer i {
    color: #5759da;
    font-size: 13px;
}

@media (max-width: 767.98px) {
    .deal-card-image {
        height: 180px;
    }

    .deal-date-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        font-size: 11px;
        min-height: 36px;
        padding: 8px 12px;
    }

    .deal-card-body {
        padding: 16px 16px 14px;
    }

    .deal-card-body h4 {
        font-size: 20px;
    }

    .deal-card-price strong {
        font-size: 30px;
    }
}

.deal-card-body small {
    display: block;
    color: #7d8a9b;
    margin-bottom: 12px;
}

.deal-chip {
    display: inline-block;
    background: #eef3f8;
    color: #54657c;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
}

.deal-card-price {
    padding: 16px 18px;
    border-bottom: 1px solid #edf2f8;
}

.deal-card-price span,
.deal-card-price small {
    display: block;
    color: #7d8a9b;
    font-size: .86rem;
}

.deal-card-price strong {
    display: block;
    font-size: 2rem;
    line-height: 1.1;
    color: #243b53;
    margin: 7px 0 8px;
    font-weight: 800;
}

.deal-card-footer {
    padding: 12px 18px;
    font-size: .9rem;
    color: #6664f5;
    font-weight: 700;
    background: #fffaf6;
}

/* ===== DESTINOS VISUALES ===== */
.destination-highlight-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    min-height: 230px;
    box-shadow: 0 14px 30px rgba(18, 37, 63, 0.08);
}

.destination-highlight-card.large {
    min-height: 490px;
}

.destination-highlight-card.small {
    min-height: 228px;
}

.destination-highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.destination-highlight-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 18, 34, .75), rgba(10, 18, 34, .12));
}

.destination-highlight-card:hover img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
}

.destination-overlay span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    margin-bottom: 8px;
    opacity: .9;
}

.destination-overlay h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

/* ===== RESPONSIVE ===== */

.destination-highlight-card.large,
.destination-highlight-card.small {
    min-height: 260px;
}

.section-title-main {
    font-size: 1.6rem;
}

.deal-card-image img {
    height: 190px;
}






/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** ACTIVIDADES ***/

.activity-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #5f6b7a;
}

.activity-breadcrumb a {
    color: #464797;
    text-decoration: none;
}

.activity-breadcrumb a:hover {
    color: #2b2d91;
}

.activity-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #464797;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 22px;
}

.activity-back-link:hover {
    color: #2a3ac9;
}

.activity-detail-page {
    width: 100%;
    padding: 40px 0 64px;
}


.tour-purchase-info-section {
    margin-top: 40px;
}

.tour-purchase-card,
.tour-map-card {
    background: #fff;
    border: 1px solid #e6edf5;
    padding: 28px 30px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.tour-purchase-title {
    font-size: 34px;
    font-weight: 800;
    color: #183b63;
    margin-bottom: 28px;
}

.tour-purchase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #d9e3ef;
}

.tour-purchase-col h4 {
    font-size: 28px;
    font-weight: 700;
    color: #183b63;
    margin-bottom: 18px;
}

.tour-check-list,
.tour-cross-list,
.tour-general-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-check-list li,
.tour-cross-list li,
.tour-general-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #5b6b7f;
    line-height: 1.6;
    font-size: 15px;
}

.tour-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #0f9d7a;
    font-weight: 700;
}

.tour-cross-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    top: 0;
    color: #7b8794;
    font-weight: 700;
}

.tour-general-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    color: #5b6b7f;
    font-weight: 700;
}

.tour-info-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    padding: 26px 0;
    border-bottom: 1px solid #d9e3ef;
}

.tour-info-row-last {
    border-bottom: none;
    padding-bottom: 0;
}

.tour-info-label {
    font-size: 18px;
    font-weight: 700;
    color: #183b63;
    line-height: 1.35;
}

.tour-info-content {
    font-size: 15px;
    color: #5b6b7f;
    line-height: 1.7;
}

.tour-muted-text {
    color: #7b8794;
    font-size: 15px;
}

.tour-map-box {
    position: relative;
    min-height: 260px;
    border-radius: 22px;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, .85), rgba(255, 255, 255, .85)),
        url("https://www.transparenttextures.com/patterns/cubes.png");
    border: 1px solid #e6edf5;
}

.tour-map-overlay-card {
    position: absolute;
    left: 30px;
    bottom: 28px;
    max-width: 480px;
    background: #fff;
    border: 1px solid #e6edf5;
    border-radius: 16px;
    padding: 18px 18px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.tour-map-overlay-card p {
    color: #5b6b7f;
    font-size: 14px;
    line-height: 1.5;
}

.tour-map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid #5a35f0;
    color: #5a35f0;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 14px;
    transition: .2s ease;
}

.tour-map-btn:hover {
    background: #5a35f0;
    color: #fff;
}

@media (max-width: 991px) {
    .tour-purchase-grid {
        grid-template-columns: 1fr;
    }

    .tour-info-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tour-map-overlay-card {
        position: static;
        max-width: 100%;
        margin: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .tour-purchase-title {
        font-size: 28px;
    }

    .tour-purchase-col h4 {
        font-size: 22px;
    }
}

/* ===== FIX LAYOUT DETALLE ACTIVIDAD ===== */

.activity-shell-bottom {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 18px 56px;
    box-sizing: border-box;
}

.activity-shell-bottom .tour-purchase-info-section,
.activity-shell-bottom .tour-map-card,
.activity-shell-bottom .tour-related-block {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.activity-shell-bottom .tour-related-slider {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

@media (max-width: 1199.98px) {
    .activity-shell-bottom {
        max-width: 100%;
        padding: 0 16px 46px;
    }

    .activity-shell-bottom .tour-related-slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .activity-shell-bottom {
        padding: 0 14px 38px;
    }

    .activity-shell-bottom .tour-related-slider {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 767.98px) {
    .tour-related-block {
        text-align: center;
    }

    .tour-section-title {
        text-align: center;
        margin-bottom: 18px;
    }

    .tour-related-slider {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
        gap: 18px;
    }

    .tour-related-slide-item {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

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

    .tour-related-card {
        width: 100%;
    }
}

.activity-detail-page {
    width: 100%;
    padding: 32px 0 56px;
}

.activity-shell {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 18px;
    box-sizing: border-box;
    color: rgb(32, 32, 32);
}

.activity-hero-grid {
    --hero-height: 410px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
    align-items: start;
    margin-bottom: 28px;
}

.activity-gallery-carousel-wrap,
.activity-title-card,
.activity-content-stack,
.activity-content-card,
.activity-mini-card,
.activity-booking-section,
.activity-option-card,
.activity-side-sticky,
.activity-side-card,
.tour-purchase-card,
.tour-map-card,
.tour-related-block {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.activity-gallery-carousel-wrap {
    overflow: visible;
}

.activity-title-card {
    height: auto;
    min-height: var(--hero-height);
}

.activity-content-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-width: 0;
}

.activity-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.activity-option-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
}

.activity-side-sticky {
    position: static;
    margin-top: 0;
}

.tour-purchase-info-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tour-related-slider {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

@media (max-width: 1199.98px) {
    .activity-shell {
        max-width: 100%;
        padding: 0 16px;
    }

    .activity-hero-grid {
        grid-template-columns: 1fr;
    }

    .activity-title-card {
        min-height: auto;
    }

    .activity-option-card {
        grid-template-columns: 1fr;
    }

    .activity-option-pricebox {
        border-left: 0;
        border-top: 1px solid #e6edf5;
    }

    .activity-info-grid {
        grid-template-columns: 1fr;
    }

    .tour-related-slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .activity-detail-page {
        padding: 22px 0 42px;
    }

    .activity-shell {
        padding: 0 14px;
    }

    .activity-hero-grid,
    .activity-content-stack,
    .activity-info-grid,
    .tour-purchase-info-section,
    .tour-related-slider {
        gap: 18px;
    }

    .tour-related-slider {
        grid-template-columns: 1fr;
    }
}

.activity-gallery-carousel-wrap {
    width: 100%;
}

.activity-gallery-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #f3f6fb;
}

.activity-gallery-carousel .carousel-inner {
    width: 100%;
    max-width: 100%;
    border-radius: 28px;
}

.activity-gallery-carousel .carousel-item {
    width: 100%;
    height: 520px;
}

.activity-gallery-carousel .carousel-item img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.activity-gallery-carousel .carousel-control-prev,
.activity-gallery-carousel .carousel-control-next {
    width: 46px;
    height: 46px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(17, 24, 39, 0.55);
    border-radius: 50%;
    opacity: 1;
}

.activity-gallery-carousel .carousel-control-prev {
    left: 16px;
}

.activity-gallery-carousel .carousel-control-next {
    right: 16px;
}

.activity-gallery-carousel .carousel-control-prev-icon,
.activity-gallery-carousel .carousel-control-next-icon {
    background-size: 18px 18px;
}

.activity-gallery-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    border: 0;
    background: #ffffff;
    color: #243b5a;
    font-weight: 700;
    border-radius: 999px;
    padding: 12px 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.activity-gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}

.activity-gallery-thumbs::-webkit-scrollbar {
    height: 6px;
}

.activity-gallery-thumb {
    border: 0;
    background: transparent;
    padding: 0;
    flex: 0 0 auto;
    border-radius: 14px;
    overflow: hidden;
    opacity: 0.9;
    transition: 0.2s ease;
}

.activity-gallery-thumb.is-active,
.activity-gallery-thumb:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.activity-gallery-thumb img {
    width: 92px;
    height: 72px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

@media (max-width: 991.98px) {
    .activity-gallery-carousel .carousel-item {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .activity-shell {
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }

    .activity-gallery-carousel {
        border-radius: 24px;
    }

    .activity-gallery-carousel .carousel-inner {
        border-radius: 24px;
    }

    .activity-gallery-carousel .carousel-item {
        height: 280px;
    }

    .activity-gallery-carousel .carousel-control-prev,
    .activity-gallery-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .activity-gallery-carousel .carousel-control-prev {
        left: 10px;
    }

    .activity-gallery-carousel .carousel-control-next {
        right: 10px;
    }

    .activity-gallery-badge {
        top: 14px;
        left: 14px;
        padding: 10px 16px;
        font-size: 14px;
    }

    .activity-gallery-thumb img {
        width: 78px;
        height: 60px;
        border-radius: 12px;
    }
}

.activity-title-card,
.activity-content-card,
.activity-side-card,
.activity-mini-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.activity-title-card {
    height: var(--hero-height);
    min-height: var(--hero-height);
    background: #fff;
    border-radius: 28px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activity-shell,
.activity-hero-grid,
.activity-gallery-carousel-wrap,
.activity-title-card,
.activity-summary-card,
.activity-content-card,
.activity-sidebar,
.activity-main-content {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    min-height: 0;
}

.activity-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

.activity-title-card,
.activity-summary-card,
.activity-content-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .activity-hero-grid {
        grid-template-columns: minmax(0, 1fr) 420px;
        align-items: start;
    }
}

.activity-title {
    font-size: 28px;
    line-height: 0.96;
    font-weight: 800;
    color: #21345d;
    margin: 0 0 22px;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}

.activity-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
    gap: 28px;
    align-items: start;
}

.activity-hero-media {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 16px;
    min-width: 0;
}

.activity-summary {
    color: #5b6778;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.activity-inline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.activity-inline-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 15px;
    font-weight: 600;
}

.activity-inline-feature i {
    color: #305186;
    font-size: 16px;
}

.activity-body-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.activity-main-column {
    min-width: 0;
}

.activity-booking-section {
    margin-bottom: 26px;
}

.activity-booking-title {
    font-size: 24px;
    font-weight: 800;
    color: #1f3556;
    margin-bottom: 18px;
}

.activity-option-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: start;
    background: #fff;
    border: 1px solid #dfe6ef;
    border-radius: 18px;
    overflow: visible;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.activity-option-main {
    padding: 22px 20px;
}

.activity-option-pricebox {
    border-left: 1px solid #e6edf5;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
}

.activity-option-ribbons {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.activity-option-ribbon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 32px;
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.activity-option-ribbon-green {
    background: #0f1b8b;
}

.activity-option-ribbon-orange {
    background: #6b75fc;
}

.activity-option-name {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    color: #1f3556;
    margin-bottom: 10px;
}

.activity-option-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #5b6778;
    font-size: 15px;
    font-weight: 500;
}

.activity-option-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.activity-option-divider {
    height: 1px;
    background: #e8edf3;
    margin: 18px 0 16px;
}

.activity-option-subtitle {
    font-size: 15px;
    font-weight: 800;
    color: #464797;
    margin-bottom: 10px;
}

.activity-option-include-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
    line-height: 1.6;
}

.activity-option-include-item i {
    color: #464797;
    font-size: 18px;
    margin-top: 2px;
}

.activity-option-more {
    margin-top: 18px;
    margin-bottom: 18px;
}

.activity-option-toggle {
    background: transparent;
    border: none;
    padding: 0;
    color: #464797;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.activity-option-extra {
    margin-top: 12px;
    color: #5b6778;
    line-height: 1.7;
}

.activity-radio-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 16px;
}

.activity-radio-line input {
    display: none;
}

.activity-radio-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    border: 2px solid #464797;
    margin-top: 2px;
    position: relative;
}

.activity-radio-line input:checked+.activity-radio-custom::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #464797;
    position: absolute;
    top: 3px;
    left: 3px;
}

.activity-radio-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.activity-radio-content strong {
    color: #1f3556;
    font-size: 16px;
    font-weight: 800;
}

.activity-radio-content small {
    color: #5b6778;
    font-size: 14px;
    line-height: 1.6;
}

.activity-radio-line-muted {
    margin-bottom: 0;
}

.activity-badge-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ede9fe;
    color: #464797;
    font-size: 11px;
    font-weight: 800;
    border-radius: 8px;
    padding: 3px 6px;
    margin-left: 6px;
}

.activity-option-selection {
    margin-top: 8px;
}

.activity-option-form-row {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.activity-option-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.activity-option-field label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #64748b;
}

.activity-option-field .form-control,
.activity-option-field .form-select {
    min-height: 46px;
    border-radius: 10px;
    border: 1px solid #cfd8e3;
    box-shadow: none;
    padding: 10px 12px;
}

.activity-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.activity-option-field-full {
    grid-column: 1 / -1;
}

.activity-option-field textarea.form-control {
    min-height: 96px;
    resize: vertical;
}

.activity-option-price-label {
    font-size: 14px;
    font-weight: 800;
    color: #1f3556;
    margin-bottom: 8px;
}

.activity-option-old-price {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.activity-option-price {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    color: #1f3556;
    margin-bottom: 8px;
}

.activity-option-tax-note {
    font-size: 14px;
    color: #5b6778;
    line-height: 1.5;
    margin-bottom: 18px;
}

.activity-option-submit {
    width: 100%;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #464797, #2130b6);
    color: #fff;
    font-weight: 800;
    padding: 14px 18px;
}

.activity-option-side-note {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
}

.activity-content-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.activity-content-card {
    padding: 28px;
}

.activity-description-card {
    padding: 30px 28px;
}

.activity-recommendations-card {
    padding: 24px 28px;
}

.activity-section-title {
    font-size: 30px;
    font-weight: 800;
    color: #1f3556;
    margin-bottom: 18px;
}

.activity-richtext,
.activity-text {
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
}

.activity-richtext p:last-child,
.activity-text p:last-child {
    margin-bottom: 0;
}

.activity-richtext ul,
.activity-text ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.activity-richtext li,
.activity-text li {
    margin-bottom: 8px;
}

.activity-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.activity-mini-card {
    padding: 24px 26px;
    min-height: 215px;
}

.activity-mini-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1f3556;
    margin-bottom: 14px;
}

.activity-side-sticky {
    position: sticky;
    top: 24px;
}

.activity-side-card {
    padding: 26px;
}

.departures-card {
    margin-top: 0;
}

.departure-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    margin-bottom: 12px;
    background: #fcfcfd;
}

.departure-date {
    font-weight: 700;
    color: #1f3556;
}

.departure-status {
    color: #0f766e;
    background: #ecfeff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 800;
    text-decoration: none;
    background: #eef5e2;
    color: #5c8e16;
    margin-top: 12px;
}

.reservation-success {
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    color: #166534;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.reservation-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 16px;
}

@media (max-width: 1199.98px) {

    .activity-hero-grid,
    .activity-body-grid {
        grid-template-columns: 1fr;
    }

    .activity-title-card {
        min-height: auto;
    }

    .activity-side-sticky {
        position: static;
    }

    .activity-option-card {
        grid-template-columns: 1fr;
    }

    .activity-option-pricebox {
        border-left: 0;
        border-top: 1px solid #e6edf5;
    }
}

@media (max-width: 991.98px) {
    .activity-gallery {
        grid-template-columns: 1fr;
    }

    .activity-gallery-side {
        grid-template-rows: auto auto;
    }

    .activity-gallery-main {
        min-height: 520px;
    }

    .activity-title {
        font-size: 36px;
    }

    .activity-content-card,
    .activity-mini-card,
    .activity-side-card,
    .activity-title-card {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767.98px) {

    .activity-option-form-row,
    .activity-contact-grid,
    .activity-info-grid {
        grid-template-columns: 1fr;
    }

    .activity-inline-features {
        flex-direction: column;
        gap: 10px;
    }

    .activity-booking-title {
        font-size: 20px;
    }

    .activity-option-name {
        font-size: 24px;
    }
}


.passenger-picker {
    position: relative;
}

.passenger-picker-button {
    width: 100%;
    min-height: 46px;
    border-radius: 10px;
    border: 1px solid #cfd8e3;
    background: #fff;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #475569;
    font-size: 15px;
    font-weight: 500;
}

.passenger-picker-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 330px;
    background: #fff;
    border: 1px solid #dfe6ef;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    padding: 18px 18px 14px;
    z-index: 50;
}

.passenger-picker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.passenger-picker-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.passenger-picker-info strong {
    font-size: 16px;
    color: #1f3556;
    font-weight: 700;
}

.passenger-picker-info small {
    color: #94a3b8;
    font-size: 13px;
    margin-top: 2px;
}

.passenger-picker-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.passenger-minus,
.passenger-plus {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 28px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #334155;
}

.passenger-count {
    min-width: 16px;
    text-align: center;
    font-size: 20px;
    color: #1f3556;
    font-weight: 600;
}

.passenger-picker-footer {
    border-top: 1px solid #eef2f7;
    padding-top: 14px;
    display: flex;
    justify-content: flex-end;
}

.passenger-apply-button {
    border: 1.5px solid #464797;
    color: #464797;
    background: #fff;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .passenger-picker-panel {
        width: 100%;
        min-width: 280px;
    }
}

.activity-option-main,
.activity-option-selection,
.booking-mode-section,
.activity-option-form-row,
.activity-option-field {
    overflow: visible;
    min-width: 0;
}

.activity-option-pricebox {
    position: relative;
    z-index: 1;
}

.passenger-picker {
    position: relative;
    width: 100%;
}

.passenger-picker-button {
    width: 100%;
    min-height: 46px;
    border-radius: 10px;
    border: 1px solid #cfd8e3;
    background: #fff;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #475569;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.passenger-picker-button:disabled {
    background: #f8fafc;
    cursor: not-allowed;
    opacity: .75;
}

.passenger-picker-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 330px;
    max-width: 100%;
    background: #fff;
    border: 1px solid #dfe6ef;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    padding: 18px 18px 14px;
    z-index: 9999;
}

.passenger-picker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.passenger-picker-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.passenger-picker-info strong {
    font-size: 16px;
    color: #1f3556;
    font-weight: 700;
}

.passenger-picker-info small {
    color: #94a3b8;
    font-size: 13px;
    margin-top: 2px;
}

.passenger-picker-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.passenger-minus,
.passenger-plus {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 28px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    cursor: pointer;
}

.passenger-count {
    min-width: 16px;
    text-align: center;
    font-size: 20px;
    color: #1f3556;
    font-weight: 600;
}

.passenger-picker-footer {
    border-top: 1px solid #eef2f7;
    padding-top: 14px;
    display: flex;
    justify-content: flex-end;
}

.passenger-apply-button {
    border: 1.5px solid #464797;
    color: #464797;
    background: #fff;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 1199.98px) {
    .activity-option-card {
        grid-template-columns: 1fr;
    }

    .activity-option-pricebox {
        border-left: 0;
        border-top: 1px solid #e6edf5;
    }
}

@media (max-width: 767.98px) {
    .passenger-picker-panel {
        width: 100%;
        min-width: 280px;
    }

    .activity-option-form-row {
        grid-template-columns: 1fr;
    }
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal.is-open {
    display: flex;
}

.gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(4px);
}

.gallery-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(1100px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.28);
    display: flex;
    flex-direction: column;
}

.gallery-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.gallery-modal-main {
    position: relative;
    background: #0f172a;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 70px;
}

.gallery-modal-main img {
    max-width: 100%;
    max-height: 66vh;
    object-fit: contain;
    display: block;
    background: #0f172a;
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
}

.gallery-modal-nav.prev {
    left: 14px;
}

.gallery-modal-nav.next {
    right: 14px;
}

.gallery-modal-footer {
    padding: 18px 20px 20px;
    background: #fff;
}

.gallery-modal-counter {
    font-weight: 700;
    color: #334155;
    margin-bottom: 14px;
}

.gallery-modal-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    gap: 12px;
}

.gallery-modal-thumb {
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    background: #e2e8f0;
    transition: all 0.2s ease;
}

.gallery-modal-thumb.is-active {
    border-color: #2563eb;
    transform: translateY(-1px);
}

.gallery-modal-thumb img {
    width: 100%;
    height: 78px;
    object-fit: cover;
    display: block;
}

body.gallery-modal-open {
    overflow: hidden;
}

/* VARIABLES GENERALES */
:root {
    --primary: #464797;
    /* verde */
    --secondary: #262874;
    /* naranja */
}

/* BOTONES LLENOS */
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

.btn-secondary {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #fff !important;
}

/* BOTONES OUTLINE */
.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

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

.btn-outline-secondary {
    color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.btn-outline-secondary:hover {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #fff !important;
}


/* ITEM ACTIVO DEL MENU */
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
    border-bottom: 2px solid var(--secondary);
}

/* =========================================================
   1) BACK TO TOP - Bootstrap 5 usa variables internas
   ========================================================= */
.back-to-top.btn.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #464797;
    /* fondo normal */
    --bs-btn-border-color: #202158;
    /* borde normal */

    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #464797;
    /* fondo hover */
    --bs-btn-hover-border-color: #202158;

    --bs-btn-focus-shadow-rgb: 0, 0, 0;
    /* quita glow */

    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #464797;
    /* fondo al click */
    --bs-btn-active-border-color: #202158;

    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #464797;
    --bs-btn-disabled-border-color: #202158;

    box-shadow: none !important;
    outline: none !important;
}

.back-to-top.btn.btn-primary:hover,
.back-to-top.btn.btn-primary:focus,
.back-to-top.btn.btn-primary:active,
.back-to-top.btn.btn-primary:focus-visible {
    box-shadow: none !important;
    outline: none !important;
}

/* por si bootstrap aplica sombra en active/focus */
.btn-check:focus+.back-to-top.btn.btn-primary,
.back-to-top.btn.btn-primary:focus,
.back-to-top.btn.btn-primary:active {
    box-shadow: none !important;
    outline: none !important;
}


.booking-nav a {
    color: #ffffff !important;
    /* color normal */
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: .3s ease;
}

.booking-nav a.active {
    color: #f7f7ff !important;
    /* color hover / activo */
}

.booking-nav a:hover {
    color: #7171ff !important;
}

.booking-nav a:focus,
.booking-nav a:active,
.booking-nav a:focus-visible {
    color: #464797 !important;
    outline: none !important;
    box-shadow: none !important;
}

.booking-nav a::before,
.booking-nav a::after,
.booking-nav a:hover::before,
.booking-nav a:hover::after,
.booking-nav a.active::before,
.booking-nav a.active::after {
    display: none !important;
    content: none !important;
}

@media (max-width: 768px) {

    .travel-search-form .form-control,
    .travel-search-form input,
    .travel-search-form select {
        border-radius: 8px !important;
    }

    .travel-panel {
        border-radius: 14px !important;
    }
}

/* =========================
   PACKAGE DETAIL PAGE
========================= */

.cards-slider-mobile {
    display: grid;
    gap: 24px;
}

.packages-slider {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tours-slider {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.slider-card-item {
    min-width: 0;
}

@media (max-width: 991.98px) {
    .packages-slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tours-slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .travel-deals-section {
        overflow: hidden;
    }

    .cards-slider-mobile {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        padding: 4px 12px 14px;
        margin: 0 -12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .cards-slider-mobile::-webkit-scrollbar {
        display: none;
    }

    .slider-card-item {
        flex: 0 0 86%;
        max-width: 86%;
        scroll-snap-align: start;
    }

    .slider-card-item .deal-card,
    .slider-card-item .featured-tour-card {
        height: 100%;
    }
}

.package-detail-page {
    background: #eef5fb;
    padding: 42px 0 72px;
}

.package-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 18px;
}

.package-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #464797;
}

.package-breadcrumb a {
    color: #464797;
    text-decoration: none;
}

.package-breadcrumb span:last-child {
    color: #6d7b8f;
    font-weight: 600;
}

.package-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #1f3d67;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.package-back-link:hover {
    color: #464797;
}

.package-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(340px, 0.95fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 28px;
}

.package-card {
    background: #ffffff;
    border: 1px solid #dfe8f1;
    border-radius: 30px;
    box-shadow: 0 18px 40px rgba(16, 35, 62, 0.06);
}

.package-gallery-panel {
    padding: 0;
    overflow: hidden;
}

.package-gallery-main-wrap {
    padding: 0;
}

.package-gallery-main {
    width: 100%;
    height: 560px;
    display: block;
    object-fit: cover;
    border-radius: 30px 30px 0 0;
}

.package-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    background: #ffffff;
}

.package-thumb-btn {
    appearance: none;
    border: 2px solid transparent;
    background: transparent;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.package-thumb-btn:hover {
    transform: translateY(-2px);
    border-color: #c4d6ea;
}

.package-thumb-btn.is-active {
    border-color: #1f3d67;
    box-shadow: 0 10px 24px rgba(31, 61, 103, 0.16);
}

.package-thumb {
    width: 100%;
    height: 104px;
    display: block;
    object-fit: cover;
    border-radius: 16px;
}

.package-summary-card {
    padding: 28px;
    position: sticky;
    top: 24px;
}

.package-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.package-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f3f7fb;
    color: #28476d;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.package-detail-title {
    margin: 0 0 10px;
    color: #17385f;
    font-size: 54px;
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.package-destination-label {
    margin-bottom: 18px;
    color: #464797;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.package-summary-text {
    margin: 0 0 20px;
    color: #56677d;
    font-size: 17px;
    line-height: 1.8;
}

.package-inline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.package-inline-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #e1eaf3;
    color: #26415f;
    font-size: 14px;
    font-weight: 700;
}

.package-inline-feature i {
    color: #464797;
}

.package-price-box {
    margin-bottom: 22px;
    padding: 22px 24px;
    border: 1px solid #e5edf5;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.package-price-kicker {
    display: block;
    margin-bottom: 8px;
    color: #74849a;
    font-size: 14px;
    font-weight: 700;
}

.package-price-value {
    color: #17385f;
    font-size: 34px;
    padding-top: 15px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.package-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.package-info-item {
    background: #f8fbff;
    border: 1px solid #e1eaf3;
    border-radius: 20px;
    padding: 16px 18px;
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-info-item-full {
    grid-column: 1 / -1;
}

.package-info-item span {
    display: block;
    margin-bottom: 7px;
    color: #7b8ba0;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.package-info-item strong {
    color: #17385f;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 800;
}

.package-cta-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 16px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef3b4d 0%, #cc1f27 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-cta-btn:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(31, 34, 204, 0.24);
}

.package-content-stack {
    display: grid;
    gap: 24px;
}

.package-content-card,
.package-mini-card {
    padding: 32px;
}

.package-section-title {
    margin: 0 0 18px;
    color: #17385f;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.package-lead {
    margin: 0 0 18px;
    color: #4e6076;
    font-size: 18px;
    line-height: 1.9;
    font-weight: 600;
}

.package-richtext,
.package-richtext p,
.package-richtext li {
    color: #53657a;
    font-size: 17px;
    line-height: 1.95;
}

.package-richtext p:last-child {
    margin-bottom: 0;
}

.package-two-col-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

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

.package-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #53657a;
    font-size: 16px;
    line-height: 1.75;
}

.package-list li:last-child {
    margin-bottom: 0;
}

.package-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #464797;
    position: absolute;
    left: 0;
    top: 10px;
    box-shadow: 0 0 0 5px rgba(0, 17, 255, 0.12);
}

.package-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.package-highlight-box {
    background: #f8fbff;
    border: 1px solid #e1eaf3;
    border-radius: 20px;
    padding: 18px 20px;
    min-height: 110px;
}

.package-highlight-box span {
    display: block;
    margin-bottom: 8px;
    color: #7b8ba0;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.package-highlight-box strong {
    color: #17385f;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 800;
}

.package-related-block {
    margin-top: 28px;
}

.package-related-link {
    text-decoration: none;
}

.package-related-card {
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe8f1;
    border-radius: 26px;
    box-shadow: 0 16px 34px rgba(16, 35, 62, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(16, 35, 62, 0.1);
}

.package-related-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.package-related-body {
    padding: 22px 22px 24px;
}

.package-related-meta {
    display: inline-block;
    margin-bottom: 10px;
    color: #7b8ba0;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.package-related-body h4 {
    margin: 0 0 10px;
    color: #17385f;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
}

.package-related-location {
    margin: 0 0 14px;
    color: #66778d;
    font-size: 15px;
    line-height: 1.6;
}

.package-related-price {
    color: #17385f;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

@media (max-width: 1399.98px) {
    .package-detail-title {
        font-size: 46px;
    }

    .package-price-value {
        font-size: 46px;
    }

    .package-highlights-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .package-hero-grid {
        grid-template-columns: 1fr;
    }

    .package-summary-card {
        position: static;
    }

    .package-gallery-main {
        height: 480px;
    }

    .package-detail-title {
        font-size: 42px;
    }

    .package-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .package-highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .package-detail-page {
        padding: 28px 0 56px;
    }

    .package-gallery-main {
        height: 380px;
        border-radius: 28px 28px 0 0;
    }

    .package-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .package-detail-title {
        font-size: 36px;
    }

    .package-destination-label {
        font-size: 21px;
    }

    .package-price-value {
        font-size: 40px;
    }

    .package-two-col-grid,
    .package-highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .package-shell {
        padding: 0 14px;
    }

    .package-gallery-main {
        height: 290px;
    }

    .package-gallery-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        padding: 14px;
    }

    .package-thumb {
        height: 82px;
    }

    .package-summary-card,
    .package-content-card,
    .package-mini-card {
        padding: 22px;
    }

    .package-detail-title {
        font-size: 31px;
    }

    .package-destination-label {
        font-size: 18px;
    }

    .package-summary-text,
    .package-richtext,
    .package-richtext p,
    .package-richtext li {
        font-size: 15px;
        line-height: 1.8;
    }

    .package-section-title {
        font-size: 22px;
    }

    .package-price-value {
        font-size: 34px;
    }

    .package-info-grid {
        grid-template-columns: 1fr;
    }

    .package-info-item {
        min-height: auto;
    }

    .package-related-card img {
        height: 210px;
    }

    .package-related-body h4 {
        font-size: 22px;
    }

    .package-related-price {
        font-size: 24px;
    }
}

.package-info-item span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #7a8ba1;
    margin-bottom: 6px;
    font-weight: 700;
}

.package-info-item strong {
    color: #17385f;
    font-size: 16px;
}

.related-card {
    background: #fff;
    border: 1px solid #e7edf4;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
}

.related-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.related-card-body {
    padding: 20px;
}

@media (max-width: 991px) {
    .package-gallery-main {
        height: 300px;
    }

    .package-info-grid {
        grid-template-columns: 1fr;
    }

    .package-price-box {
        position: static;
    }
}

.deal-meta-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.deal-meta-line .deal-meta {
    margin-bottom: 0;
}

.deal-meta-separator {
    color: #9aa8b8;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.deal-hotel-inline {
    color: #464797;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.package-hotel-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 14px;
    border-radius: 14px;
    background: #fff7f0;
    border: 1px solid #ffe2c7;
    color: #464797;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.package-hotel-label i {
    font-size: 13px;
}

.package-related-link {
    text-decoration: none;
    display: block;
}

.package-related-link {
    text-decoration: none;
    display: block;
}

.package-related-card-v3 {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #dfe7f1;
    box-shadow: 0 14px 34px rgba(16, 61, 115, 0.08);
    transition: transform .22s ease, box-shadow .22s ease;
    height: 100%;
}

.package-related-card-v3:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(16, 61, 115, 0.14);
}

.package-related-card-v3__image-wrap {
    position: relative;
    height: 235px;
    overflow: hidden;
}

.package-related-card-v3__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.package-related-card-v3__badges {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.package-related-card-v3__badge {
    background: rgba(10, 50, 96, 0.92);
    color: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    line-height: 1;
}

.package-related-card-v3__badge--light {
    background: rgba(255, 255, 255, 0.95);
    color: #103d73;
}

.package-related-card-v3__body {
    display: flex;
    flex-direction: column;
}

.package-related-card-v3__top {
    padding: 20px 22px 16px;
}

.package-related-card-v3__title {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #103d73;
}

.package-related-card-v3__dates {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #5d718b;
}

.package-related-card-v3__price-block {
    border-top: 1px solid #e2eaf3;
    padding: 18px 22px 16px;
}

.package-related-card-v3__price-label {
    display: block;
    font-size: 14px;
    color: #6f8198;
    margin-bottom: 8px;
}

.package-related-card-v3__price {
    display: block;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 900;
    color: #103d73;
    margin-bottom: 6px;
}

.package-related-card-v3__price-note {
    margin: 0;
    font-size: 14px;
    color: #7c8ea6;
}

.package-related-card-v3__footer {
    border-top: 1px solid #e2eaf3;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.package-related-card-v3__installments {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #41556f;
}

.package-related-card-v3__detail {
    font-size: 15px;
    font-weight: 800;
    color: #464797;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .package-related-card-v3__image-wrap {
        height: 215px;
    }

    .package-related-card-v3__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

.tour-map-card {
    background: #fff;
    border: 1px solid #e6edf5;
    border-radius: 24px;
    padding: 28px 30px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.tour-map-box {
    position: relative;
    min-height: 360px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #dfe8f2;
    background: #eef4f8;
}

.tour-map-frame {
    width: 100%;
    height: 360px;
    display: block;
}

.tour-map-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eef4f8 0%, #f8fbfd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.tour-map-placeholder-content {
    color: #5b6b7f;
    max-width: 420px;
}

.tour-map-placeholder-content i {
    font-size: 34px;
    color: #464797;
}

.tour-map-overlay-card {
    position: absolute;
    left: 30px;
    bottom: 28px;
    max-width: 520px;
    background: #fff;
    border: 1px solid #e6edf5;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    z-index: 3;
}

.tour-map-overlay-card p {
    color: #5b6b7f;
    font-size: 14px;
    line-height: 1.5;
}

.tour-map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid #464797;
    color: #464797;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 14px;
    transition: .2s ease;
    background: #fff;
}

.tour-map-btn:hover {
    background: #464797;
    color: #fff;
}

@media (max-width: 991px) {

    .tour-map-box,
    .tour-map-frame {
        min-height: 300px;
        height: 300px;
    }

    .tour-map-overlay-card {
        position: static;
        max-width: 100%;
        margin: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.tour-related-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.tour-related-block .tour-section-title {
    margin: 0;
    color: #1f3556;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
}

.tour-related-slider {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.tour-related-slide-item {
    min-width: 0;
}

.tour-related-link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.tour-related-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #dbe4ef;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tour-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    border-color: #d2dde9;
}

.tour-related-card__image-wrap {
    position: relative;
    height: 215px;
    overflow: hidden;
    background: #eef3f8;
}

.tour-related-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.tour-related-card:hover .tour-related-card__image {
    transform: scale(1.03);
}

.tour-related-card__badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.tour-related-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #314764;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.tour-related-card__badge--light {
    background: rgba(255, 255, 255, 0.88);
    color: #5f7392;
}

.tour-related-card__hook {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(18, 42, 73, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.tour-related-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 20px 18px 16px;
}

.tour-related-card__top {
    flex: 1 1 auto;
}

.tour-related-card__title {
    margin: 0 0 12px;
    color: #1f3556;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.22;
}

.tour-related-card__summary {
    margin: 0 0 16px;
    color: #6b7d96;
    font-size: 15px;
    line-height: 1.6;
}

.tour-related-card__price-block {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e7edf5;
}

.tour-related-card__price-label {
    display: block;
    margin-bottom: 8px;
    color: #7a8ba3;
    font-size: 14px;
    line-height: 1.2;
}

.tour-related-card__price {
    display: block;
    margin-bottom: 6px;
    color: #163456;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.tour-related-card__price-note {
    margin: 0;
    color: #7b8ca5;
    font-size: 14px;
    line-height: 1.45;
}

.tour-related-card__footer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.tour-related-card__detail {
    color: #464797;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.tour-related-card__footer i {
    color: #464797;
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 1199.98px) {
    .tour-related-slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .tour-related-block {
        text-align: center;
    }

    .tour-related-head {
        justify-content: center;
        margin-bottom: 16px;
    }

    .tour-related-slider {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tour-related-slide-item {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .tour-related-card__image-wrap {
        height: 210px;
    }

    .tour-related-card__body {
        padding: 18px 16px 14px;
        text-align: left;
    }

    .tour-related-card__title {
        font-size: 18px;
    }

    .tour-related-card__summary,
    .tour-related-card__price-label,
    .tour-related-card__price-note {
        font-size: 14px;
    }

    .tour-related-card__price {
        font-size: 20px;
    }
}

.activity-option-submit,
.activity-option-submit:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
}

.activity-option-submit:hover,
.activity-option-submit:focus,
.activity-option-submit:active {
    color: #ffffff !important;
    text-decoration: none !important;
    background: #464797;
    /* mismo rojo o uno apenas más oscuro */
}

.activity-option-side-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-option-submit,
.activity-option-submit:visited,
.activity-option-submit:hover,
.activity-option-submit:focus,
.activity-option-submit:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: #ffffff !important;
}

/* =========================================
   AUTOCOMPLETE PAISES - PAQUETES
========================================= */

.country-autocomplete-wrap {
    position: relative;
}

.country-autocomplete-input {
    padding-right: 44px !important;
}

.country-toggle-btn {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    width: 18px;
    height: 18px;
    color: #5f6b85;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    background: #ffffff;
    border: 1px solid #dbe3f1;
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
    padding: 8px;
    max-height: 260px;
    overflow-y: auto;
}

.country-suggestions.is-open {
    display: block;
}

.country-suggestion-item {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 11px 12px;
    border-radius: 10px;
    color: #22304a;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.country-suggestion-item:hover,
.country-suggestion-item.is-active {
    background: #f3f6fb;
    color: #ff5a3c;
}

.country-suggestions::-webkit-scrollbar {
    width: 8px;
}

.country-suggestions::-webkit-scrollbar-track {
    background: transparent;
}

.country-suggestions::-webkit-scrollbar-thumb {
    background: #cfd8e6;
    border-radius: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .country-suggestions {
        top: calc(100% + 6px);
        border-radius: 12px;
        max-height: 220px;
        padding: 6px;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
    }

    .country-suggestion-item {
        padding: 10px 10px;
        font-size: 0.92rem;
        border-radius: 9px;
    }
}

/* =========================================
   BUSCADOR HEADER MOBILE COLAPSABLE
========================================= */

@media (max-width: 991.98px) {
    .travel-search-box {
        margin-top: 18px;
    }

    .travel-search-panels {
        display: none;
        margin-top: 14px;
    }

    .travel-search-box.mobile-search-open .travel-search-panels {
        display: block;
    }

    .travel-search-panel-shell {
        background: #f3f5f9;
        border: 1px solid #e3e8f2;
        border-radius: 22px;
        padding: 14px;
    }

    .travel-search-box .travel-panel {
        display: none;
    }

    .travel-search-box.mobile-search-open .travel-panel.is-active {
        display: block;
    }

    .travel-search-box .travel-search-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .travel-search-box .travel-submit-wrap {
        width: 100%;
    }

    .travel-search-box .travel-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Desktop normal */
/* =========================================
   BUSCADOR HEADER MOBILE COLAPSABLE
========================================= */

@media (max-width: 991.98px) {
    .travel-search-box {
        margin-top: 18px;
    }

    .travel-search-panels {
        display: none;
        margin-top: 14px;
        background: transparent !important;
        border: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .travel-search-box.mobile-search-open .travel-search-panels {
        display: block;
    }

    .travel-search-panel-shell {
        background: transparent !important;
        border: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .travel-search-box .travel-panel {
        display: none;
    }

    .travel-search-box.mobile-search-open .travel-panel.is-active {
        display: block;
    }

    /* LA ÚNICA CAJA VISIBLE */
    .travel-search-box .travel-panel.is-active .travel-search-form {
        background: #f3f5f9;
        border: 1px solid #e3e8f2;
        border-radius: 22px;
        padding: 14px;
    }

    .travel-search-box .travel-search-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .travel-search-box .travel-submit-wrap {
        width: 100%;
    }

    .travel-search-box .travel-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .travel-search-panels {
        display: block !important;
    }

    .travel-search-box .travel-panel {
        display: none;
    }

    .travel-search-box .travel-panel.is-active {
        display: block;
    }

    .travel-search-box .travel-panel.is-active .travel-search-form {
        background: transparent;
        border: 0;
        padding: 0;
    }
}

.package-search-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-search-card:hover {
    transform: translateY(-4px);
}

.package-search-card .btn {
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .package-search-card img {
        height: 220px !important;
    }
}

.package-results-slider {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 767.98px) {
    .package-results-slider {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .package-results-slider::-webkit-scrollbar {
        height: 6px;
    }

    .package-results-slider::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.18);
        border-radius: 999px;
    }

    .package-results-slider>.package-slide {
        flex: 0 0 88%;
        max-width: 88%;
        padding-left: 0;
        padding-right: 0;
        scroll-snap-align: start;
    }
}

.package-interest-section {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.package-suggested-slider {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 767.98px) {
    .package-suggested-slider {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .package-suggested-slider::-webkit-scrollbar {
        height: 6px;
    }

    .package-suggested-slider::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.18);
        border-radius: 999px;
    }

    .package-suggested-slider>.package-suggested-slide {
        flex: 0 0 85%;
        max-width: 85%;
        padding-left: 0;
        padding-right: 0;
        scroll-snap-align: start;
    }
}

/* =========================================
   PACKAGE SEARCH / SUGGESTED CARDS
========================================= */

.package-results-slider,
.package-suggested-slider {
    margin-left: 0;
    margin-right: 0;
}

.package-slide,
.package-suggested-slide {
    display: flex;
}

.package-search-card {
    width: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.package-search-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.package-search-card img {
    width: 100%;
    height: 230px !important;
    object-fit: cover;
    display: block;
}

.package-search-card .p-4 {
    padding: 1.5rem 1.5rem 1.35rem !important;
}

.package-search-card h3 {
    font-size: 1.7rem;
    line-height: 1.3;
    color: #1f3b64;
    margin-bottom: 0.85rem !important;
}

.package-search-card .text-uppercase.small {
    font-size: 0.78rem !important;
    letter-spacing: 0.08em;
    font-weight: 700 !important;
    color: #1d3557 !important;
}

.package-search-card p {
    font-size: 0.98rem;
    line-height: 1.55;
}

.package-search-card .text-muted {
    color: #667085 !important;
}

.package-search-card .fa-map-marker-alt,
.package-search-card .fa-plane,
.package-search-card .fa-clock,
.package-search-card .fa-calendar-alt {
    width: 16px;
    text-align: center;
    color: #1d3557 !important;
}

.package-search-card .border-top {
    border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
    margin-top: 0.65rem;
    padding-top: 1rem !important;
}

.package-search-card .d-block.small.text-muted.mb-1 {
    font-size: 0.9rem !important;
    color: #7b8794 !important;
}

.package-search-card .fs-4 {
    font-size: 2rem !important;
    line-height: 1.1;
    font-weight: 800 !important;
    color: #1d3557 !important;
}

.package-search-card .btn,
.package-accent-btn,
.package-search-card .btn-outline-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.78rem 1.5rem !important;
    border-radius: 999px !important;
    border: 1.5px solid #1d3557 !important;
    color: #1d3557 !important;
    background: transparent !important;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.package-search-card .btn:hover,
.package-accent-btn:hover,
.package-search-card .btn-outline-primary:hover {
    background: #1d3557 !important;
    color: #fff !important;
    border-color: #1d3557 !important;
}

.package-search-card .btn span,
.package-search-card .btn-outline-primary span {
    pointer-events: none;
}

.package-badge-featured {
    background: #1f3b64 !important;
    color: #fff !important;
    border: 0;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.55rem 0.95rem !important;
}

.package-search-result-chip {
    background: #464797 !important;
    color: #fff !important;
    border: 0;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.55rem 0.95rem !important;
}

.package-interest-section {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 2rem;
    padding-bottom: 4rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.package-interest-section .section-title-main {
    margin-bottom: 0 !important;
}

.package-interest-section .btn-outline-primary {
    border-color: #1d3557 !important;
    color: #1d3557 !important;
    background: transparent !important;
}

.package-interest-section .btn-outline-primary:hover {
    background: #464797 !important;
    color: #fff !important;
}

@media (min-width: 768px) {

    .package-results-slider>.package-slide,
    .package-suggested-slider>.package-suggested-slide {
        margin-bottom: 0;
    }
}

@media (max-width: 991.98px) {
    .package-search-card img {
        height: 215px !important;
    }

    .package-search-card h3 {
        font-size: 1.5rem;
    }

    .package-search-card .fs-4 {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 767.98px) {

    .package-results-slider,
    .package-suggested-slider {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .package-results-slider::-webkit-scrollbar,
    .package-suggested-slider::-webkit-scrollbar {
        height: 6px;
    }

    .package-results-slider::-webkit-scrollbar-thumb,
    .package-suggested-slider::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.16);
        border-radius: 999px;
    }

    .package-results-slider>.package-slide,
    .package-suggested-slider>.package-suggested-slide {
        flex: 0 0 87%;
        max-width: 87%;
        padding-left: 0;
        padding-right: 0;
        scroll-snap-align: start;
    }

    .package-search-card {
        border-radius: 22px;
    }

    .package-search-card img {
        height: 210px !important;
    }

    .package-search-card .p-4 {
        padding: 1.2rem 1.15rem 1.2rem !important;
    }

    .package-search-card h3 {
        font-size: 1.35rem;
        margin-bottom: 0.65rem !important;
    }

    .package-search-card p {
        font-size: 0.95rem;
        margin-bottom: 0.65rem !important;
    }

    .package-search-card .fs-4 {
        font-size: 1.7rem !important;
    }

    .package-interest-section {
        padding-top: 1.5rem;
        padding-bottom: 2.5rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}

.package-interest-inner {
    padding-left: 12px;
    padding-right: 12px;
}

@media (min-width: 768px) {
    .package-interest-inner {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 767.98px) {
    .package-interest-header {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 1.25rem !important;
    }

    .package-interest-header .btn {
        margin-top: 4px;
    }
}

.site-footer {
    background: #ffffff;
    border-top: 1px solid #e6ebf2;
    margin-top: 60px;
    color: #5d6f88;
    font-size: 14px;
}

.site-footer .container {
    max-width: 1320px;
}

.site-footer__newsletter {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 36px 0 28px;
    border-bottom: 1px solid #e9eef5;
}

.site-footer__newsletter-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    border: 2px solid #464797;
    color: #464797;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.site-footer__newsletter-content h3 {
    margin: 0 0 6px;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
    color: #243b5a;
}

.site-footer__newsletter-content p {
    margin: 0;
    color: #71829a;
    font-size: 15px;
}

.site-footer__newsletter-form {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 420px;
}

.site-footer__input {
    flex: 1;
    height: 52px;
    border: 1px solid #ccd8e6;
    border-radius: 14px;
    padding: 0 16px;
    font-size: 15px;
    color: #243b5a;
    outline: none;
}

.site-footer__input:focus {
    border-color: #464797;
    box-shadow: 0 0 0 0.2rem rgba(91, 28, 145, 0.10);
}

.site-footer__btn {
    height: 52px;
    border: 1.5px solid #1e1f64;
    background: #fff;
    color: #464797;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
    transition: all .2s ease;
}

.site-footer__btn:hover {
    background: #2137fa;
    color: #fff;
}

.site-footer__social {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 26px 0;
    border-bottom: 1px solid #e9eef5;
}

.site-footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #d8e2ee;
    color: #4e6280;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .2s ease;
}

.site-footer__social a:hover {
    color: #464797;
    border-color: #464797;
    transform: translateY(-2px);
}

.site-footer__links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding: 32px 0 24px;
}

.site-footer__col h4 {
    margin: 0 0 14px;
    color: #243b5a;
    font-size: 15px;
    font-weight: 800;
}

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

.site-footer__col li {
    margin-bottom: 10px;
}

.site-footer__col a {
    color: #6c7d94;
    text-decoration: none;
    transition: color .2s ease;
}

.site-footer__col a:hover {
    color: #464797;
}

.site-footer__country {
    margin-top: 20px;
}

.site-footer__country label {
    display: block;
    margin-bottom: 8px;
    color: #243b5a;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.site-footer__select {
    width: 100%;
    max-width: 220px;
    height: 46px;
    border: 1px solid #ccd8e6;
    border-radius: 12px;
    padding: 0 14px;
    font-size: 14px;
    color: #243b5a;
    background: #fff;
}

.site-footer__legal {
    background: #fafbfd;
    padding: 26px 0 34px;
}

.site-footer__legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.site-footer__legal p {
    margin: 0 0 12px;
    color: #73849b;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 1199.98px) {
    .site-footer__newsletter {
        grid-template-columns: 64px 1fr;
    }

    .site-footer__newsletter-form {
        grid-column: 1 / -1;
        min-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .site-footer__links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        padding: 28px 0 22px;
    }

    .site-footer__select {
        max-width: 100%;
    }
}

.site-footer__newsletter-content h3 {
    font-size: 28px;
}

.site-footer__legal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}


@media (max-width: 767.98px) {
    .site-footer__newsletter {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 28px 0 22px;
    }

    .site-footer__newsletter-icon {
        width: 52px;
        height: 52px;
    }

    .site-footer__newsletter-content h3 {
        font-size: 24px;
    }

    .site-footer__newsletter-form {
        flex-direction: column;
        align-items: stretch;
        min-width: 100%;
    }

    .site-footer__btn,
    .site-footer__input {
        width: 100%;
    }

    .site-footer__links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        padding: 28px 0 22px;
    }

    .site-footer__select {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .site-footer__links-grid {
        grid-template-columns: 1fr;
    }
}

.travel-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%235c6f91' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 42px;
    cursor: pointer;
}

.contact-page-wrap {
    padding-top: 48px;
    padding-bottom: 70px;
}

.contact-hero-simple {
    margin-bottom: 32px;
    padding: 38px 42px;
    background: linear-gradient(135deg, #ffffff 0%, #f6f9fd 100%);
    border: 1px solid #dbe4ef;
    border-radius: 18px;
}

.contact-hero-simple__content {
    max-width: 860px;
}

.contact-hero-simple__title {
    margin: 10px 0 14px;
    color: #223b5b;
    font-size: 44px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.contact-hero-simple__subtitle {
    margin: 0;
    color: #657892;
    font-size: 18px;
    line-height: 1.65;
}

.contact-commercial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
    gap: 24px;
    align-items: start;
}

.contact-commercial-main,
.contact-side-card {
    background: #fff;
    border: 1px solid #dbe4ef;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(28, 55, 90, 0.04);
}

.contact-commercial-main {
    padding: 30px;
}

.contact-side-card {
    padding: 24px;
    margin-bottom: 20px;
}

.contact-section-head {
    margin-bottom: 24px;
}

.contact-side-card h3 {
    margin: 8px 0 20px;
    color: #223b5b;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.contact-label {
    display: block;
    margin-bottom: 8px;
    color: #304764;
    font-size: 14px;
    font-weight: 700;
}

.contact-control {
    min-height: 54px;
    border-radius: 10px;
    border: 1px solid #d6e0ec;
    padding: 0 16px;
    font-size: 15px;
    color: #243b5a;
    background: #fff;
    box-shadow: none !important;
}

.contact-control:focus {
    border-color: #ff6a3d;
}

.contact-control--textarea {
    min-height: 150px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
}

.contact-submit-btn {
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 10px;
    background: #ff5a3a;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    transition: background .2s ease, transform .2s ease;
}

.contact-submit-btn:hover {
    background: #ef4d2d;
    transform: translateY(-1px);
}

.contact-side-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid #edf2f7;
}

.contact-side-item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.contact-side-item i {
    width: 20px;
    margin-top: 3px;
    color: #ff5a3a;
    font-size: 18px;
    text-align: center;
    flex: 0 0 auto;
}

.contact-side-item strong {
    display: block;
    margin-bottom: 4px;
    color: #223b5b;
    font-size: 15px;
    font-weight: 800;
}

.contact-side-item p {
    margin: 0;
    color: #667a95;
    font-size: 14px;
    line-height: 1.65;
}

.contact-side-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    margin-top: 18px;
    padding: 0 18px;
    border-radius: 10px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    transition: background .2s ease;
}

.contact-side-btn:hover {
    background: #1fbe59;
    color: #fff;
}

.contact-map-embed {
    overflow: hidden;
    border-radius: 10px;
    min-height: 280px;
    border: 1px solid #e4ebf4;
    background: #eef3f8;
}

.contact-map-embed iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}

.contact-location-text {
    margin: 16px 0 0;
    color: #667a95;
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 1199.98px) {
    .contact-commercial-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-simple__title {
        font-size: 38px;
    }
}

@media (max-width: 767.98px) {
    .contact-page-wrap {
        padding-top: 28px;
        padding-bottom: 50px;
    }

    .contact-hero-simple {
        padding: 26px 22px;
        border-radius: 14px;
    }

    .contact-hero-simple__title {
        font-size: 31px;
        line-height: 1.08;
    }

    .contact-hero-simple__subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .contact-commercial-main,
    .contact-side-card {
        padding: 20px;
        border-radius: 12px;
    }

    .contact-side-card h3 {
        font-size: 21px;
    }
}

.contact-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    min-height: 360px;
    padding: 48px;
    background: #1e3553;
    display: flex;
    align-items: center;
}

.contact-hero-card__bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/promo-2.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.contact-hero-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(51, 61, 198, 0.82) 0%, rgba(78, 32, 244, 0.52) 100%);
}

.contact-hero-card__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.contact-hero-card__title {
    margin: 12px 0 16px;
    color: #fff;
    font-size: 56px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.contact-hero-card__subtitle {
    max-width: 680px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 22px;
    line-height: 1.45;
}

.contact-hero-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all .2s ease;
}

.contact-pill-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.22);
}

.contact-pill-btn--filled {
    background: #613dff;
    border-color: #3d40ff;
}

.contact-pill-btn--filled:hover {
    background: #2338f2;
    border-color: #2331f2;
}

.packages-carousel-wrap {
    position: relative;
}

.packages-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.packages-carousel::-webkit-scrollbar {
    height: 8px;
}

.packages-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.packages-carousel::-webkit-scrollbar-thumb {
    background: #cfd8e6;
    border-radius: 999px;
}

.packages-carousel-slide {
    flex: 0 0 320px;
    max-width: 320px;
    scroll-snap-align: start;
}

.package-card--compact {
    background: #fff;
    border: 1px solid #dfe6ee;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
}

.package-card--compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
}

.package-card--compact .package-card-image-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.package-card--compact .package-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.package-card-top-badge {
    position: absolute;
    left: 14px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(23, 41, 74, 0.92);
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    line-height: 1;
}

.package-card-body--compact {
    padding: 14px 16px 14px;
}

.package-card-category {
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6f7783;
    margin-bottom: 8px;
}

.package-card-title--compact {
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 800;
    color: #2f3743;
    margin-bottom: 8px;
}

.package-card-destination {
    font-size: .96rem;
    font-weight: 700;
    color: #3e4754;
    margin-bottom: 6px;
}

.package-card-meta {
    font-size: .9rem;
    color: #5f6875;
    margin-bottom: 5px;
    line-height: 1.4;
}

.package-card-promo-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    padding: 5px 9px;
    border-radius: 7px;
    background: #4d0d74;
    color: #ffe96a;
    font-size: .78rem;
    font-weight: 800;
    line-height: 1;
}

.package-card-price-box--compact {
    border-top: 1px solid #e6ebf2;
    padding: 14px 16px 16px;
    background: #fff;
}

.package-card-price-label {
    font-size: .85rem;
    color: #697585;
    margin-bottom: 5px;
}

.package-card-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.package-card-price-currency {
    font-size: 1rem;
    font-weight: 500;
    color: #39414d;
}

.package-card-price-value {
    font-size: 1.7rem;
    line-height: 1;
    font-weight: 700;
    color: #39414d;
}

.package-card-base {
    font-size: .84rem;
    color: #6e7785;
}

.packages-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid #d7dfeb;
    background: #fff;
    color: #40506a;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.packages-carousel-prev {
    left: -12px;
}

.packages-carousel-next {
    right: -12px;
}

@media (max-width: 1199.98px) {
    .packages-carousel-slide {
        flex: 0 0 300px;
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .packages-carousel-slide {
        flex: 0 0 82vw;
        max-width: 82vw;
    }

    .package-card--compact .package-card-image-wrap {
        height: 180px;
    }

    .package-card-price-value {
        font-size: 1.5rem;
    }

    .packages-carousel-prev {
        left: -6px;
    }

    .packages-carousel-next {
        right: -6px;
    }
}

.packages-hero {
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    border: 1px solid #e8eef7;
    overflow: visible;
}

.packages-hero-inner {
    overflow: visible;
    padding: 32px;
}

.packages-kicker,
.packages-section-kicker {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: #0d6efd;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.packages-title {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    font-weight: 800;
    color: #0f172a;
}

.packages-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 680px;
}

.packages-search-card {
    background: #fff;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid #edf2f7;
    position: relative;
    z-index: 20;
}

.packages-search-card .form-label {
    font-size: .9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.packages-search-card .form-control,
.packages-search-card .form-select {
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid #dbe4f0;
    box-shadow: none;
}

.packages-section-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
}

.package-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.package-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e9eef5;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.10);
}

.package-card-image-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.package-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    line-height: 1;
}

.package-badge+.package-badge-offer {
    top: 52px;
}

.package-badge-featured {
    background: rgba(13, 110, 253, 0.95);
    color: #fff;
}

.package-badge-offer {
    background: rgba(25, 135, 84, 0.95);
    color: #fff;
}

.package-card-body {
    padding: 22px;
}

.package-card-category {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #64748b;
    margin-bottom: 10px;
}

.package-card-title {
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.package-card-destination {
    font-size: .98rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.package-card-meta {
    font-size: .92rem;
    color: #64748b;
    margin-bottom: 6px;
}

.package-card-description {
    font-size: .95rem;
    color: #475569;
    margin: 14px 0 18px;
}

.package-card-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
}

.package-card-base {
    font-size: .82rem;
    color: #64748b;
    margin-bottom: 4px;
}

.package-card-price {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 800;
    color: #0f172a;
}

.package-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #0d6efd;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .packages-hero-inner {
        padding: 24px;
    }
}

@media (max-width: 767.98px) {
    .packages-hero-inner {
        padding: 20px;
    }

    .package-card-image-wrap {
        height: 220px;
    }

    .package-card-body {
        padding: 18px;
    }

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

    .package-card-cta {
        width: 100%;
    }
}


.packages-recommended-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.packages-recommended-item {
    min-width: 0;
}

.packages-recommended-item .package-card-link,
.packages-recommended-item .package-card {
    height: 100%;
}

@media (max-width: 1199.98px) {
    .packages-recommended-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .packages-recommended-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .packages-recommended-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.booking-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 18px 0 14px;
}

.booking-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 1;
}

.booking-brand img,
.booking-brand .logo-img {
    display: block;
    height: 58px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .booking-main-row {
        gap: 20px;
        padding: 14px 0 12px;
    }

    .booking-brand img,
    .booking-brand .logo-img {
        height: 48px;
        max-width: 190px;
    }
}

@media (max-width: 767.98px) {
    .booking-main-row {
        flex-wrap: wrap;
        gap: 14px;
        padding: 12px 0 10px;
    }

    .booking-brand img,
    .booking-brand .logo-img {
        height: 42px;
        max-width: 170px;
    }
}

@media (max-width: 767.98px) {
    .booking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .booking-main-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .booking-nav {
        width: 100%;
        gap: 14px;
    }

    .booking-actions {
        width: 100%;
    }

    .btn-login-header,
    .btn-promo-header {
        width: auto;
    }
}

.disabled-tab {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    position: relative;
}

.badge-coming {
    font-size: 10px;
    background: #464797;
    color: #fff;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 6px;
}

/* ===== HOVER CARD TOURS / EXCURSIONES ===== */
.featured-tour-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid #d9e2ee;
}

.featured-tour-card__image {
    overflow: hidden;
}

.featured-tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.featured-tour-card__title,
.featured-tour-card__footer span {
    transition: color 0.25s ease;
}

.featured-tour-card-link {
    display: block;
    text-decoration: none;
}

.featured-tour-card-link:hover .featured-tour-card {
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.14);
    border-color: rgba(70, 71, 151, 0.18);
}

.featured-tour-card-link:hover .featured-tour-card__image img {
    transform: scale(1.06);
}

.featured-tour-card-link:hover .featured-tour-card__title,
.featured-tour-card-link:hover .featured-tour-card__footer span {
    color: #464797;
}

/* =========================================
   BLOQUE HISTORIAL / BÚSQUEDAS RECIENTES
========================================= */
.recent-searches-section {
    padding-left: 16.6%;
}

.recent-searches-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.recent-searches-title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #1f2a44;
}

.recent-searches-clear {
    border: 0;
    background: transparent;
    color: #464797;
    font-size: 13px;
    font-weight: 700;
    padding-right: 20%;
}

.recent-searches-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.recent-search-card {
    display: flex;
    align-items: right;
    gap: 12px;
    background: #fff;
    border: 1px solid #d9e2ee;
    border-radius: 16px;
    padding: 10px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.recent-search-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    border-color: rgba(70, 71, 151, 0.18);
}

.recent-search-card__image {
    width: 68px;
    height: 68px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eef3f9;
}

.recent-search-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-search-card__body {
    min-width: 0;
    flex: 1;
}

.recent-search-card__title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    color: #243b63;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-search-card__meta {
    margin: 0;
    font-size: 14px;
    color: #6f7d95;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991.98px) {
    .recent-searches-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .recent-searches-section {
        padding: 18px 16px 4px;
    }

    .recent-searches-list {
        grid-template-columns: 1fr;
    }
}

.info-page-section {
    padding: 56px 0 72px;
    background: #f6faff;
}

.info-page-shell {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e6edf5;
    border-radius: 28px;
    padding: 38px 34px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
}

.info-page-header {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid #edf2f7;
}

.info-page-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    color: #5b3fd0;
    text-transform: uppercase;
}

.info-page-title {
    margin: 0 0 12px;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    color: #1f2a44;
}

.info-page-intro {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #66758f;
}

.info-page-body {
    color: #3b4960;
    font-size: 16px;
    line-height: 1.8;
}

.info-page-body h2 {
    margin: 30px 0 12px;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 800;
    color: #243b63;
}

.info-page-body p {
    margin: 0 0 16px;
}

.info-page-body ul {
    margin: 0 0 20px 18px;
    padding: 0;
}

.info-page-body li {
    margin-bottom: 8px;
}

.info-page-body a {
    color: #4c3fd6;
    text-decoration: none;
    font-weight: 700;
}

.info-page-body a:hover {
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .info-page-section {
        padding: 28px 0 44px;
    }

    .info-page-shell {
        border-radius: 22px;
        padding: 24px 18px;
    }

    .info-page-title {
        font-size: 30px;
    }

    .info-page-intro,
    .info-page-body {
        font-size: 15px;
    }
}