/* Profile Sidebar Specific Styles */
.profile-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.profile-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.profile-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    border: 4px solid var(--accent-green);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    z-index: 2;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-avatar .edit-avatar {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 35px;
    background: var(--accent-green);
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}

.profile-avatar .edit-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.profile-avatar .edit-avatar i {
    color: var(--white);
    font-size: 0.9rem;
}

.profile-name {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    z-index: 2;
    position: relative;
}

.profile-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    z-index: 2;
    position: relative;
}

.profile-location {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 2;
    position: relative;
}

.verification-badge {
    background: var(--accent-yellow);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    z-index: 2;
    position: relative;
}

.profile-info {
    padding: 1.5rem;
}

.info-section {
    margin-bottom: 2rem;
}

.info-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    width: 20px;
    text-align: center;
    color: var(--primary-medium);
}

.info-item .info-label {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 80px;
}

.info-item .info-value {
    color: var(--text-secondary);
}

/* Status Badges */
.status-badge {
    margin-left: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge.unverified {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-badge.pending {
    background: rgba(33, 150, 243, 0.1);
    color: #0d47a1;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.status-badge.rejected {
    background: rgba(244, 67, 54, 0.1);
    color: #b71c1c;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.badge-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 700;
}

.badge-link:hover {
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--neutral-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .profile-header {
        padding: 1.5rem;
    }

    .profile-avatar {
        width: 100px;
        height: 100px;
    }

    .profile-name {
        font-size: 1.5rem;
    }
}


/* Profile Stats Section */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(51, 102, 153, 0.05));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.profile-stats .stat-item {
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 8px;
}

.profile-stats .stat-item:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

.profile-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 0.25rem;
}

.profile-stats .stat-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Follow Button */
.follow-btn {
    background: var(--accent-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem auto 0;
    width: 80%;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.follow-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.follow-btn.following {
    background: var(--white);
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
}

.follow-btn.following:hover {
    background: #fee;
    color: #d32f2f;
    border-color: #d32f2f;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-stats {
        padding: 1rem;
        gap: 0.5rem;
    }

    .profile-stats .stat-number {
        font-size: 1.5rem;
    }

    .profile-stats .stat-label {
        font-size: 0.75rem;
    }
}

