:root {
    --color-brand-blue: #0081a7;
    --color-brand-magenta: #FF1493;
    --color-brand-orange: #FF8C00;
    --color-brand-gradient: linear-gradient(135deg, #FF1493 0%, #FF8C00 100%);
    --color-dark-navy: #0A192F;
    --color-light-bg: #ffffff;
    --color-gray-soft: #eef0f2;
    --color-text-dark: #1a2b4b;
    --color-text-muted: #64748b;
    --color-error: #FF4444;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --shadow-premium: 0 10px 30px rgba(0, 136, 204, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


/* ==============================================
   UTILITIES & SECTION SPACING
   ============================================= */
.bg-white {
    background-color: #ffffff !important;
}

.bg-gray {
    background-color: var(--color-gray-soft) !important;
}

.section-padding {
    padding: 100px 0 !important;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0 !important;
    }
}

/* ==============================================
   RESET Y ESTILOS BASE
   ============================================= */
body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    background-color: var(--color-light-bg);
    color: var(--color-text-dark);
    scroll-behavior: smooth;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
.modal-title-lux {
    font-family: var(--font-heading);
    color: var(--color-brand-blue);
    text-align: center;
    margin-top: 0;
    letter-spacing: 1px;
    font-weight: 700;
}

h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: var(--color-brand-blue);
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-brand-gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ==============================================
   CABECERA (HEADER)
   ============================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 136, 204, 0.1);
}

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

/* --- BRAND LOGO REBORN --- */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.02);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #0088cc;
    /* Brand Blue */
    text-transform: none;
    /* Maintain CamelCase */
}

.brand-puj {
    color: #FF1493;
    /* Brand Pink/Magenta from logo */
    background: linear-gradient(45deg, #FF1493, #FF8C00);
    /* Gradient for PUJ */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-subtitle {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 4px;
    margin-top: 5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.brand-dash {
    color: #0088cc;
    /* Same blue as CanaLink */
    font-weight: 700;
}

/* Legacy .logo style cleanup */
.logo {
    display: none;
    /* Deprecated in favor of .brand-logo */
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-links li a {
    color: var(--color-text-dark);
    text-decoration: none;
    padding: 0 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: var(--color-brand-blue);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--color-brand-gradient);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links li a:hover::after {
    width: 25px;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--color-brand-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-toggle:hover,
.menu-toggle:active {
    color: var(--color-brand-orange);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        order: 3;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: #ffffff;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        text-align: center;
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding-top: 100px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-links li a {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--color-brand-blue);
        display: block;
        padding: 15px 20px;
        width: 100%;
        transition: all 0.3s ease;
    }

    .nav-links li a:hover {
        background: rgba(0, 129, 167, 0.05);
        color: var(--color-brand-magenta);
    }

    /* Contact Button in Mobile Menu */
    .nav-links li:last-child a {
        background: var(--color-brand-gradient);
        color: #ffffff;
        margin: 20px auto;
        width: 80%;
        border-radius: 50px;
        box-shadow: 0 10px 20px rgba(255, 20, 147, 0.2);
    }

    .nav-links li:last-child a:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 20, 147, 0.3);
    }

    .nav-icons {
        margin-right: 15px;
    }

    .brand-logo {
        gap: 8px;
        transform: scale(0.9);
        transform-origin: left;
    }
}

.nav-icons a {
    color: var(--color-brand-blue);
    margin-left: 15px;
    font-size: 1.3em;
    transition: all 0.3s ease;
}

.nav-icons a:hover {
    color: var(--color-brand-magenta);
    transform: translateY(-3px);
}

/* --- EXCURSIONS SPECIAL HEADER --- */
.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.back-link {
    color: var(--color-ivory);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.back-link:hover {
    color: var(--color-sand-gold);
    background: rgba(197, 160, 89, 0.1);
    transform: translateX(-5px);
    border-color: var(--color-sand-gold);
}

/* ==============================================
   SECCIÓN HERO Y RESERVA RÁPIDA (REFINED)
   ============================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background-image: linear-gradient(rgba(10, 25, 47, 0.4), rgba(10, 25, 47, 0.4)), url('./images/imagen\ principal\ hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.reserva-card {
    background: #f4f7f6 !important;
    /* Clean Light Gray as requested */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(0, 129, 167, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 95%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    margin: 20px auto;
}

.reserva-card h1 {
    font-size: clamp(1.4em, 6vw, 2.5em);
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-brand-blue);
    background: none;
    -webkit-text-fill-color: initial;
    border-bottom: 3px solid var(--color-brand-magenta);
    padding-bottom: 25px;
    display: inline-block;
}

/* HERO GRID LAYOUT FOR ALIGNMENT */
.quick-reserve-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Exact 50/50 split */
    gap: 20px;
    /* Consolidate gap */
    align-items: end;
}

.input-group-quick {
    text-align: left;
    position: relative;
}

.input-group-quick label {
    display: block;
    margin-bottom: 10px;
    color: var(--color-brand-blue);
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.input-group-quick input,
.input-group-quick select {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    background: #ffffff !important;
    /* White bg */
    border: 2px solid #0081a7 !important;
    /* Blue logo border */
    border-radius: 12px;
    color: var(--color-text-dark);
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    /* Bold font */
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    appearance: none;
}

.input-group-quick input:hover,
.input-group-quick select:hover {
    border-color: #FF8C00 !important;
    /* Orange hover as requested */
}

.input-group-quick input:focus,
.input-group-quick select:focus {
    outline: none;
    border-color: var(--color-sand-gold);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.input-group-quick input.error,
.input-group-quick select.error {
    border-color: var(--color-error);
    background-color: rgba(255, 68, 68, 0.05);
    /* Red tint */
}

/* Premium Select Specifics */
.select-premium {
    cursor: pointer;
}

.select-premium optgroup {
    background-color: #fff9f0 !important;
    /* Very light orange background */
    color: #d81159 !important;
    /* Magenta logo text */
    font-weight: 800 !important;
    font-size: 1.1em;
    font-family: 'Montserrat', sans-serif !important;
    padding: 10px;
}

.select-premium option {
    color: #0081a7 !important;
    /* Blue text */
    background-color: #ffffff !important;
    font-weight: 600 !important;
    padding: 12px;
}

/* MASTER HIGHLIGHT - OTRO DESTINO */
#inputOtroHotel {
    border: 5px solid transparent !important;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(45deg, #d81159, #ffbc42);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 20px rgba(216, 17, 89, 0.4), 0 0 40px rgba(255, 188, 66, 0.2) !important;
    animation: atencion-total 1.5s infinite ease-in-out !important;
    /* Fast attention-grabbing pulse */
    color: #0081a7 !important;
    /* Ocean Blue text */
    background-color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1.15rem !important;
    text-transform: uppercase;
    margin-top: 20px;
    padding: 18px !important;
    border-radius: 15px !important;
    display: none;
    /* Controlled by JS manejarOtroHotel() */
}

#inputOtroHotel::placeholder {
    color: #d81159 !important;
    opacity: 0.8;
}

.opcion-especial {
    background-color: #ffbc42 !important;
    /* Vibrant Orange logo color */
    color: #ffffff !important;
    font-weight: 800 !important;
    padding: 15px !important;
}

@keyframes atencion-total {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 129, 167, 0.6);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 25px rgba(216, 17, 89, 0.8);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 129, 167, 0.6);
    }
}

/* Info Row Alignment */
.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.price-box,
.duration-box {
    background: var(--color-gray-soft);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 136, 204, 0.05);
    color: var(--color-text-dark);
    font-weight: 700;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02);
}

.price-box i,
.duration-box i {
    color: var(--color-brand-blue);
    font-size: 1.4em;
}

#heroPriceDisplay {
    color: var(--color-brand-magenta);
}

.btn-reserva-ahora {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 18px;
    font-size: 1em;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--color-brand-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-reserva-ahora:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.4), 0 0 15px rgba(255, 140, 0, 0.4);
    filter: brightness(1.1);
}

.btn-reserva-ahora::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.btn-reserva-ahora:hover::after {
    left: 100%;
    opacity: 1;
}

/* ==============================================
   MODALES RESPONSIVE FIX
   ============================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.4);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.modal-overlay.open {
    opacity: 1;
    display: flex;
}

.modal-content {
    background: #ffffff;
    border: 1px solid rgba(0, 136, 204, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.3s ease-out;
}

/* Scrollbar styling for modal */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--color-gray-soft);
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--color-brand-blue);
    border-radius: 3px;
}

.modal-overlay.open .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--color-text-muted);
    font-size: 28px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
    z-index: 10;
}

.close-btn:hover {
    color: var(--color-sand-gold);
    transform: rotate(90deg);
}

.modal-title-lux {
    color: var(--color-brand-blue);
    font-size: 1.6em;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--color-brand-magenta);
    padding-bottom: 20px;
}

/* Modal Form Grid */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reservation-form fieldset {
    border: 1px solid rgba(0, 136, 204, 0.1);
    padding: 25px;
    border-radius: 12px;
    background: var(--color-gray-soft);
    margin: 0;
}

.reservation-form legend {
    color: var(--color-brand-blue);
    font-weight: 700;
    padding: 0 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8em;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--color-brand-blue);
    color: white;
    border-radius: 50px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1em;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 136, 204, 0.4);
    background-color: #0077b3;
}

.whatsapp-float i {
    font-size: 1.5em;
}

.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--color-brand-blue);
    color: white;
    border-radius: 50px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1em;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-whatsapp:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 136, 204, 0.4);
    background-color: #0077b3;
}

.floating-whatsapp i {
    font-size: 1.5em;
}

.whatsapp-label {
    display: block;
    /* Or inline-block */
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--color-light-bg);
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0, 136, 204, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    color: var(--color-brand-blue);
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 136, 204, 0.03);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px 15px;
    color: var(--color-text-muted);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust based on expected content height */
    padding: 0 20px 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-gray-soft);
}

/* Testimonial Card Styles moved to bottom for consolidation */

.reservation-form legend {
    color: var(--color-sand-gold);
    font-weight: 700;
    padding: 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85em;
}

/* Modal Input Grid */
.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Default 2 columns */
    gap: 20px;
    margin-bottom: 15px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 5px;
    color: var(--color-ivory);
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    background: #fff;
    border: 2px solid rgba(0, 129, 167, 0.3);
    color: var(--color-text-dark);
    padding: 16px;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
}

/* Premium Hotel Selector Styling */
.reservation-form select {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--color-brand-blue);
    border: 2px solid var(--color-brand-blue);
    padding: 18px 16px;
    font-size: 1.05rem;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230081a7' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.reservation-form select:hover {
    border-color: var(--color-brand-magenta);
    box-shadow: 0 4px 12px rgba(0, 129, 167, 0.15);
}

.reservation-form select:focus {
    border-color: var(--color-brand-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 129, 167, 0.1);
}

/* Zone Labels (optgroup) - Bold and Prominent */
.reservation-form select optgroup {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2d3748;
    font-family: 'Montserrat', sans-serif;
    padding: 8px 0;
    background: #f7fafc;
}

/* Hotel Options */
.reservation-form select option {
    padding: 12px;
    font-weight: 400;
    color: #4a5568;
    font-size: 0.95rem;
}

/* SUPER HIGHLIGHTED "Otro Destino" Option */
.reservation-form select option[value="otro"] {
    font-weight: 700;
    color: var(--color-brand-orange);
    background: #fff5e6;
    font-size: 1.05rem;
    padding: 14px 12px;
}

.reservation-form input:focus,
.reservation-form textarea:focus,
.reservation-form select:focus {
    border-color: var(--color-brand-magenta);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.1);
}

.reservation-form label {
    color: var(--color-brand-blue);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* ==============================================
   PREMIUM "OTRO DESTINO" INPUT FIELD
   ============================================= */
#inputOtroHotel,
.input-otro-blanco {
    display: none;
    margin-top: 15px;
    padding: 20px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--color-text-dark);
    background: #ffffff;
    border: 3px solid transparent;
    border-radius: 15px;
    background-image: linear-gradient(white, white), var(--color-brand-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        0 0 20px rgba(255, 20, 147, 0.3),
        0 0 40px rgba(255, 140, 0, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulseGlow 3s ease-in-out infinite;
}

#inputOtroHotel::placeholder,
.input-otro-blanco::placeholder {
    color: #a0aec0;
    font-weight: 400;
    font-style: italic;
}

#inputOtroHotel:focus,
.input-otro-blanco:focus {
    outline: none;
    transform: scale(1.02);
    box-shadow:
        0 0 30px rgba(255, 20, 147, 0.5),
        0 0 60px rgba(255, 140, 0, 0.3),
        0 12px 35px rgba(0, 0, 0, 0.15);
    animation: none;
}

/* Pulsing glow animation */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(255, 20, 147, 0.3),
            0 0 40px rgba(255, 140, 0, 0.2),
            0 8px 25px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow:
            0 0 25px rgba(255, 20, 147, 0.4),
            0 0 50px rgba(255, 140, 0, 0.3),
            0 10px 30px rgba(0, 0, 0, 0.12);
    }
}

.reservation-form input:focus,
.reservation-form textarea:focus,
.reservation-form select:focus {
    border-color: var(--color-sand-gold);
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

/* --- EXCURSIONS REDESIGN --- */
.excursiones-section {
    padding: 120px 0 60px;
    /* Add padding to clear fixed header */
}

.excursiones-section h1 {
    font-size: clamp(1.8rem, 8vw, 3rem);
    color: var(--color-brand-blue);
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    font-weight: 800;
    width: 100%;
}

@media (max-width: 768px) {
    .excursiones-section h1 {
        font-size: 2.2rem;
    }
}

.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.excursion-card {
    background: #fff;
    border: 1px solid rgba(0, 136, 204, 0.08);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.excursion-card:hover {
    transform: translateY(-15px);
    border-color: var(--color-brand-magenta);
    box-shadow: 0 25px 60px rgba(255, 20, 147, 0.12);
}

.card-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.excursion-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-brand-gradient);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
    z-index: 2;
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    text-align: left;
    color: var(--color-brand-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.card-intro {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.card-features li {
    font-size: 0.9rem;
    color: var(--color-ivory);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.card-features li i {
    color: var(--color-sand-gold);
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

/* Attractive Bilingual Itinerary Styling (Timeline Concept) */
.itinerary-bilingual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 136, 204, 0.1);
}

.itinerary-es,
.itinerary-en {
    display: flex;
    flex-direction: column;
}

.lang-flag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-sand-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

/* Timeline/Steps Styling */
.plan-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    padding-left: 20px;
}

.check-green {
    color: #00ff88;
    margin-right: 8px;
    font-size: 0.9rem;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.4));
}

.plan-steps::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background: rgba(0, 136, 204, 0.15);
}

.step-item {
    position: relative;
    padding-bottom: 15px;
    font-size: 0.85rem;
    color: var(--color-text-dark);
    line-height: 1.4;
    text-align: left;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-item::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 5px;
    width: 8px;
    height: 8px;
    background: var(--color-sand-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
    z-index: 1;
}

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

.card-price {
    margin-top: auto;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 136, 204, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price span {
    color: var(--color-brand-blue);
    font-size: 1.6rem;
    font-weight: 800;
}

.btn-card {
    width: 100%;
    padding: 16px;
    background: var(--color-brand-gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: auto;
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.2);
}

.btn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 20, 147, 0.4);
    filter: brightness(1.1);
    letter-spacing: 2px;
}

/* Modal Adjustments */
.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 500px;
    /* Smaller width for success */
}

.checkmark-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color-green-success, #28a745);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(40, 167, 69, 0.5);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 30px;
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.summary-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    margin: 15px 0 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9em;
}

/* Common Section */
.content-section {
    padding: 80px 0;
}

/* --- VEHICLES SECTION (Redesign: Image Only) --- */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    /* Tighter, more controlled gap */
    justify-items: center;
    align-items: center;
    padding: 40px 0;
    max-width: 1100px;
    margin: 0 auto;
}

.vehicle-item {
    position: relative;
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    overflow: visible;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    background: transparent;
}

.vehicle-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
    border-radius: 15px;
}

/* Hover Effect: Elegant Scale + Refined Glow */
.vehicle-item:hover {
    transform: translateY(-10px);
}

.vehicle-item:hover img {
    transform: scale(1.05);
    /* Less aggressive scaling */
    filter: drop-shadow(0 15px 30px rgba(197, 160, 89, 0.2));
}

/* Hide Text as requested */
.vehicle-info {
    display: none !important;
}

/* --- EXCURSIONS GRID --- */
.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.excursion-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border: 1px solid rgba(0, 136, 204, 0.08);
    transition: var(--transition-smooth);
}

.excursion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 136, 204, 0.12);
}

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

.card-content {
    padding: 20px;
}

/* Testimonials Redesign */
/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    transition: background-color 0.4s ease;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Staggered animation delays */
.testimonial-card:nth-child(1) {
    animation-delay: 0s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.4s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 0.6s;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--color-text-dark);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 136, 204, 0.05);
    animation: floatTestimonial 6s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Floating animation for testimonials */
@keyframes floatTestimonial {

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

    50% {
        transform: translateY(-10px);
    }
}

/* Shimmer effect on hover */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(0, 136, 204, 0.1) 50%,
            transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.testimonial-card:hover::before {
    transform: translateX(100%);
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 136, 204, 0.15);
    border-color: rgba(0, 136, 204, 0.2);
    animation: none;
}

/* --- FOOTER REDESIGN --- */
.main-footer {
    background-color: var(--color-dark-navy);
    color: #ffffff;
    padding: 80px 0 40px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-brand-blue);
}

.footer-social a {
    font-size: 1.8rem;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.footer-social .fa-instagram {
    color: var(--color-brand-magenta);
}

.footer-social .fa-whatsapp {
    color: #25D366;
}

.footer-social a:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

.brand-puj {
    background: linear-gradient(45deg, var(--color-brand-magenta), var(--color-brand-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-logo-footer {
    margin-bottom: 20px;
    font-size: 1.8em;
    font-family: var(--font-heading);
    font-weight: 700;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--color-brand-blue);
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--color-brand-magenta);
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.3);
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.2em;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover .testimonial-stars {
    transform: scale(1.15);
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover .testimonial-text {
    color: var(--color-text-dark);
    transform: scale(1.02);
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-brand-blue);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
    position: relative;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 136, 204, 0.1);
    width: 100%;
}

/* Utilities */
.hidden {
    display: none !important;
}

.btn-disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(10, 25, 47, 0.3);
    border-radius: 50%;
    border-top-color: var(--color-dark-blue);
    animation: spin 1s infinite linear;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.error-msg {
    color: var(--color-error);
    font-size: 0.75em;
    margin-top: 5px;
    display: none;
    font-weight: 600;
    text-align: left;
}

/* Enhanced Error State */
input.error,
select.error,
textarea.error {
    border-color: var(--color-error) !important;
    background: rgba(255, 68, 68, 0.05) !important;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.2);
}

.required-mark {
    color: var(--color-error);
    margin-left: 3px;
    font-weight: bold;
}

/* OTHERS */
.input-otro-blanco {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 2px solid var(--color-sand-gold);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.5s ease-out;
    display: none;
}

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

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

/* --- FAQ SECTION --- */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(197, 160, 89, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-ivory);
    text-align: left;
    letter-spacing: 1px;
}

.faq-question i {
    color: var(--color-sand-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==============================================
   LEGAL TEXT STYLES - MAXIMUM CLARITY
   ============================================= */
.legal-text {
    color: #333333;
    text-align: justify;
    line-height: 1.7;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.legal-text p {
    margin-bottom: 15px;
}

.legal-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* --- WHATSAPP FLOAT PREMIUM --- */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align icon to left when expanding */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 1500;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
    animation: pulse-green 2s infinite;
}

.whatsapp-float i {
    font-size: 32px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-text {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.4s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.whatsapp-float:hover {
    width: 250px;
    background: #128C7E;
    /* Slightly darker on hover */
    animation: none;
}

.whatsapp-float:hover .whatsapp-text {
    max-width: 200px;
    opacity: 1;
    margin-left: -5px;
    margin-right: 20px;
}

/* Active/Touch state for mobile */
.whatsapp-float:active {
    transform: scale(0.95);
}

/* --- RE-VEAL ANIMATIONS --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-right {
    transform: translateX(50px);
}

.zoom-in {
    transform: scale(0.9);
}

.animate-on-scroll.is-visible.fade-left,
.animate-on-scroll.is-visible.fade-right {
    transform: translateX(0);
}

.animate-on-scroll.is-visible.zoom-in {
    transform: scale(1);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Footer */
.main-footer {
    background-color: #071221;
    padding: 40px 0;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    text-align: center;
    color: var(--color-text-muted);
}

.footer-links a {
    color: var(--color-ivory);
    margin: 0 15px;
    text-decoration: none;
}

/* ==============================================
   MEDIA QUERIES (MOBILE FIXES)
   ============================================= */
@media (max-width: 768px) {

    /* Stack Grid to 1 Column */
    .form-row,
    .input-row,
    .info-row {
        grid-template-columns: 1fr !important;
        /* Force single column */
        gap: 15px;
    }

    .hero-section {
        height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .reserva-card {
        padding: 25px 20px;
        /* Smaller padding */
        width: 100%;
        margin: 0 10px;
        box-sizing: border-box;
    }

    .reserva-card h1 {
        font-size: 1.5em;
        /* Smaller title */
        letter-spacing: 1px;
    }

    .modal-content {
        padding: 20px;
        width: 95%;
        margin: 10px;
        max-height: 85vh;
        /* slightly less on mobile */
    }

    .btn-reserva-ahora {
        padding: 15px;
        font-size: 0.9em;
    }

    .close-btn {
        right: 15px;
        top: 10px;
    }

    h2 {
        font-size: 1.8rem;
    }
}

/* Extra Large Screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .hero-section {
        min-height: 900px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        padding: 120px 0 60px;
    }

    .modal-content {
        max-height: 95vh;
    }
}

/* ==============================================
   ANIMACIONES Y TRANSICIONES PREMIUM (NUEVO)
   ============================================= */

/* Base Animation Class */
.animate-on-scroll {
    opacity: 0;
    will-change: transform, opacity;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 1. Fade In Up (Para textos y tarjetas) */
.animate-on-scroll.fade-up {
    transform: translateY(40px);
}

.animate-on-scroll.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 2. Fade In Left (Para textos laterales) */
.animate-on-scroll.fade-left {
    transform: translateX(-40px);
}

.animate-on-scroll.fade-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* 3. Fade In Right (Para imágenes laterales) */
.animate-on-scroll.fade-right {
    transform: translateX(40px);
}

.animate-on-scroll.fade-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* 4. Zoom In (Para elementos destacados) */
.animate-on-scroll.zoom-in {
    transform: scale(0.9);
}

.animate-on-scroll.zoom-in.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Delays (Efecto Cascada) */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* ==============================================
   INTERACCIONES AL PASAR EL MOUSE (HOVER)
   ============================================= */

/* 1. Hover Lift (Para tarjetas de reservar) */
.reserva-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s;
}

.reserva-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 136, 204, 0.1);
    border-color: var(--color-brand-blue);
}

/* 2. Image Hover (Para Confianza y Puntualidad) */
.image-content img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

.image-content img:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 25px 50px rgba(0, 136, 204, 0.1);
}

/* 3. Excursion Card Hover (Efecto Vida) */
.excursion-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy */
}

.excursion-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.1);
    z-index: 10;
}

.excursion-card .card-img-wrapper img {
    transition: transform 0.6s ease;
}

.excursion-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

/* 4. Button Pulse (Llamada a la acción) */
.btn-reserva-ahora {
    position: relative;
    overflow: hidden;
}

.btn-reserva-ahora::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-reserva-ahora:hover::after {
    left: 100%;
}

/* ==============================================
   ULTRA-CONVERSION HOTEL SELECTION STYLES
   ============================================= */

/* Light Gray Background for Reservation Section */
.reserva-card {
    background: #f4f7f6 !important;
    padding: 40px !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Pure White Inputs with Blue Borders */
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    background: #ffffff !important;
    border: 2px solid #0081a7 !important;
    color: var(--color-text-dark) !important;
    padding: 16px !important;
    border-radius: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    -webkit-font-smoothing: antialiased !important;
}