/**
 * Expert Profile Page Styles
 */

.profile-hero {
    background: var(--bg-primary);
    padding: var(--space-12) 0;
    margin-top: -80px;
    padding-top: calc(80px + var(--space-12));
    border-bottom: 1px solid var(--border-light);
}

.profile-header {
    display: flex;
    gap: var(--space-8);
    align-items: center;
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
}

.profile-avatar {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-full);
    border: 4px solid var(--primary-200);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.profile-avatar-placeholder {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-full);
    border: 4px solid var(--primary-200);
    background: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: var(--primary-600);
    font-weight: var(--font-bold);
    box-shadow: var(--shadow-lg);
}

.profile-info h1 {
    color: var(--text-primary);
    font-size: var(--text-4xl);
    margin-bottom: var(--space-2);
}

.profile-info .title {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.profile-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

@media (max-width: 768px) {
    .profile-rating {
        justify-content: center;
    }
}

.profile-rating .stars {
    color: var(--warning);
    font-size: var(--text-xl);
}

.profile-rating span {
    color: var(--text-secondary);
}

.profile-specs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

@media (max-width: 768px) {
    .profile-specs {
        justify-content: center;
    }
}

.spec-tag {
    padding: var(--space-2) var(--space-4);
    background: var(--primary-50);
    color: var(--primary-700);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.profile-content {
    padding: var(--space-10) 0;
    background: var(--bg-secondary);
}

.profile-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-8);
}

@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

.content-card {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-6);
}

.section-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-primary);
}

.section-title i {
    color: var(--primary-500);
}

.bio-text {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    white-space: pre-line;
}

.booking-card {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
    border: 1px solid var(--border-light);
}

.booking-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.price-tag {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--primary-600);
    margin-bottom: var(--space-4);
}

.price-tag small {
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    color: var(--text-tertiary);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-5);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.feature-list li i {
    color: var(--success);
}

.review-card {
    background: var(--bg-soft);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    border: 1px solid var(--border-light);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-3);
}

.review-author {
    font-weight: var(--font-medium);
    color: var(--text-primary);
}

.review-rating {
    color: var(--warning);
}

.review-text {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

.review-date {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin-top: var(--space-2);
}
