/* Navbar */
.navbar-brand {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.navbar-brand i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Progress Section */
.progress-section {
    background: var(--bg-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.progress-step.clickable {
    cursor: pointer;
}

.progress-step.clickable:hover .step-circle {
    transform: scale(1.1);
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
}

.step-label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.progress-step.active .step-circle {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.progress-step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-step.completed .step-circle {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.progress-step.completed .step-label {
    color: #28a745;
}

.progress-line {
    width: 100px;
    height: 3px;
    background: var(--border-color);
    margin: 0 1rem;
}

/* Selection Section */
.selection-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
}


/* Selection Cards */
.selection-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.selection-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.selection-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selection-icon i {
    font-size: 2rem;
    color: white;
}

.selection-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.selection-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Subcategory Pills */
.subcategory-pill {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-dark);
}

.subcategory-pill:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Loading State */
.loading-state {
    animation: fadeIn 0.5s ease;
}

/* Date Selector */
.date-selector {
    margin-bottom: 2rem;
}

.current-date {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
}

#pick-date {
    color: var(--primary-color);
    padding: 0.2rem 0.5rem;
}

/* Expert Card */
.expert-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.expert-card:hover {
    box-shadow: var(--shadow-md);
}

.expert-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.expert-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.expert-info {
    flex: 1;
}

.expert-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.expert-rating {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.expert-rating i {
    margin-right: 0.2rem;
}

.expert-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.expert-reviews {
    font-size: 0.85rem;
    color: var(--text-light);
}

.expert-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
}

/* Time Slots */
.time-slots-section {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.time-slots-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.time-slot {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.time-slot:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.time-slot.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.no-slots {
    color: var(--text-light);
    font-style: italic;
    padding: 1rem;
    text-align: center;
    background: var(--bg-light);
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .progress-line {
        width: 50px;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .back-btn {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 1rem;
        display: inline-block;
    }

    .expert-header {
        flex-direction: column;
        text-align: center;
    }

    .expert-avatar {
        margin: 0 auto;
    }

    .expert-price {
        text-align: center;
        margin-top: 1rem;
    }

    .current-date {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}
