/* ─────────────────────────────────────────────────────────────────────────
   public-booking.css  —  Customer-facing booking page enhancements
   Hotel color palette: dark green #1c3a2d / #2d5a3d
   ───────────────────────────────────────────────────────────────────────── */

/* ── Booking progress steps (shown in hero) ─────────────────────────────── */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0 4px;
    gap: 0;
}
.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    flex: 1;
    max-width: 150px;
}
.booking-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.3);
    color: rgba(255,255,255,.6);
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: background .2s, border-color .2s;
}
.booking-step.active .booking-step-num {
    background: #fff;
    border-color: #fff;
    color: #1c3a2d;
}
.booking-step.done .booking-step-num {
    background: rgba(255,255,255,.3);
    border-color: rgba(255,255,255,.5);
    color: rgba(255,255,255,.9);
}
.booking-step-label {
    font-size: .7rem;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}
.booking-step.active .booking-step-label {
    color: #fff;
    font-weight: 600;
}
.booking-step.done .booking-step-label {
    color: rgba(255,255,255,.75);
}
.booking-step-connector {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,.2);
    margin-bottom: 20px;
    max-width: 80px;
}

/* ── Room-type badge in hero ─────────────────────────────────────────────── */
.room-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: rgba(255,255,255,.85);
}

/* ── Room highlights grid ────────────────────────────────────────────────── */
.room-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0 0 4px;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #f0f9f4;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    padding: 11px 13px;
    font-size: .82rem;
    color: #1c3a2d;
    font-weight: 500;
}
.highlight-item i {
    font-size: 1.05rem;
    color: #2d5a3d;
    flex-shrink: 0;
}

/* ── Trust section ───────────────────────────────────────────────────────── */
.trust-section {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: center;
    justify-content: center;
    padding: 16px 0 4px;
    border-top: 1px solid #f0f2f5;
    margin-top: 16px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .79rem;
    color: #6c757d;
    font-weight: 500;
}
.trust-item i {
    color: #2d5a3d;
    font-size: .95rem;
}

/* ── Booking notice (replaces generic alert-light) ───────────────────────── */
.booking-notice {
    background: #f0f9f4;
    border: 1px solid #c8e6c9;
    border-radius: 9px;
    padding: 13px 16px;
    font-size: .82rem;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}
.booking-notice i {
    color: #2d5a3d;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Header contact strip ────────────────────────────────────────────────── */
.header-contact-strip {
    font-size: .73rem;
    color: rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.header-contact-strip a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.header-contact-strip a:hover { color: #fff; }

/* ── Generic success page enhancements ──────────────────────────────────── */
.success-hero-generic {
    background: linear-gradient(135deg, #1c3a2d 0%, #2d5a3d 100%);
    padding: 56px 0 44px;
    color: #fff;
    text-align: center;
}
.success-icon-ring {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px;
}
.success-ref-box {
    background: #f0f9f4;
    border: 2px solid #c8e6c9;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
    text-align: left;
}
.success-ref-label {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #6c757d;
    margin-bottom: 6px;
}
.success-ref-number {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c3a2d;
    letter-spacing: 2px;
    word-break: break-all;
}
.success-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.success-steps-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    font-size: .875rem;
    color: #374151;
    border-bottom: 1px solid #f0f2f5;
}
.success-steps-list li:last-child { border-bottom: none; }
.success-step-num {
    width: 26px;
    height: 26px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d5a3d;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.success-contact-strip {
    background: #f8f9fa;
    border-radius: 9px;
    padding: 14px 16px;
    font-size: .83rem;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center;
}
.success-contact-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #374151;
}
.success-contact-item i { color: #2d5a3d; }

/* ── Form section visual improvements ───────────────────────────────────── */
.form-section-card {
    background: #fafbfc;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 16px;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 576px) {
    .room-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .highlight-item {
        font-size: .78rem;
        padding: 9px 11px;
    }
    .booking-steps { padding: 12px 0 0; }
    .booking-step-connector { max-width: 32px; }
    .booking-step-label { font-size: .63rem; }
    .trust-section { gap: 10px 18px; }
    .trust-item { font-size: .76rem; }
    .header-contact-strip { display: none; }
    .success-ref-number { font-size: 1.2rem; }
}

@media (max-width: 380px) {
    .room-highlights { grid-template-columns: 1fr 1fr; }
    .booking-step-num { width: 26px; height: 26px; font-size: .72rem; }
}
