/* Hubs Booking - Reservation Form Styles */

.hubs-booking {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Open Sans', 'Segoe UI', sans-serif;
}

.hubs-booking__card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
}

.hubs-booking__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0D47A1;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.hubs-booking__price-label {
    text-align: center;
    color: #546E7A;
    margin: 0 0 2rem 0;
    font-size: 1rem;
}

.hubs-booking__price-label strong {
    color: #00BCD4;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Date inputs */
.hubs-booking__dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hubs-booking__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hubs-booking__field--full {
    grid-column: 1 / -1;
}

.hubs-booking__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1E3A5F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hubs-booking__input {
    padding: 12px 14px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    color: #1E293B;
    background: #F8FAFC;
    transition: border-color 0.2s;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.hubs-booking__input:focus {
    outline: none;
    border-color: #00BCD4;
    background: #fff;
}

.hubs-booking__input::placeholder {
    color: #94A3B8;
}

/* Guest details */
.hubs-booking__guest-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Summary */
.hubs-booking__summary {
    background: #F0FDFA;
    border: 2px solid #99F6E4;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: none;
}

.hubs-booking__summary.visible {
    display: block;
}

.hubs-booking__summary-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.95rem;
    color: #1E293B;
}

.hubs-booking__summary-row.total {
    border-top: 2px solid #99F6E4;
    margin-top: 8px;
    padding-top: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    color: #0097A7;
}

/* WhatsApp button */
.hubs-booking__submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.hubs-booking__submit:hover {
    background: #1EB954;
    transform: translateY(-1px);
}

.hubs-booking__submit:disabled {
    background: #94A3B8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.hubs-booking__submit svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.hubs-booking__note {
    text-align: center;
    font-size: 0.8rem;
    color: #94A3B8;
    margin-top: 1rem;
}

/* Calendar blocked dates */
.hubs-booking__input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

/* Error message */
.hubs-booking__error {
    color: #DC2626;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 0.5rem;
    display: none;
}

.hubs-booking__error.visible {
    display: block;
}

/* Responsive */
@media (max-width: 640px) {
    .hubs-booking__card {
        padding: 1.5rem;
    }

    .hubs-booking__dates,
    .hubs-booking__guest-info {
        grid-template-columns: 1fr;
    }
}
