/* Appointments Page Styles */

.hero-small {
    padding: 60px 20px;
}

.hero-small h2 {
    font-size: 36px;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step-label {
    font-size: 14px;
    color: var(--text-light);
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.step-line {
    width: 80px;
    height: 2px;
    background-color: #e2e8f0;
    margin: 0 10px;
    margin-bottom: 35px;
}

/* Booking Steps */
.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.3s;
}

.step-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.step-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 18px;
}

.back-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 10px 0;
    transition: opacity 0.3s;
}

.back-btn:hover {
    opacity: 0.8;
}

/* Therapists Grid */
.therapists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.therapist-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.therapist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.therapist-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.therapist-info {
    padding: 25px;
}

.therapist-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.therapist-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.therapist-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.specialty-tag {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Dates Grid */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.date-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.date-card:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.date-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.date-day {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.date-weekday {
    font-size: 14px;
    color: var(--text-light);
}

/* Times Grid */
.times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.time-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.time-card:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.time-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.time-slot {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Booking Form */
.booking-form-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-summary {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.booking-summary h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.summary-item {
    margin-bottom: 20px;
}

.summary-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.summary-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Success Container */
.success-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
}

.success-icon {
    font-size: 80px;
    color: var(--success);
    margin-bottom: 20px;
}

.success-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.success-container > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.confirmation-details {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.confirmation-details h3 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.confirmation-note {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .progress-steps {
        transform: scale(0.8);
    }

    .step-line {
        width: 40px;
    }

    .therapists-grid {
        grid-template-columns: 1fr;
    }

    .dates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .times-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-form-container {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        position: static;
    }

    .step-title {
        font-size: 24px;
    }
}
