/* Booking System Styles */
.booking-card {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    border-radius: 12px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 3rem;
    color: white;
}

.booking-card h3 {
    color: white;
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-size: 2.2rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.booking-form label {
    color: white;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

.booking-form .form-select,
.booking-form .form-control {
    height: 60px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 1.5rem;
}

.booking-form .form-select:focus,
.booking-form .form-control:focus {
    border-color: white;
    box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.booking-form .form-select option {
    background: #2c3e50;
    color: white;
}

/* Time Slots Grid */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .time-slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .time-slots-grid {
        grid-template-columns: 1fr;
    }
}

.time-slot-option {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
}

.time-slot-option:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.time-slot-option.selected {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.time-slot-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
}

.time-slot-time {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.time-slot-badge {
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 600;
}

.time-slot-duration {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.slot-available {
    color: #4cd964;
    font-weight: 600;
}

/* Booking Progress */
.booking-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.booking-progress:before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.progress-step .step-number {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.progress-step.active .step-number {
    background: white;
    color: #1a5276;
    border-color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.progress-step.completed .step-number {
    background: #28a745;
    color: white;
    border-color: #28a745;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

.step-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 1.5rem;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 12px;
    min-width: 80px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.countdown-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Locations Section */
.locations-section {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    border-radius: 12px;
    padding: 3.5rem;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.map-container {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Flash Messages */
.flash-message {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 9999;
    max-width: 400px;
    animation: slideInRight 0.4s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Book Appointment Page Specific */
.booking-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.clinician-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.clinician-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.clinician-card.selected {
    border-color: #667eea;
    background-color: #f8f9ff;
}

.slot-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slot-card:hover {
    border-color: #667eea;
    background-color: #f8f9ff;
}

.slot-card.selected {
    border-color: #667eea;
    background-color: #e9ecef;
}