/* ========================================
   PROMO BANNER — add to booking-page.css
   ======================================== */

.promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #b5451b 0%, #e8622a 50%, #f0883e 100%);
    border-radius: 12px 12px 0 0;
    padding: 14px 24px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 12px;
    flex-wrap: wrap;
    box-shadow: 0 4px 16px rgba(181, 69, 27, 0.35);
    animation: promoPulse 3s ease-in-out infinite;
}

@keyframes promoPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(181, 69, 27, 0.35); }
    50%       { box-shadow: 0 4px 28px rgba(181, 69, 27, 0.6);  }
}

.promo-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.promo-badge {
    background: #fff;
    color: #b5451b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.promo-text {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.promo-text strong {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.promo-urgency {
    color: #ffe8d6;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.55; }
}

/* Round the card corners to connect with the banner above */
.promo-banner + .booking-form-card {
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-top: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .promo-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px;
        border-radius: 10px 10px 0 0;
        gap: 6px;
    }

    .promo-text {
        font-size: 0.92rem;
    }

    .promo-urgency {
        font-size: 0.82rem;
    }
}