



.booking-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 40, 0.65);
    backdrop-filter: blur(3px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.booking-modal {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

.booking-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f3f4f5;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    transition: background 0.18s;
}

.booking-close:hover { background: #e5e7eb; }



.booking-conf-summary {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.booking-conf-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.booking-conf-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 0.25rem;
}

.booking-conf-date,
.booking-conf-cost {
    font-size: 0.82rem;
    color: #6c757d;
    margin: 0.15rem 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.booking-conf-cost { color: #0b8f1e; font-weight: 600; }

.booking-divider {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 1rem 0;
}

.booking-form-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}



.booking-fields {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.booking-field label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #777;
}

.booking-field .form-control {
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.88rem;
    padding: 0.55rem 0.8rem;
    background: #f9fafb;
    transition: border-color 0.18s, box-shadow 0.18s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.booking-field .form-control:focus {
    border-color: #1a2744;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
}



.booking-modal .btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    background-color: #0b8f1e;
    color: #ffffff;
    border: 2px solid #0b8f1e;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
}

.booking-modal .btn-book:hover {
    background-color: #097a19;
    border-color: #097a19;
    color: #fff;
}

.booking-modal .btn-book:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.booking-submit {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.7rem;
}

.btn-back {
    background: transparent;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    color: #555;
    cursor: pointer;
    transition: background 0.18s;
}

.btn-back:hover { background: #f3f4f6; }



.booking-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    font-size: 0.82rem;
    color: #b91c1c;
    margin-bottom: 0.85rem;
}



.booking-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
    gap: 0.75rem;
}

.booking-success i {
    font-size: 2.5rem;
    color: #0b8f1e;
}

.booking-success h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.booking-success p {
    font-size: 0.88rem;
    color: #6c757d;
    max-width: 380px;
}



.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #777;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, color 0.25s;
}

.step-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.25s;
}

.step-active .step-number { background: #1a2744; color: #ffffff; }
.step-active .step-label  { color: #1a2744; }

.step-connector {
    width: 50px;
    height: 2px;
    background: #e5e7eb;
    margin: 0 0.35rem 1.3rem;
}



.booking-order-summary {
    background: #f8f9fb;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid #eef0f4;
}

.order-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #555;
    padding: 0.3rem 0;
}

.order-total {
    font-weight: 700;
    color: #333;
    border-top: 1px solid #e5e7eb;
    margin-top: 0.3rem;
    padding-top: 0.5rem;
}



.payment-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 2.5rem 1rem;
    border: 2px dashed #e5e7eb;
    border-radius: 10px;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 1.25rem;
}

.payment-placeholder i    { font-size: 2.2rem; }
.payment-placeholder p    { font-size: 0.9rem; font-weight: 600; margin: 0; color: #555; }
.payment-placeholder span { font-size: 0.78rem; }



.booking-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}



@media (max-width: 480px) {
    .booking-modal   { padding: 1.5rem 1.25rem; }
    .booking-row     { grid-template-columns: 1fr; }
    .booking-conf-summary { flex-direction: column; align-items: flex-start; }
}
