/* Booking Form Styles - Dark Theme */

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 2px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.55);
    position: relative;
    z-index: 2;
    font-size: 14px;
    transition: all 0.3s ease;
}

.progress-step.active {
    background-color: #6366f1;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.progress-step.completed {
    background-color: rgba(99, 102, 241, 0.3);
    color: #6366f1;
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.booking-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    color: #1C1917;
    font-size: 15px;
    transition: all 0.3s ease;
}

.booking-input:focus {
    outline: none;
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.booking-input::placeholder {
    color: rgba(28, 25, 23, 0.4);
}

.booking-input option {
    background: #ffffff;
    color: #1C1917;
}

.button-group {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 32px;
}

.btn-back,
.btn-next,
#btn-confirm {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.btn-next,
#btn-confirm {
    background: #6366f1;
    color: #ffffff;
    margin-left: auto;
}

.btn-next:hover,
#btn-confirm:hover {
    background: #4f46e5;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.btn-next:disabled,
#btn-confirm:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    box-shadow: none;
}

/* Calendar Styles */
.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

#week-display {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.calendar-container {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    font-size: 13px;
}

.calendar-day {
    padding: 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.calendar-day:last-child {
    border-right: none;
}

.calendar-slots {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.time-slot {
    padding: 12px 8px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.02);
}

.time-slot:hover:not(.unavailable) {
    background: rgba(99, 102, 241, 0.2);
    color: #ffffff;
}

.time-slot.selected {
    background: #6366f1;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.time-slot.unavailable {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

.time-slot:nth-child(5n) {
    border-right: none;
}

/* Responsive */
@media (max-width: 768px) {
    .calendar-header,
    .calendar-slots {
        grid-template-columns: 1fr;
    }
    
    .calendar-day {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .time-slot {
        border-right: none;
    }
    
    .calendar-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .calendar-controls button {
        width: 100%;
    }
    
    #week-display {
        text-align: center;
    }
}
























