/* ============================================
   BOOKING PAGE — css/reserva.css
   ============================================ */

/* ── Hero ────────────────────────────────────── */
.reserva-hero .gategory-hero-img {
    background: linear-gradient(155deg, var(--color-secundario) 0%, #001500 100%);
    height: 52vh;
    min-height: 280px;
}

.reserva-hero .hero-entrada-content {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.10) 0%,
        rgba(0, 0, 0, 0.05) 30%,
        rgba(0, 30, 0, 0.55) 70%,
        rgba(0, 20, 0, 0.80) 100%
    );
}

.page-hero-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 10px 0 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

/* ── Page Body ───────────────────────────────── */
.reserva-page {
    padding: 64px 0 90px;
}

.reserva-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 52px;
    align-items: start;
}

/* ── Left: Benefits Panel ────────────────────── */
.reserva-benefits {
    position: sticky;
    top: 100px;
}

.reserva-benefits-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.reserva-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reserva-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

.reserva-benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-secundario);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.reserva-benefit-icon svg {
    width: 13px;
    height: 13px;
    color: #fff;
}

/* Trust box */
.reserva-trust-box {
    background: #f5faf5;
    border: 1px solid #d9ecd9;
    border-radius: 14px;
    padding: 24px 20px;
    margin-bottom: 24px;
}

.reserva-trust-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-logo1, #007a00);
    margin: 0 0 14px;
}

.reserva-trust-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #deeede;
    font-size: 0.85rem;
    color: #444;
}

.reserva-trust-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.reserva-trust-row svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--color-logo1, #007a00);
}

/* Direct contact block */
.reserva-direct {
    background: var(--color-secundario);
    border-radius: 14px;
    padding: 22px 20px;
    color: #fff;
}

.reserva-direct-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 8px;
}

.reserva-direct-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    margin: 0 0 14px;
    line-height: 1.5;
}

.reserva-direct-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-principal);
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.reserva-direct-link:hover {
    opacity: 0.85;
    color: #fff;
}

.reserva-direct-link svg {
    width: 16px;
    height: 16px;
}

/* ── Right: Form Card ────────────────────────── */
.reserva-form-wrap {
    background: #fff;
    border-radius: 18px;
    padding: 44px 44px 48px;
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.07);
    border: 1px solid #efefef;
}

.reserva-form-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
}

.reserva-form-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin: 0 0 32px;
    line-height: 1.5;
}

/* Section dividers inside the form */
.reserva-form-section {
    margin-bottom: 8px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.reserva-form-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.reserva-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-logo1, #007a00);
    margin-bottom: 16px;
}

/* ── Tour checklist override (more space than modal) ── */
.rv-tour-checklist {
    max-height: none !important;
    overflow-y: visible !important;
    border-radius: 10px;
}

.rv-tour-group {
    margin-bottom: 8px !important;
}

/* 4-col trip row override */
.pv-field-row:has(.pv-subfield:nth-child(4)) {
    flex-wrap: wrap;
    gap: 12px;
}

.pv-field-row .pv-subfield {
    flex: 1 1 140px;
    min-width: 120px;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1100px) {
    .reserva-layout {
        grid-template-columns: 290px 1fr;
        gap: 36px;
    }
}

@media (max-width: 820px) {
    .reserva-page {
        padding: 40px 0 64px;
    }

    .reserva-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .reserva-benefits {
        position: static;
    }

    .reserva-form-wrap {
        padding: 28px 22px 32px;
    }

    .reserva-form-heading {
        font-size: 1.3rem;
    }

    .page-hero-subtitle {
        font-size: 0.9rem;
        padding: 0 12px;
    }
}
