/* ============================================
   PROFILE.CSS - Only New Styles (No Duplicate)
   ============================================ */

/* Profile Header */
.profile-header-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 24px;
}

.profile-header-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.profile-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.avatar-initials {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.avatar-edit-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
}

.avatar-edit-btn:hover {
    transform: scale(1.1);
}

.profile-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 4px 0;
}

.profile-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 8px 0;
}

.profile-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.profile-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Menu Items */
.menu-item-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
}

.menu-item-custom:hover {
    transform: translateX(4px);
    background: var(--bg-tertiary);
    border-color: var(--primary);
}

.menu-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.menu-content {
    flex: 1;
}

.menu-content h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 2px 0;
}

.menu-content p {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

.menu-arrow {
    color: var(--text-muted);
    font-size: 14px;
    opacity: 0;
}

.menu-item-custom:hover .menu-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Modal */
.profile-modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
}

.profile-modal .modal-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px;
}

.profile-modal .modal-header i {
    font-size: 20px;
    color: var(--primary);
}

.profile-modal .modal-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.profile-modal .modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 12px 20px;
}

/* Scrollbar */
.profile-modal .modal-body::-webkit-scrollbar {
    width: 4px;
}

.profile-modal .modal-body::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.profile-modal .modal-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Form */
.form-group-custom {
    margin-bottom: 16px;
}

.form-group-custom label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 5px;
    display: block;
}

/* App Buttons */
.app-buttons-custom {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.app-btn:hover {
    background: var(--primary);
    color: white;
}

/* Feature Items */
.feature-items {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-badges {
        justify-content: center;
    }
    
    .profile-modal .modal-body {
        max-height: 50vh;
        padding: 16px;
    }
}